Data Theorem's Mobile Secure will scan each pre-production release automatically (up to 7000 releases/day) for security & privacy issues using static, dynamic, and behavioral analysis for both iOS and Android applications.
More information can be found here:
https://www.datatheorem.com/products/mobile-secure
Add the following to your pipeline.yml
:
steps:
- label: "Build Mobile App Binary"
# replace this step with your own logic to build the pre-prod mobile binary that you want to scan
command: "echo 'Example mobile binary build step...'"
- label: "Upload Mobile App Binary to Data Theorem for scanning"
plugins:
- datatheorem/data-theorem-mobile-secure:
UPLOAD_API_KEY: $(buildkite-agent secret get DT_UPLOAD_API_KEY)
BINARY_PATH: "app-debug.apk" # path to the pre-prod mobile binary built in the previous step
An optional Java mapping.txt file for deobfuscating Android binaries.
steps:
- label: "Build Mobile App Binary"
# replace this step with your own logic to build the pre-prod mobile binary that you want to scan
command: "echo 'Example mobile binary build step...'"
- label: "Upload Mobile App Binary to Data Theorem for scanning"
plugins:
- datatheorem/data-theorem-mobile-secure:
UPLOAD_API_KEY: $(buildkite-agent secret get DT_UPLOAD_API_KEY)
BINARY_PATH: "app-debug.apk" # path to the pre-prod mobile binary built in the previous step
SOURCEMAP_PATH: "mapping.txt" # path to mapping.txt
Optionally, you can configure the plugin to wait for the scan to complete and print out the number of new security findings.
To do this, add the extra flag POLL_SCAN_RESULTS: true
This mode will also require to set up a Data Theorem Mobile Results API Key
It can be retrieved or created at DevSecOps -> Data Theorem Results API
And set it as a secret accessible to your BuildKite pipeline.
steps:
- label: "Build Mobile App Binary"
# replace this step with your own logic to build the pre-prod mobile binary that you want to scan
command: "echo 'Example mobile binary build step...'"
- label: "Upload Mobile App Binary to Data Theorem for scanning"
plugins:
- datatheorem/data-theorem-mobile-secure:
UPLOAD_API_KEY: $(buildkite-agent secret get DT_UPLOAD_API_KEY)
BINARY_PATH: "app-debug.apk" # path to the pre-prod mobile binary built in the previous step
POLL_SCAN_RESULTS: true
MOBILE_RESULTS_API_KEY: $(buildkite-agent secret get DT_MOBILE_RESULTS_API_KEY)
The plugin's logs should look like this for a successful scan with no discovered security issues
API Key you can retrieve in the Data theorem Portal DevSecOps -> Scan via CI/CD
Hard-coding the raw value of the API key is not recommended for security reasons. We recommend using BuildKite Secrets
- On your agent cluster, define a secret named
DT_UPLOAD_API_KEY
and set the value to what you have retrieved from the Data Theorem Portal - In the BuildKite pipeline definition, you can pass the API Key as
UPLOAD_API_KEY: $(buildkite-agent secret get DT_UPLOAD_API_KEY)
in the plugin's inputs
Path to the mobile binary (APK, IPA, APPX or XAP) to be scanned.
An optional path to a Java mapping.txt file for deobfuscating Android binaries. Note: Once deobfuscation is enabled for PRE_PROD or ENTERPRISE Android app, future uploads of the same app will also require a mapping file. See How To Enable De-obfuscation of Android Scan Results Using A Mapping File for more information.
When set to true
, the plugin will poll for the scan's status until completion and print if the scan has found any new issues
This requires a Data Theorem Mobile Results API Key to be set (see below)
API Key you can retrieve in the Data theorem Portal DevSecOps -> Data Theorem Results API This is only required if you want to poll for scan results instead of exiting after starting the scan.
Hard-coding the raw value of the API key is not recommended for security reasons. We recommend using BuildKite Secrets
- On your agent cluster, define a secret named
DT_MOBILE_RESULTS_API_KEY
and set the value to what you have retrieved from the Data Theorem Portal - In the BuildKite pipeline definition, you can pass the API Key as
MOBILE_RESULTS_API_KEY: $(buildkite-agent secret get DT_MOBILE_RESULTS_API_KEY)
in the plugin's inputs
It should look like this in your Buildkite agent secret settings