Mobile Insecure Data Storage
What Is Broken and Why
Mobile apps often store sensitive data (credentials, tokens, PII, keys) in locations accessible to other apps, backups, or physical device extraction. Android's SharedPreferences and iOS's NSUserDefaults are plaintext XML/plist files readable with root/jailbreak. External storage is world-readable. Backups (ADB/iCloud) can expose the entire app sandbox unless explicitly excluded. Logging APIs persist sensitive data in system logs readable by other apps. The attacker gains access to credentials or session tokens without ever touching the backend.
Key Signals
allowBackup="true"in AndroidManifest.xml withoutfullBackupContentexclusion rules- SharedPreferences files in
/data/data/<pkg>/shared_prefs/containing tokens, passwords, or keys - SQLite databases in the app sandbox without SQLCipher encryption
- Files in
/sdcard/orgetExternalStorageDirectory()containing sensitive content - iOS files lacking
NSFileProtectionCompletedata protection class - Keychain items with
kSecAttrAccessibleAlwaysor no accessibility constraints - Log statements (
Log.d,NSLog,print) containing session tokens or user data - Input fields without
inputType="textPassword"orsecureTextEntry=true - App switcher screenshots capturing password or payment screens
Methodology
Android:
- Decompile APK:
apktool d app.apk— reviewAndroidManifest.xmlforallowBackup,fullBackupContent - Pull sandbox via ADB:
adb backup -f backup.ab -noapk <pkg>→ extract withandroid-backup-extractor - Inspect
/data/data/<pkg>/(rooted):shared_prefs/,databases/,files/ - Check SharedPreferences XML for plaintext credentials or tokens
- Open SQLite databases:
sqlite3 app.db .dump— look for unencrypted sensitive tables - Search for external storage usage:
grep -r "getExternalStorage"in decompiled source - Check for sensitive log output:
adb logcat | grep -i "password\|token\|secret\|key" - Use objection:
android hooking list activities→android clipboard monitor
iOS:
- Pull IPA and extract app bundle; examine Info.plist for NSAllowsArbitraryLoads
- Use iMazing or
ideviceinstallerto pull app sandbox data - Check Data Protection class on files:
objection --gadget TARGET run ios filesystem list - Inspect NSUserDefaults:
<uuid>.plistin Library/Preferences - Check Keychain:
objection run ios keychain dump - Dynamic: Frida hook
NSFileManager writeToFileto observe Data Protection class used - Background the app — screenshot the app switcher for sensitive data capture
Payloads & Tools
# Android — pull and extract backup
adb backup -f backup.ab -noapk TARGET_PKG
java -jar abe.jar unpack backup.ab backup.tar
tar xvf backup.tar
# Android — inspect SharedPreferences (rooted)
adb shell "cat /data/data/TARGET_PKG/shared_prefs/*.xml"
# Android — check logcat for leaks
adb logcat | grep -iE "password|token|secret|api.?key|session|auth"
# iOS — Frida: dump NSUserDefaults
frida -U TARGET -e "ObjC.classes.NSUserDefaults.standardUserDefaults().dictionaryRepresentation()"
# iOS — objection: keychain dump
objection --gadget TARGET run ios keychain dump
# iOS — check Data Protection class
frida -U TARGET -l data_protection_check.js
Bypass Techniques
- Backup extraction without root — ADB backup works on non-rooted devices if
allowBackup=true - Keychain extraction on jailbroken device — Keychain items without
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnlysurvive device-to-device migration - Memory scraping — even encrypted storage decrypts into memory; dump process memory with
gcoreor Frida memory scanner - Log persistence —
adb logcat -dcaptures prior log buffer; sensitive data logged before crash is preserved
Exploitation Scenarios
Scenario 1 — ADB Backup Token Theft
Setup: App stores JWT in SharedPreferences, allowBackup=true. → Trigger: Attacker with USB access runs adb backup. → Impact: Extracts valid session token, authenticates to backend as victim.
Scenario 2 — External Storage Credential Exposure
Setup: App writes exported reports to getExternalStorageDirectory(). → Trigger: Malicious app with READ_EXTERNAL_STORAGE reads the files. → Impact: PII and embedded tokens from reports leaked to third-party app.
Scenario 3 — iOS Keychain Accessible After Reboot
Setup: App stores password in Keychain with kSecAttrAccessibleAlways. → Trigger: Attacker with physical device access extracts Keychain via jailbreak. → Impact: Password retrieved even when device is locked/rebooted.
False Positives
- SharedPreferences containing non-sensitive config (theme, language preference)
- SQLite databases storing only public content (cached news articles, offline maps)
- Keychain items scoped to the correct access control group — confirm accessibility attribute
- Log output in debug builds only — verify the production build strips debug logs
Fix Patterns
// Android — encrypted SharedPreferences
val masterKey = MasterKey.Builder(context).setKeyScheme(MasterKey.KeyScheme.AES256_GCM).build()
val prefs = EncryptedSharedPreferences.create(context, "secure_prefs", masterKey,
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM)
// Android — exclude from backup
// res/xml/backup_rules.xml
// <exclude domain="sharedpref" path="." />
// iOS — Keychain with strict access control
let access = SecAccessControlCreateWithFlags(nil, kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
.userPresence, nil)
// iOS — exclude file from backup
var url = URL(fileURLWithPath: sensitiveFilePath)
try url.setResourceValues({ v in v.isExcludedFromBackup = true }())
Related Skills
[[mobile-weak-crypto]] is the direct mitigation path: data that must be stored locally should be protected using properly implemented cryptography with keys in the Android Keystore or iOS Secure Enclave. [[mobile-auth-bypass]] overlaps when insecure storage holds auth tokens — a stolen JWT from SharedPreferences enables direct backend access without triggering biometric checks. [[mobile-resilience]] controls (root/jailbreak detection) are the last line of defense if storage protections fail, since extraction typically requires root or jailbreak access.