摘要: chennandeiPhone:~ root# launchctl load /var/jb/Library/LaunchDaemons/re.frida.server.plist chennandeiPhone:~ root# launchctl unload /var/jb/Library/La 阅读全文
posted @ 2024-03-28 10:52 公众号python学习开发 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # # coding: utf-8 # # # 用来存储一些通用模块 from PyPDF2 import PdfReader # pdf的读取方法 from PyPDF2 import PdfWriter # pdf的写入方法 from Crypto.Cipher import AES # 高加密 阅读全文
posted @ 2024-01-30 20:08 公众号python学习开发 阅读(44) 评论(0) 推荐(0) 编辑
摘要: magisk检测 检测方式为: 1.遍历maps文件,找到app_process模块的内存,遍历app_process内存,查找magisk和MAGISK字符串。 2.从给定的变量v282开始,进行栈残留检查,从当前位置检查至栈底,查找magisk和MAGISK字符串。 3.在/proc/self/ 阅读全文
posted @ 2023-11-21 22:25 公众号python学习开发 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ``` frida==15.2.2 frida-tools==10.4.1 objection==1.11.0 ``` 阅读全文
posted @ 2023-09-07 11:55 公众号python学习开发 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 目标 替换ob文件中形如_0x55f3('0x19', "Pg54")的代码为具体的值。 ``` const types = require("@babel/types"); const str_to_str = { StringLiteral(path){ const {node} = path; 阅读全文
posted @ 2023-09-04 18:00 公众号python学习开发 阅读(49) 评论(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学习开发 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 首先为了防止项目更新我把它fork到我的git下面的了,项目地址 git@github.com:cxapython/fastrpc.git。 这是一个python和js的项目,首先使用python3,安装所需要的依赖问题 然后直接,启动sekiro服务 ``` python3 main.py ``` 阅读全文
posted @ 2023-08-24 14:29 公众号python学习开发 阅读(62) 评论(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学习开发 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.xcode12默认是创建的工程是14.2,所以需要修改一下工程版本。点击项目最上面的蓝色文件就可以打开下面的界面了。 ![](https://img2023.cnblogs.com/blog/736399/202307/736399-20230726211007756-163069369.jpg 阅读全文
posted @ 2023-07-26 21:12 公众号python学习开发 阅读(69) 评论(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学习开发 阅读(132) 评论(0) 推荐(0) 编辑