Gathers evidence, performs testing, and creates audit reports in ~25 lines of code per provider (AWS, GitHub, etc).
This project is maintained and published by AuditOps.io.
- Vendor Due Diligence: Evaluate your vendors actual security posture using transparent and timely reports.
- Audits: Automatically collect and share high quality evidence directly to your auditor (no screenshots required).
- Install pre-requisites:
- Python Tutorial
- AWS CLI
- Run these commands to check if everything is installed correctly. If you receive an error, go back to the videos in Step 1.
python --version aws --version - Install the latest version of the AuditOps-SDK python library.
pip install -U <package_name> - Create an IAM user (or Identity Center user) in the AWS management console.
- The user needs Security Audit permissions.
- Create an access key for the IAM user created in the previous step: AWS Docs
- NOTE: Configure the access key on your local machine using the 'aws configure' command Video Tutorial.
- NOTE: Access keys can only be viewed once, at the time of creation. They must be stored securely elsewhere for future use.
- Copy the code below and name the file auditops_example.py.
from auditops.core.models import Audit, AuditHelpers from auditops.providers.aws import AWSCollector, AWSTester, AWSConfig from auditops.core.utils import aws_create_session import boto3 from datetime import datetime def main(): session = aws_create_session() aws_config = AWSConfig(in_scope_regions=['us-east-1']) helpers = AuditHelpers.create() audit = Audit(helpers = helpers, title = "AWS Audit Report", config=aws_config, auditor_name = "Happy Gilmore", audit_folder = "aws", delete_cached_evidence=True, summary_mode=True, exclusions=None) audit.run(collector=AWSCollector(session), tester=AWSTester()) if __name__ == "__main__": main() - Run the code:
python auditops_example.py - A new folder will be created for the audit. Within that folder, the library will collect and store the evidence in the 'audit_evidence' folder. Once collected, it will begin performing the testing and the audit reports will be stored in the 'reports' folder.
- Lightweight: You can setup this library in minutes, and it doesn't require intensive integrations with your cloud providers. This eliminates vendor lock-in and gives you control over how your data is processed.
- Repeatability: Clear instructions explain how evidence was gathered and describes the test procedures that were performed. Share your AuditOps report + supporting evidence, and kindly ask your auditor to re-perform the work that was already done.
- Anti-Checkbox: We all know that compliance has become a check-box exercise. We hope you'll use this library to fight against it and start holding everyone to higher standard.