├── README.md └── docs ├── CNAME └── index.html /README.md: -------------------------------------------------------------------------------- 1 | ## Darkbit Cloud Security Tools 2 | 3 | ### OpenCSPM (Cloud Security Posture Management framework) 4 | 5 | OpenCSPM is an open-source platform that aims to make continuous cloud security posture management easy and scalable. 6 | 7 | [GitHub Repo](https://github.com/OpenCSPM/opencspm) 8 | 9 | ### AWS Recon (AWS Asset Inventory Collection Tool) 10 | 11 | AWS Recon is a command line tool for collecting your entire AWS environment. The tool aims to have better coverage than **AWS Config** while being relatively quick to run, even on large accounts. 12 | 13 | [GitHub Repo](https://github.com/darkbitio/aws-recon) 14 | 15 | ### MKAP (Managed Kubernetes Action Plan) 16 | 17 | The Kubernetes Security Action Plan is your guide to the best practices for deploying secure, scalable, and highly available Kubernetes infrastructure. 18 | 19 | [Start Action Plan](https://darkbit.io/plan) 20 | 21 | ### MKIT (Managed Kubernetes Inspector Tool) 22 | 23 | This is a tool that collects configuration data from your Cloud Service Provider (CSP) and your Kubernetes cluster and reports on common security risks and vulnerabilities. 24 | 25 | [GitHub Repo](https://github.com/darkbitio/mkit) 26 | 27 | ### AWS S3 DLP 28 | 29 | This is a tool to monitor unauthorized or unexpected data transfer from S3 buckets in your org to an external account. It works by triggering CloudWatch rules generated by S3 API `CopyObject` events. These events are then sent to an SNS Topic, which in turn invoke a Lambda function to parse the event and send a Slack notification if objects were copied to an external account. 30 | 31 | [GitHub Repo](https://github.com/darkbitio/aws-s3-dlp) 32 | 33 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | darkbit.dev 2 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |