Android Configuration Checker is a command-line tool designed to ensure compliance of Android device configurations with CIS (Center for Internet Security) benchmarks. By leveraging ADB (Android Debug Bridge), it verifies device settings against predefined benchmarks and generates detailed reports, highlighting compliance status.
- CIS Benchmark Compliance: Validate Android device settings against CIS benchmarks to ensure adherence to security best practices. ✔️
- Custom Checks: Define custom checks using ADB commands to address specific compliance requirements beyond CIS benchmarks. 🔧
- Comprehensive Reporting: Generate detailed Excel reports with compliance status for each verified setting, aiding in audit and remediation efforts. 📊
- Error Handling: Robust error handling mechanism ensures accurate compliance assessment, with detailed error reporting for failed commands. ❌
- Clone the repository:
git clone https://github.com/saladandonionrings/CIS-Android-Audit.git
- Install dependencies:
cd CIS-Android-Audit pip install -r requirements.txt
- Ensure your Android device is connected to the computer and ADB is enabled.
- Run the script with the desired device and configuration file:
python3 cis-audit-android.py --device <device_id> --config <path_to_configuration_file>
The configuration file (default : settings.json
) contains the expected settings and CIS benchmark to be verified.
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by CIS benchmarks for Android devices.
- Built with Python and ADB.