首页 > 代码库 > android中使用tcpdump拦截分析网络数据包
android中使用tcpdump拦截分析网络数据包
1、下载tcpdump
http://pan.baidu.com/s/1c0vkU2k
2、通过adb命令上传到手机里
adb push tcpdump /system/bin
3、adb shell tcpdump -p -vv -s 0 -w /sdcard/capture.pcap
1 2 3 4 5 6 7 8 9 | #tcpdump 用法: tcpdump -i any -p -s 0 -w /sdcard/capture .pcap 命令参数: # "-i any": listen on any network interface # "-p": disable promiscuous mode (doesn‘t work anyway) # "-s 0": capture the entire packet # "-w": write packets to a file (rather than printing to stdout) # ... do whatever you want to capture, then ^C to stop it … |
4、运行要截包的app,完成对应操作后,CTRL + C 终止,然后通过下面命令取出命令:
adb pull /sdcard/capture.pcap
5、通过wireshark打开capture.pcap文件,查看对应的数据,如下图:
转自:http://www.yinqisen.cn/blog-470.html
android中使用tcpdump拦截分析网络数据包
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。