Skip to main content

apktool

Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.

跳到安装

来源信息

仓库
Aethena-Lab/Z3r0
最近来源活动
2026年9月3日 10:00
检测到的 SKILL.md 语言
英语
星标
846
分支
194

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
apktool
description
Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.
# apktool Use `apktool` for authorized Android APK resource decoding and smali-level inspection when Java decompilation alone is insufficient. ## Help first Before constructing commands, run the installed help and use it as the source of truth: ```sh apktool --help ``` ## Usage rules - Work only on explicitly provided APKs or artifacts in scope. - Prefer decoding into a task-scoped output directory. - Preserve the original artifact; never modify it in place. - Treat decoded resources, manifests, smali, certificates, and configuration values as static evidence, not proof of runtime exploitability. - Save large decoded outputs and grep results to files rather than streaming them into the conversation. - Do not rebuild, sign, patch, or modify an APK unless the user explicitly asks and the scope permits it. - Use `jadx` when readable Java/Kotlin-like source is needed; use `apktool` when manifest, resources, smali, or packaging fidelity matters. ## Common workflows Decode an APK into a task directory: ```sh apktool d app.apk -o app-apktool ``` Inspect manifest, resources, and smali after decoding: ```sh 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: ```sh 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. ## Output Report the APK path, command used, output directory, relevant manifest/resource/smali paths, and any findings or blockers that affect analysis.
在 GitHub 查看