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
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.