随笔分类 -  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 阅读(768) 评论(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 阅读(3339) 评论(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 阅读(35066) 评论(1) 推荐(1)
摘要:frida是一个轻量级别的hook框架。 frida由两部分组成:一部分是运行在系统上的交互工具frida CLI,另一部分是运行在目标机器上的代码注入工具frida-server。 推荐使用python3来安装frida。 github项目:https://github.com/frida/fri 阅读全文
posted @ 2020-06-13 18:34 micr067 阅读(1286) 评论(0) 推荐(0)