Web App - IDOR

➑️ Insecure Direct Object Reference (IDOR) occurs when an application exposes direct access to objects (e.g. database records, files, etc) without proper authorization, allowing attackers to manipulate or access unauthorized data.


IDOR - Insecure Direct Object Reference

  • Try to change the account object ID in the URL to something else

    • http://localhost/labs/e0x02.php?account=1009

    • http://localhost/labs/e0x02.php?account=1010

  • Enumerate all the accounts within the application


Last updated

Was this helpful?