Error message

  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /var/www/drupal/includes/common.inc).
  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in menu_set_active_trail() (line 2405 of /var/www/drupal/includes/menu.inc).

Tcpdump & Wireshark with Android

Some necessary commands and files to use tcpdump and wireshark with any Android device with root. The necessary files can be download from here: http://www.strazzere.com/android/tcpdump

mount -o remount,rw /system
cp /sdcard/data/tcpdump system/bin
chmod 777 tcpdump
mount -o remount,ro /system

adb shell "su -c tcpdump -n -s 0 -w /sdcard/pcap.pcap"
tail -f /sdcard/pcap.pcap |netcat -l -p 2222
adb forward tcp:2222 tcp:2222 && netcat localhost 2222 |wireshark -k -S -i -
adb shell "rm -f /sdcard/pcap.pcap && su -c tcpdump -s 0 -i wlan0 -w /sdcard/pcap.pcap & sleep 2 && echo start && tail -f /sdcard/pcap.pcap |netcat -l -p 2222
adb pull /sdcard/pcap.pcap . && wireshark -Y http pcap.pcap