Last active
October 13, 2015 21:07
-
-
Save myamamic/4255875 to your computer and use it in GitHub Desktop.
[Android][Tips] パケットキャプチャ (要root権限) やネットワークあれこれ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# android上でパケットキャプチャ | |
# 参考「Gather packets from your Android without ARP spoofing…」 | |
# http://strazzere.com/blog/?tag=tcpdump | |
adb shell tcpdump -vv -s 0 -w /sdcard/output.cap | |
* tcpdump manページ | |
http://www.tcpdump.org/tcpdump_man.html | |
* iwコマンドで80211関連情報の取得 | |
http://wireless.kernel.org/en/users/Documentation/iw | |
eventが発生したら表示できるらしい (要動作確認 | |
http://wireless.kernel.org/en/users/Documentation/iw#Listening_to_events | |
* ipコマンド | |
http://linux.die.net/man/8/ip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment