摘要: # 设置当前工作路径 LOCAL_PATH:= $(call my-dir) # 清除变量值 include $(CLEAR_VARS) # 生成的模块名称 LOCAL_MODULE := MyAPP # 生成的模块类型 LOCAL_MODULE_CLASS := APPS # 生成的模块后缀名,此 阅读全文
posted @ 2024-04-17 13:39 公众号python学习开发 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 必须要的依赖:apt install unrar from rarfile import RarFile io_buffer = io.BytesIO(response.body) with RarFile(io_buffer) as fs: for each in fs.infolist(): c 阅读全文
posted @ 2024-04-03 17:44 公众号python学习开发 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 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学习开发 阅读(7) 评论(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学习开发 阅读(63) 评论(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学习开发 阅读(38) 评论(0) 推荐(0) 编辑
摘要: ``` frida==15.2.2 frida-tools==10.4.1 objection==1.11.0 ``` 阅读全文
posted @ 2023-09-07 11:55 公众号python学习开发 阅读(106) 评论(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学习开发 阅读(56) 评论(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学习开发 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 首先为了防止项目更新我把它fork到我的git下面的了,项目地址 git@github.com:cxapython/fastrpc.git。 这是一个python和js的项目,首先使用python3,安装所需要的依赖问题 然后直接,启动sekiro服务 ``` python3 main.py ``` 阅读全文
posted @ 2023-08-24 14:29 公众号python学习开发 阅读(63) 评论(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学习开发 阅读(125) 评论(0) 推荐(0) 编辑