├── .gitignore ├── LICENSE ├── README.md └── aws_s3_crypto_poc ├── README.md ├── exploit ├── attack_input.go ├── combined_oracle_exploit.go ├── hash_exploit.go └── padding_oracle_exploit.go ├── go.mod ├── go.sum ├── main.go └── mocks ├── mock.go ├── mockkms.go └── mocks3.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/README.md -------------------------------------------------------------------------------- /aws_s3_crypto_poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/README.md -------------------------------------------------------------------------------- /aws_s3_crypto_poc/exploit/attack_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/exploit/attack_input.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/exploit/combined_oracle_exploit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/exploit/combined_oracle_exploit.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/exploit/hash_exploit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/exploit/hash_exploit.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/exploit/padding_oracle_exploit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/exploit/padding_oracle_exploit.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/go.mod -------------------------------------------------------------------------------- /aws_s3_crypto_poc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/go.sum -------------------------------------------------------------------------------- /aws_s3_crypto_poc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/main.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/mocks/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/mocks/mock.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/mocks/mockkms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/mocks/mockkms.go -------------------------------------------------------------------------------- /aws_s3_crypto_poc/mocks/mocks3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophieschmieg/exploits/HEAD/aws_s3_crypto_poc/mocks/mocks3.go --------------------------------------------------------------------------------