offensive-tools/rev/androguard/SKILL.md
Auth/lab ref: Python toolkit for Android APK, DEX, resources, manifest, and certificate analysis.
npx skillsauth add aeondave/malskill androguardInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scriptable Android static analysis for APK, DEX, XML, and resources.
Use Androguard when you need:
Use jadx for human-readable code browsing. Use Androguard when you want automation and structured output.
pip install androguard
Official project notes that 4.x is the actively developed line and differs significantly from the older 3.3.5 branch.
from androguard.misc import AnalyzeAPK
apk, dex, analysis = AnalyzeAPK("app.apk")
print(apk.get_package())
print(apk.get_app_name())
print(apk.get_permissions())
print(apk.get_activities())
print(apk.get_services())
print(apk.get_receivers())
This is the fastest route for repeatable APK metadata extraction.
from androguard.misc import AnalyzeAPK
apk, dex, analysis = AnalyzeAPK("app.apk")
print("Package:", apk.get_package())
print("Permissions:", apk.get_permissions())
print("Activities:", apk.get_activities())
print("Services:", apk.get_services())
print("Receivers:", apk.get_receivers())
for name in apk.get_files():
print(name)
Useful for spotting:
Use Androguard when you need to script certificate extraction or compare multiple APKs for shared signing material.
Use the analysis object when you need to inspect methods, classes, or search strings programmatically instead of manually hunting in a GUI.
jadx for readable code reviewapktool if you need patch-and-rebuildadb or Frida later for dynamic validationjadx for large manual reviews.No bundled scripts/, references/, or assets/.
Use upstream examples and current GitHub Pages docs for version-specific API details.
development
White-box auditing methodology for AI-generated ('vibe-coded') applications. Focuses on modern stack misconfigurations (Supabase, Next.js, Vercel).
development
Hybrid AI/Deterministic SAST methodology for discovering zero-day vulnerabilities in source code. Orchestrates structural search with AI-driven data flow and sink validation.
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.
devops
Container methodology: Identifying containerization limits, Docker/K8s misconfigurations, and executing escapes to the host node.