My problem is when I configure burp suite as a invisible proxy for my android phone. I can capture most website's traffic but I can not capture some website's traffic like facebook.
more information about my phone setting:
i route all tcp traffic from android to PC with command: adb reverse tcp:8081 tcp:8081
i redirect outgoing traffic to local host in android with 2 command:
iptables -t nat -A OUTPUT -p tcp -j DNAT --to-destination 127.0.0.1:8081
iptables -t nat -A POSTROUTING -p tcp -j MASQUERADE
thank for any help!