I just realized I haven’t put a face behind this account
So, here’s to me introducing myself 🥂
I’m going to be sharing all things bug bounty/Offensive security here.
There are still a LOT of bugs to be found. 🐞
Even on hardened public programs!
@NahamSec shares a hacking approach that helps him find bugs on hardened targets. 👇
Keep your eyes peeled on these endpoints. 👀
/login ➡️ authentication bugs
/reset-password ➡️ATO
/upload ➡️ RCE
/api/v1/user/1001 ➡️ BOLA
/search?q=query ➡️ Injection bugs
/view?file= ➡️ SSRF
/admin ➡️ internal access
Which endpoint have you found the most bugs on? 👇
I’ve been away from hunting for a week to actively execute this project I’m on. I came back today to submit 3 reports 🎉
Wish me luck!
Tip : Always test DELETE HTTP method on endpoints like /users/current or /users/me etc.
Combining it with IDOR too cannot be overemphasized.
12. Encoded Whitespace Bypass /api/v2/users/%209 → 200 OK /api/v2/users/9%20 → 200 OK
Sometimes you might need to combine some of these to bypass 403/404
#Cybersecurity#appsec#IDOR#bugbountytips
5. Multiple ID Abuse /api/v1/users/10,9 → 200 OK /api/v1/users/10.9 → 200 OK /api/v1/users?id=10,9 → 200 OK
6. Type Confusion /api/v1/users/*9* → 200 OK /api/v1/users/9abc → 200 OK
7. Leading Zero/ /api/v1/users/09 → 200 OK