PATH-001PASS
GET /index.html - Valid static path
curl -X GET http://localhost:8080/index.htmlThe path /index.html is defined in the policy allowlist. Signando HTTP validates that the path matches a defined pattern.
15 tests demonstrate how Signando HTTP validates URL paths against the policy and blocks path traversal attacks.
curl -X GET http://localhost:8080/index.htmlThe path /index.html is defined in the policy allowlist. Signando HTTP validates that the path matches a defined pattern.
curl -X GET http://localhost:8080/adminSignando HTTP works on the allowlist principle: Only paths explicitly defined in the policy are allowed. Undefined paths are rejected.
curl -X GET http://localhost:8080/../etc/passwdPath traversal attempts using ../ sequences are detected and blocked before reaching the backend.