摘要: adb shell dumpsys activity activities 能看到当前app所在的进程和activity(也就是打开的页面),进而方便使用frida定位 其他的还有 adb shell dumpsys activity 查看ActvityManagerService 所有信息 adb 阅读全文
posted @ 2021-08-27 17:04 公众号python学习开发 阅读(48) 评论(0) 推荐(0) 编辑
摘要: adb shell dumpsys activity 查看ActvityManagerService 所有信息 adb shell dumpsys activity activities 查看Activity组件信息 adb shell dumpsys activity services 查看Ser 阅读全文
posted @ 2021-08-27 17:03 公众号python学习开发 阅读(47) 评论(0) 推荐(0) 编辑
摘要: function loadDexfile(dexfile) { Java.perform(function() { Java.openClassFile(dexfile).load(); }); }; 传入dexfile的路径即可 之后就可以直接使用dex文件的类或者方法了。 阅读全文
posted @ 2021-08-27 13:23 公众号python学习开发 阅读(268) 评论(0) 推荐(0) 编辑
摘要: function main(){ write_file1() write_File2() } function write_file1(){ //使用firda的自带api var file = new File("/data/local/tmp/mytest.dat") file.write("1 阅读全文
posted @ 2021-08-27 10:45 公众号python学习开发 阅读(635) 评论(0) 推荐(0) 编辑