一键导入
apktool
Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use agent-browser-cli to perceive and control the supervised Chrome browser inside the sandbox, interact with pages, capture screenshots/PDFs, inspect cookies/CDP/network/console state, and troubleshoot only when needed.
Use OWASP Amass for authorized asset discovery, domain enumeration, and DNS intelligence on in-scope targets.
Use file, 7z, unzip, tar-compatible tools, hashes, and bounded shell inspection for safe triage of provided archives and unknown files.
Use binwalk for authorized firmware, binary blob, archive, filesystem, and embedded-content triage with bounded extraction and evidence handling.
Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.
Use dig, nslookup, whois, and related local CLIs for authorized DNS, WHOIS, ASN, mail, nameserver, and ownership triage.
| name | apktool |
| description | Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage. |
Use apktool for authorized Android APK resource decoding and smali-level inspection when Java decompilation alone is insufficient.
Before constructing commands, run the installed help and use it as the source of truth:
apktool --help
jadx when readable Java/Kotlin-like source is needed; use apktool when manifest, resources, smali, or packaging fidelity matters.Decode an APK into a task directory:
apktool d app.apk -o app-apktool
Inspect manifest, resources, and smali after decoding:
sed -n '1,200p' app-apktool/AndroidManifest.xml
find app-apktool/res -maxdepth 3 -type f | sort
find app-apktool/smali -type f -name '*.smali' | head
Search decoded output for common static-analysis leads:
rg -n 'https?://|api.?key|secret|token|password|WebView|addJavascriptInterface' app-apktool
Use jadx alongside apktool when readable Java/Kotlin-like control flow is needed.
Report the APK path, command used, output directory, relevant manifest/resource/smali paths, and any findings or blockers that affect analysis.