بنقرة واحدة
frida-analyzer
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
Obsidian Local REST API tools for the CodeAgent — manage vault notes, search, and metadata
DuckDB in-process analytics tools for the CodeAgent — SQL on CSV/Parquet/JSON without a server
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
Use BEFORE any creative work — creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements, and design before implementation.
| name | frida-analyzer |
| description | Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning |
This skill extends the CodeAgent with Frida-based dynamic instrumentation for Android and iOS app analysis. Automate SSL unpinning, hook functions, trace API calls, and dump runtime data.
Based on frida-interception-and-unpinning.
pip install frida-tools
# For Android: adb must be on PATH, device/emulator connected
frida_devices() — list connected Frida devicesfrida_apps(device="usb") — list installed apps on devicefrida_spawn(package, script=None, device="usb") — spawn app with optional scriptfrida_attach(target, script=None, device="usb") — attach to running processfrida_unpin_ssl(package, device="usb") — bypass SSL pinningfrida_trace(package, pattern, device="usb") — trace function callsfrida_run_script(target, script_code, device="usb") — inject custom JS# List connected devices
devices = frida_devices()
print(devices)
# List apps on USB device
apps = frida_apps()
for app in apps[:10]:
print(f" {app}")
# Bypass SSL pinning on an app
result = frida_unpin_ssl("com.example.app")
print(result)