Skip to content

Proxy Aware Applications

Paradis Perdu edited this page Feb 27, 2019 · 1 revision

If an application is proxy aware the following might enable web interception:

  • Support invisible proxying in burp
  • Then use iptables

iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination 10.10.10.10:8080 iptables -t nat -A OUTPUT -p tcp --dport 443 -j DNAT --to-destination 10.10.10.10:8080

Clone this wiki locally