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' } )