├── .github └── ISSUE_TEMPLATE │ ├── content-correction.md │ └── propose-new-content.md ├── Document ├── 0x01-Overview.md ├── 0x02-Amazon-AWS-Testing-Guide.md └── 0x02a-Platform-Overview.md ├── README.md ├── cloud-model.jpg ├── cognito.md ├── ec2.md └── s3.md /.github/ISSUE_TEMPLATE/content-correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/.github/ISSUE_TEMPLATE/content-correction.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/propose-new-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/.github/ISSUE_TEMPLATE/propose-new-content.md -------------------------------------------------------------------------------- /Document/0x01-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/Document/0x01-Overview.md -------------------------------------------------------------------------------- /Document/0x02-Amazon-AWS-Testing-Guide.md: -------------------------------------------------------------------------------- 1 | # Amazon AWS Testing Guide 2 | -------------------------------------------------------------------------------- /Document/0x02a-Platform-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/Document/0x02a-Platform-Overview.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/README.md -------------------------------------------------------------------------------- /cloud-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/cloud-model.jpg -------------------------------------------------------------------------------- /cognito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/cognito.md -------------------------------------------------------------------------------- /ec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/ec2.md -------------------------------------------------------------------------------- /s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/owasp-cstg/HEAD/s3.md --------------------------------------------------------------------------------