安卓adb抓包
1、adb连接手机报10061
1) 将安卓设备usb连接到电脑
2)设备链接到wifi
3)Ping设备ip,检查是否可通信
4)在cmd依次输入以下命令:
adb usb
adb kill-server
adb tcpip 5555
adb connect youip:5555
2、抓取http/https请求
1)过滤包名
adb shell "ps|grep 包名"
2)使用进程号过滤进程
adb shell
logcat |grep 4763 | grep https #过滤HTTPS请求
3、查看安装的第三方app的包名
adb shell pm list packages -3