美文网首页
Android实时抓包:tcpdump+nc+wireshark

Android实时抓包:tcpdump+nc+wireshark

作者: icekele | 来源:发表于2019-12-23 10:18 被阅读0次
  1. Android手机root

  2. 交叉编译nctcpdumpwireshark工具
    见上一篇文章
    sudo apt install wireshark

  3. 抓包,手机端命令如下

    adb push nc /data/local/tmp
    adb push tcpdump /data/local/tmp
    adb shell
    su
    cd /data/local/tmp
    chmod +x nc 
    chmod +x tcpdump
    ./tcpdump -i rmnet_data0 -s 0 -w - |./nc -l -p 1234
    
  4. 电脑端

    adb forward tcp:1234 tcp:1234
    nc localhost 1234 | sudo wireshark -k -S -i -
    

相关文章

网友评论

      本文标题:Android实时抓包:tcpdump+nc+wireshark

      本文链接:https://www.haomeiwen.com/subject/kaqznctx.html