Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pbrisbin/scout2-json
Identify security problems in your AWS configuration
https://github.com/pbrisbin/scout2-json
Last synced: 10 days ago
JSON representation
Identify security problems in your AWS configuration
- Host: GitHub
- URL: https://github.com/pbrisbin/scout2-json
- Owner: pbrisbin
- Created: 2016-07-02T22:56:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-01T22:59:41.000Z (over 8 years ago)
- Last Synced: 2024-11-09T07:47:29.513Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a small Dockerfile that wraps (my branch of) the iSECPartners/Scout2
tool to output violation information as JSON, for consumption by other tools.## Installation & Usage
Generate the full report:
```
docker run --rm \
--env AWS_ACCESS_KEY_ID=... \
--env AWS_SECRET_ACCESS_KEY=... \
pbrisbin/scout2
```This repository also includes a small ruby script that filters and re-formats
the full JSON into something more manageable:```
docker run --rm \
--env AWS_ACCESS_KEY_ID=... \
--env AWS_SECRET_ACCESS_KEY=... \
pbrisbin/scout2 | bin/format
```## License
GNU/GPLv2, since that's what Scout2 is licensed as.