OutrageousStorm/frida-scripts-android

GitHub: OutrageousStorm/frida-scripts-android

为 Android 应用提供即插即用的 Frida 脚本,解决动态分析与安全测试中的绕过与监控难题。

Stars: 0 | Forks: 0

# 💉 Android 平台 Frida 脚本 适用于 Android 安全的即插即用 Frida 脚本。所有脚本已在 Android 10–15 上测试通过。 ## 用法 ``` # 附加到运行中的应用 frida -U -n "com.example.app" -l scripts/ssl-bypass.js # 使用脚本生成应用 frida -U -f com.example.app -l scripts/ssl-bypass.js --no-pause # 多脚本 frida -U -f com.example.app -l scripts/ssl-bypass.js -l scripts/root-bypass.js --no-pause ``` ## 脚本列表 | 脚本 | 功能 | |------|------| | `ssl-bypass.js` | 绕过所有 SSL/TLS 证书固定 | | `root-bypass.js` | 隐藏设备是否已 Root | | `crypto-hook.js` | 记录所有 AES/RSA 加密/解密操作 | | `intent-monitor.js` | 记录所有发送/接收的 Intent | | `api-tracer.js` | 跟踪对某个类或方法的所有调用 | | `keystore-dump.js` | 转储 Keystore 条目与密钥 | | `shared-prefs-monitor.js` | 监控 SharedPreferences 的读写操作 | | `http-logger.js` | 记录所有 HTTP/HTTPS 请求与响应 | ## 环境要求 ``` pip install frida-tools # frida-server 在设备上运行(已 Root) # https://github.com/frida/frida/releases ```
标签:Android 10, Android 11, Android 12, Android 13, Android 14, Android 15, Android安全, Android逆向, API追踪, Docker支持, Frida, frida-server, frida-tools, Hook脚本, HTTP日志, Intent监控, Root检测绕过, SharedPreferences监控, SSL绕过, 加密钩子, 即时运行脚本, 密钥库转储, 数据可视化, 移动安全测试, 移动渗透测试, 自定义脚本, 证书 pinning