02 2022 档案

摘要:pm path xxx.xxx.xxx.xx 阅读全文
posted @ 2022-02-21 16:54 公众号python学习开发 阅读(140) 评论(0) 推荐(0) 编辑
摘要:java -jar dex-finder.jar -c com.taobao.wireless.security.adapter.JNICLibrary -f xianyu7.3.50 -r [main] INFO com.leadroyal.dex.CommandParser - parse co 阅读全文
posted @ 2022-02-21 11:27 公众号python学习开发 阅读(118) 评论(0) 推荐(0) 编辑
摘要:def put_unconditional_branch(source, destination): offset = (destination - source - 4) >> 1 if offset > 2097151 or offset < -2097152: raise RuntimeErr 阅读全文
posted @ 2022-02-18 17:44 公众号python学习开发 阅读(464) 评论(0) 推荐(0) 编辑
摘要:dlopen 打开一个库,获取句柄。打开so文件获取句柄(看作基地址) dlsym 在打开的库中查找符号的值。 (so里面查某个函数地址) dlclose 关闭句柄。 dlerror 返回一个描述最后一次调用dlopen、dlsym,或 dlclose 的错误信息的字符串。 #import <dlf 阅读全文
posted @ 2022-02-09 21:58 公众号python学习开发 阅读(332) 评论(0) 推荐(0) 编辑