Analyzing Android Malware with Apktool
Overview
Android malware distributed as APK files can be statically analyzed to extract permissions, activities, services, broadcast receivers, and suspicious API calls without executing the sample. This skill uses androguard for programmatic APK analysis, identifying dangerous permission combinations, obfuscated code patterns, dynamic code loading, reflection-based API calls, and network communication indicators.
When to Use
- When investigating security incidents that require analyzing android malware with apktool
- When building detection rules or threat hunting queries for this domain
- When SOC analysts need structured procedures for this analysis type
- When validating security monitoring coverage for related attack techniques
Prerequisites
- Python 3.9+ with
androguard
- apktool (for resource decompilation)
- jadx (for Java source recovery, optional)
- Isolated analysis environment (VM or sandbox)
- Sample APK files for analysis
Steps
- Parse APK with androguard to extract manifest metadata
- Enumerate requested permissions and flag dangerous combinations
- List activities, services, receivers, and providers from manifest
- Scan for suspicious API calls (reflection, crypto, SMS, telephony)
- Detect dynamic code loading patterns (DexClassLoader, Runtime.exec)
- Extract hardcoded URLs, IPs, and C2 indicators from strings
- Generate risk assessment report with MITRE ATT&CK mobile mappings
Expected Output
- JSON report with permission analysis, component listing, suspicious API calls, network indicators, and risk score
- Extracted strings and potential IOCs from the APK
Source: mukul975/Anthropic-Cybersecurity-Skills → skills/analyzing-android-malware-with-apktool/SKILL.md
1---2name: analyzing-android-malware-with-apktool3description: Perform static analysis of Android APK malware samples using apktool for decompilation, jadx for Java source recovery, and androguard for permission analysis, manifest inspection, and suspicious API call detection.4---5
6
7# Analyzing Android Malware with Apktool
8
9## Overview
10
11Android malware distributed as APK files can be statically analyzed to extract permissions, activities, services, broadcast receivers, and suspicious API calls without executing the sample. This skill uses androguard for programmatic APK analysis, identifying dangerous permission combinations, obfuscated code patterns, dynamic code loading, reflection-based API calls, and network communication indicators.
12
13
14## When to Use
15
16- When investigating security incidents that require analyzing android malware with apktool
17- When building detection rules or threat hunting queries for this domain
18- When SOC analysts need structured procedures for this analysis type
19- When validating security monitoring coverage for related attack techniques
20
21## Prerequisites
22
23- Python 3.9+ with `androguard`
24- apktool (for resource decompilation)
25- jadx (for Java source recovery, optional)
26- Isolated analysis environment (VM or sandbox)
27- Sample APK files for analysis
28
29## Steps
30
311. Parse APK with androguard to extract manifest metadata
322. Enumerate requested permissions and flag dangerous combinations
333. List activities, services, receivers, and providers from manifest
344. Scan for suspicious API calls (reflection, crypto, SMS, telephony)
355. Detect dynamic code loading patterns (DexClassLoader, Runtime.exec)
366. Extract hardcoded URLs, IPs, and C2 indicators from strings
377. Generate risk assessment report with MITRE ATT&CK mobile mappings
38
39## Expected Output
40
41- JSON report with permission analysis, component listing, suspicious API calls, network indicators, and risk score
42- Extracted strings and potential IOCs from the APK
43
44---
45
46**Source:** [`mukul975/Anthropic-Cybersecurity-Skills`](https://github.com/mukul975/Anthropic-Cybersecurity-Skills) → `skills/analyzing-android-malware-with-apktool/SKILL.md`