Burp - A1vinSmith/OSCP-PWK GitHub Wiki

Proxy

Proxy redirect

127.0.0.1:8081 -> 10.10.10.10:1234

https://youtu.be/IBlTdguhgfY?t=533

Proxying and Intercepting CLI Tools

https://blog.ropnop.com/proxying-cli-tools/#example-3---proxying-python-requests

Python script

sess = requests.session()
sess.proxies.update( { 'http':'http://127.0.0.1:8080' } )

Usage

Change request method by right clicking from repeater

URL encode/decode Ctrl + u

Prevent 302/1 redirect to visit hidden pages

https://youtu.be/JRPWFSzFaG0?t=692