MASTG-TEST-0262: References to Backup Configurations Not Excluding Sensitive Data
Overview¶
This test verifies whether apps correctly instruct the system to exclude sensitive files from backups by analyzing the app's AndroidManifest.xml and backup rule configuration files.
"Android Backups" can be implemented via Auto Backup (Android 6.0 (API level 23) and higher) and Key-value backup (Android 2.2 (API level 8) and higher). Auto Backup is the recommended approach by Android as it is enabled by default and requires no work to implement.
To exclude specific files when using Auto Backup, developers must explicitly define exclusion rules in the exclude tag in:
- data_extraction_rules.xml(for Android 12 and higher using- android:dataExtractionRules)
- backup_rules.xml(for Android 11 or lower using- android:fullBackupContent)
The cloud-backup and device-transfer parameters can be used to exclude files from cloud backups and device-to-device transfers, respectively.
The key-value backup approach requires developers to set up a BackupAgent or BackupAgentHelper and specify what data should be backed up.
Regardless of which approach the app used, Android provides a way to start the backup daemon to back up and restore app files. You can use this daemon for testing purposes and initiate the backup process and restore the app's data, allowing you to verify which files were restored from the backup.
Steps¶
- Obtain the AndroidManifest.xmlfile using Obtaining Information from the AndroidManifest.
- Search for the allowBackupflag in theAndroidManifest.xml.
- Search for the fullBackupContentattribute (for Android 11 or lower) or thedataExtractionRulesattribute (for Android 12 and higher) in theAndroidManifest.xml.
- Retrieve the backup_rules.xmlordata_extraction_rules.xmlfile.
Observation¶
The output should explicitly show:
- whether the allowBackupflag is set totrueorfalse. If the flag is not specified, it is treated astrueby default.
- whether the fullBackupContentand/ordataExtractionRulesattributes are present in theAndroidManifest.xml.
- the contents of the backup_rules.xmlordata_extraction_rules.xmlfile, if present.
Evaluation¶
The test fails if the app allows sensitive data to be backed up. Specifically, if the following conditions are met:
- android:allowBackup="true"in the- AndroidManifest.xml
- android:fullBackupContent="@xml/backup_rules"isn't declared in the- AndroidManifest.xml(for Android 11 or lower)
- android:dataExtractionRules="@xml/data_extraction_rules"isn't declared in the- AndroidManifest.xml(for Android 12 and higher)
- backup_rules.xmlor- data_extraction_rules.xmlaren't present or don't exclude all sensitive files.