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" ( 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.
In the AndroidManifest.xml file, the allowBackup flag controls whether the app's data can be backed up. In addition, the fullBackupContent attribute (for Android 11 or lower) or the dataExtractionRules attribute (for Android 12 and higher) can be used to reference XML files that specify which files should be included or excluded from backups using the exclude tag. The files are typically named:
backup_rules.xml(for Android 11 or lower usingandroid:fullBackupContent)data_extraction_rules.xml(for Android 12 and higher usingandroid:dataExtractionRules)
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¶
- Use Obtaining Information from the AndroidManifest to obtain the AndroidManifest.xml.
- Use Analyzing the AndroidManifest to obtain the relevant flag and attributes from the AndroidManifest.xml.
- Use Exploring the App Package to extract the
backup_rules.xmlordata_extraction_rules.xmlfile from the app package.
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 case fails if the app allows sensitive data to be backed up. Specifically, if the following conditions are met:
android:allowBackup="true"in theAndroidManifest.xmlandroid:fullBackupContent="@xml/backup_rules"isn't declared in theAndroidManifest.xml(for Android 11 or lower)android:dataExtractionRules="@xml/data_extraction_rules"isn't declared in theAndroidManifest.xml(for Android 12 and higher)backup_rules.xmlordata_extraction_rules.xmlaren't present or don't exclude all sensitive files.
Best Practices¶
MASTG-BEST-0004: Exclude Sensitive Data from Backups