Security Improvement Suggestion
Review the use of ambient authority for directory access in glob.rs; if tighter sandboxing is possible (e.g. restricting to the manifest's directory), it would improve security and least-privilege adherence.
Context
Currently, the glob functionality in src/manifest/glob.rs may have broader directory access than necessary. Implementing tighter restrictions to limit access to only the manifest's directory would:
- Improve security posture by reducing attack surface
- Follow the principle of least privilege
- Provide better sandboxing for glob operations
Acceptance Criteria
References
Requested by: @leynos
Security Improvement Suggestion
Review the use of ambient authority for directory access in
glob.rs; if tighter sandboxing is possible (e.g. restricting to the manifest's directory), it would improve security and least-privilege adherence.Context
Currently, the glob functionality in
src/manifest/glob.rsmay have broader directory access than necessary. Implementing tighter restrictions to limit access to only the manifest's directory would:Acceptance Criteria
glob.rsReferences
Requested by: @leynos