Proxy Aware Applications - CraigDonkin/Android-Testing GitHub Wiki

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