Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions editions/2023/en/0xa1-broken-object-level-authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ checks, a user may be able to delete another user's document.
* Write tests to evaluate the vulnerability of the authorization mechanism. Do
not deploy changes that make the tests fail.

**Note**

* Using GUIDs/UUIDs instead of predictable identifiers helps mitigate object enumeration attacks. However, once a valid identifier is disclosed—whether through another endpoint, excessive data exposure, logging, or another vulnerability—it should be treated as public information.

* Authorization decisions must never rely on the secrecy or unpredictability of object identifiers. Every request must independently verify that the authenticated user is authorized to access the requested object.

## References

### OWASP
Expand Down