Skip to content

Commit 38dcb79

Browse files
authored
Merge pull request #1249 from HackTricks-wiki/research_update_src_mobile-pentesting_android-checklist_20250806_162616
Research Update Enhanced src/mobile-pentesting/android-check...
2 parents 6a3ed92 + f7b8418 commit 38dcb79

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

src/mobile-pentesting/android-checklist.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@
3737
- [ ] Is there any [password hard coded or saved in disk](android-app-pentesting/index.html#poorkeymanagementprocesses)? Is the app [using insecurely crypto algorithms](android-app-pentesting/index.html#useofinsecureandordeprecatedalgorithms)?
3838
- [ ] All the libraries compiled using the PIE flag?
3939
- [ ] Don't forget that there is a bunch of[ static Android Analyzers](android-app-pentesting/index.html#automatic-analysis) that can help you a lot during this phase.
40+
- [ ] `android:exported` **mandatory on Android 12+** – misconfigured exported components can lead to external intent invocation.
41+
- [ ] Review **Network Security Config** (`networkSecurityConfig` XML) for `cleartextTrafficPermitted="true"` or domain-specific overrides.
42+
- [ ] Look for calls to **Play Integrity / SafetyNet / DeviceCheck** – determine whether custom attestation can be hooked/bypassed.
43+
- [ ] Inspect **App Links / Deep Links** (`android:autoVerify`) for intent-redirection or open-redirect issues.
44+
- [ ] Identify usage of **WebView.addJavascriptInterface** or `loadData*()` that may lead to RCE / XSS inside the app.
45+
- [ ] Analyse cross-platform bundles (Flutter `libapp.so`, React-Native JS bundles, Capacitor/Ionic assets). Dedicated tooling:
46+
- `flutter-packer`, `fluttersign`, `rn-differ`
47+
- [ ] Scan third-party native libraries for known CVEs (e.g., **libwebp CVE-2023-4863**, **libpng**, etc.).
48+
- [ ] Evaluate **SEMgrep Mobile rules**, **Pithus** and the latest **MobSF ≥ 3.9** AI-assisted scan results for additional findings.
4049

4150
### [Dynamic Analysis](android-app-pentesting/index.html#dynamic-analysis)
4251

@@ -52,13 +61,18 @@
5261
- [ ] This one is really important, because if you can capture the HTTP traffic you can search for common Web vulnerabilities (Hacktricks has a lot of information about Web vulns).
5362
- [ ] Check for possible [Android Client Side Injections](android-app-pentesting/index.html#android-client-side-injections-and-others) (probably some static code analysis will help here)
5463
- [ ] [Frida](android-app-pentesting/index.html#frida): Just Frida, use it to obtain interesting dynamic data from the application (maybe some passwords...)
64+
- [ ] Test for **Tapjacking / Animation-driven attacks (TapTrap 2025)** even on Android 15+ (no overlay permission required).
65+
- [ ] Attempt **overlay / SYSTEM_ALERT_WINDOW clickjacking** and **Accessibility Service abuse** for privilege escalation.
66+
- [ ] Check if `adb backup` / `bmgr backupnow` can still dump app data (apps that forgot to disable `allowBackup`).
67+
- [ ] Probe for **Binder-level LPEs** (e.g., **CVE-2023-20963, CVE-2023-20928**); use kernel fuzzers or PoCs if permitted.
68+
- [ ] If Play Integrity / SafetyNet is enforced, try runtime hooks (`Frida Gadget`, `MagiskIntegrityFix`, `Integrity-faker`) or network-level replay.
69+
- [ ] Instrument with modern tooling:
70+
- **Objection > 2.0**, **Frida 17+**, **NowSecure-Tracer (2024)**
71+
- Dynamic system-wide tracing with `perfetto` / `simpleperf`.
5572

5673
### Some obfuscation/Deobfuscation information
5774

5875
- [ ] [Read here](android-app-pentesting/index.html#obfuscating-deobfuscating-code)
5976

6077

6178
{{#include ../banners/hacktricks-training.md}}
62-
63-
64-

0 commit comments

Comments
 (0)