Claude Code skill for Android APK reverse engineering — apktool, jadx, Frida workflows.
A skill bundle that teaches Claude how to do real Android reverse engineering: unpack APKs, decompile to Java with jadx, patch smali, hook with Frida. It chains the right tools instead of one-shotting jadx and giving up.
언제 쓸까: You need to inspect a Flutter/OkHttp app's traffic and pinning blocks Burp.
사전 조건
Server/skill installed and authenticated — See repo README
흐름
Identify pinning
Decompile target.apk and find all references to TrustManager / CertificatePinner / Flutter's HttpClient.✓ 복사됨
→ List of hooks to patch
Patch + Frida
Generate a Frida script that no-ops checkServerTrusted across both Java and Flutter paths.✓ 복사됨
→ Frida .js + run command
결과: Working MITM channel on a test target you own.
함정
Reversing apps you don't have rights to is illegal in most jurisdictions. The skill assumes you've documented authorization. — Reversing apps you don't have rights to is illegal in most jurisdictions. The skill assumes you've documented authorization.
비용 및 제한
운영 비용
API 쿼터
See provider docs for rate limits
호출당 토큰
Varies by tool
금액
See repo README for pricing details
팁
Cache tool results and avoid repeated identical calls.
보안
권한, 시크릿, 파급범위
자격 증명 저장: Use environment variables; never commit secrets
데이터 외부 송신: Tool calls go to the provider's API as documented
문제 해결
자주 발생하는 오류와 해결
apktool fails to unpack
Use the latest apktool (≥2.9). Older versions miss new resource tables.
확인: apktool --version ≥ 2.9
repack signs but won't install
Use uber-apk-signer with --allow-resign and target the right SDK level.