원클릭으로
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)