上一页 1 2 3 4 5 6 ··· 123 下一页
摘要: ``` frida==15.2.2 frida-tools==10.4.1 objection==1.11.0 ``` 阅读全文
posted @ 2023-09-07 11:54 公众号python学习开发 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 目标 替换ob文件中形如_0x55f3('0x19', "Pg54")的代码为具体的值。 ``` const types = require("@babel/types"); const str_to_str = { StringLiteral(path){ const {node} = path; 阅读全文
posted @ 2023-09-04 17:59 公众号python学习开发 阅读(102) 评论(0) 推荐(0) 编辑
摘要: curl -X POST -H "Host:shoumetsu-ap.wrightflyer.net" -H "Accept:*/*" -H "Accept-Encoding:gzip,deflate" -H "X-ATHENA-SIGNATURE:AGS60vyO/iYSJcyWxw/YXh3/Z 阅读全文
posted @ 2023-08-26 12:40 公众号python学习开发 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 首先为了防止项目更新我把它fork到我的git下面的了,项目地址 git@github.com:cxapython/fastrpc.git。 这是一个python和js的项目,首先使用python3,安装所需要的依赖问题 然后直接,启动sekiro服务 ``` python3 main.py ``` 阅读全文
posted @ 2023-08-24 14:29 公众号python学习开发 阅读(99) 评论(0) 推荐(0) 编辑
摘要: ``` import signal class TimeoutException(Exception): pass def timeout_handler(signum, frame): raise TimeoutException() def limit_time(seconds=10): def 阅读全文
posted @ 2023-08-11 15:12 公众号python学习开发 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1.xcode12默认是创建的工程是14.2,所以需要修改一下工程版本。点击项目最上面的蓝色文件就可以打开下面的界面了。 ![](https://img2023.cnblogs.com/blog/736399/202307/736399-20230726211007756-163069369.jpg 阅读全文
posted @ 2023-07-26 21:12 公众号python学习开发 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ``` adb shell 'find /storage/emulated/0/cxa -type f \( -iname "*.rar" -o -iname "*.zip" -o -iname "*.7z" \)' | tr -d '\r' | xargs -I {} adb pull {} `` 阅读全文
posted @ 2023-07-26 18:26 公众号python学习开发 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 1.确定mac的版本,我的是MacOs Catalina 10.15.7 (19H2026) https://developer.apple.com/download/all/?q=xcod 在这里可以找到合适的历史版本,我这里适合12.1.1。 下载完之后是xip文件。 2.解压文件 第一步很关键 阅读全文
posted @ 2023-07-24 21:58 公众号python学习开发 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1.首先下载httpcanary的专业版 链接: https://pan.baidu.com/s/1xI5NNktBoFiTVLZFNWjSPQ 提取码: 67pd 2.将下面的sh文件,放到手机的 /data/local/tmp 目录,命令为cert.sh 并给权限chmod 777 cert.s 阅读全文
posted @ 2023-07-19 14:13 公众号python学习开发 阅读(1982) 评论(0) 推荐(0) 编辑
摘要: 第一步是解锁: 0x1 我们先进入开发模式,打开方式很简单,关于手机-》版本信息 点击7下,如果不是7下也会有提示,显示再点几次进入了开发者模式。 之后我们就可以返回设置,看其他设置此时里面就多了个开发者选项,然后我们找到里面的OEM解锁,打开即可进行后面操作。 0x2 首先选择对应的型号 下载 h 阅读全文
posted @ 2023-07-19 00:11 公众号python学习开发 阅读(354) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 123 下一页