mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
Add centralized path validation to prevent path traversal attacks. - PathValidator class with sync/async validation methods - Protects against '..' and '~' traversal patterns - Validates paths are within project root - Refactored all 7 file tools to use PathValidator - 51 new tests for PathValidator
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
// Infrastructure layer exports
|
|
export * from "./storage/index.js"
|
|
export * from "./indexer/index.js"
|
|
export * from "./llm/index.js"
|
|
export * from "./tools/index.js"
|
|
export * from "./security/index.js"
|