随笔分类 -  APP 测试

摘要:mac版MuMu模拟器如何连接adb adb kill-server && adb server && adb shell https://mumu.163.com/help/20210531/35047_951109.html 阅读全文
posted @ 2022-04-25 10:52 micr067 阅读(700) 评论(0) 推荐(0) 编辑
摘要:1.查看安卓设备开放的端口 adb shell netstat -a | grep -E 'LISTEN|udp*' 2.将端口号转换为16进制 https://tool.lu/hexconvert/ /proc/net/后面是端口使用的协议,如tcp6 adb shell grep -i f099 阅读全文
posted @ 2022-02-10 18:32 micr067 阅读(2777) 评论(0) 推荐(0) 编辑
摘要:获取微信小程序源码的三种方法: 一、使用adb连接手机获取小程序源码 1、手机root环境下 开启调试模式,手机通过USB数据线连接电脑 查看设备 adb.exe devices 连接设备 adb.exe connect 10.10.10.1 //ip为手机IP 2、手机未root环境下 adb u 阅读全文
posted @ 2021-11-08 15:55 micr067 阅读(31836) 评论(1) 推荐(1) 编辑
摘要:frida是一个轻量级别的hook框架。 frida由两部分组成:一部分是运行在系统上的交互工具frida CLI,另一部分是运行在目标机器上的代码注入工具frida-server。 推荐使用python3来安装frida。 github项目:https://github.com/frida/fri 阅读全文
posted @ 2020-06-13 18:34 micr067 阅读(1174) 评论(0) 推荐(0) 编辑
摘要:工具:proxifier 目前很多安卓客户端会设置多种方式来验证客户端是否使用了代理,来防止抓包 比如: 1.检查客户端是否使用了代理,如果使用了代理,客户端就不再发送网络请求 2.通过Okhttp设置默认代理 3.使用okhttp实现SSL双向认证 如果在APP请求网络之前先判断下手机网络是否使用 阅读全文
posted @ 2019-08-22 18:43 micr067 阅读(7787) 评论(0) 推荐(0) 编辑