Network / Traffic Analysis

Proxifier

HTTP communications (Browser)

  1. Open Burp Suite > Proxy > Options > "Import / Export Certificate Authority ".

  2. Select Certificate in DER format

  3. Transfer the certificate to your device: adb push cert.der /data/local/tmp/cert-der.crt.

  4. You can also drag and drop it if you are using an emulator.

Android System

With ADB

adb shell settings put global http_proxy YOUR_IP:YOUR_PORT

Having Issues ?

TCPDump

Packet analyzer, get the details of the visible traffic of the device.

adb root
adb remount
adb push /wherever/you/put/tcpdump /system/xbin
adb shell tcpdump -i any -p -s 0 -w /sdcard/capture.pcap
adb pull /sdcard/capture.pcap /wherever/you/want/to/save/it
wireshark /path/to/your/capture

NFC Traffic

NFCGate is an Android application designed to capture, analyze or modify NFC traffic

Common problems

"Wi-Fi connected but no Internet"

Settings > Date & Time > Check 'Use Network-provided time'

Last updated