Merge pull request #32 from carnal0wnage/env

this will give people some basic idea of using the dotenv file
This commit is contained in:
Ken Johnson
2018-04-19 11:46:22 -04:00
committed by GitHub
2 changed files with 12 additions and 5 deletions

View File

@@ -1,8 +1,16 @@
# Weird AAL # Weird AAL
Weird AWS Attack Library (AAL) Weird AWS Attack Library (AAL)
<img src="http://earnthis.net/wp-content/uploads/2013/12/150490_large.jpg" align="center" height="240" width="350"> <img src="http://earnthis.net/wp-content/uploads/2013/12/150490_large.jpg" align="center" height="240" width="350">
# Credentials
You will want to copy the `env.sample` file over to a `.env` file in your weirdAAL directory. Then place the relevant keys where applicable. Example:
```bash
weirdAAL$ cp env.sample .env
```
# Examples # Examples
## IAM ## IAM
@@ -18,7 +26,3 @@ Weird AWS Attack Library (AAL)
## EC2 ## EC2
- ec2_review_encrypted_volumes.py -- review ec2 instances for encryption status -write out unencrypted ones to file - ec2_review_encrypted_volumes.py -- review ec2 instances for encryption status -write out unencrypted ones to file
(port of https://gist.github.com/cktricky/0fa3b13ca4306bcd1ec384e88eac3f55) (port of https://gist.github.com/cktricky/0fa3b13ca4306bcd1ec384e88eac3f55)

3
env.sample Normal file
View File

@@ -0,0 +1,3 @@
[default]
aws_access_key_id = <insert key id>
aws_secret_access_key = <insert secret key>