├── .gitignore ├── .gitmodules ├── Dockerfile ├── KeySwitch ├── .gitignore ├── cmd │ ├── dynamodb.go │ ├── ebs.go │ ├── kms.go │ ├── rds.go │ ├── root.go │ ├── s3.go │ ├── setup.go │ └── utils.go ├── go.mod ├── go.sum ├── libebs │ ├── defs.go │ ├── ec2.go │ ├── snapshots.go │ ├── utils.go │ └── volumes.go ├── liblogger │ └── init.go ├── libswitch │ └── awsconf.go └── main.go ├── LICENSE ├── Makefile ├── README.md ├── config ├── config.json └── settings.toml └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- 1 | Diagrams/ 2 | .env 3 | keyswitch 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/Dockerfile -------------------------------------------------------------------------------- /KeySwitch/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /KeySwitch/cmd/dynamodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/dynamodb.go -------------------------------------------------------------------------------- /KeySwitch/cmd/ebs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/ebs.go -------------------------------------------------------------------------------- /KeySwitch/cmd/kms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/kms.go -------------------------------------------------------------------------------- /KeySwitch/cmd/rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/rds.go -------------------------------------------------------------------------------- /KeySwitch/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/root.go -------------------------------------------------------------------------------- /KeySwitch/cmd/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/s3.go -------------------------------------------------------------------------------- /KeySwitch/cmd/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/setup.go -------------------------------------------------------------------------------- /KeySwitch/cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/cmd/utils.go -------------------------------------------------------------------------------- /KeySwitch/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/go.mod -------------------------------------------------------------------------------- /KeySwitch/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/go.sum -------------------------------------------------------------------------------- /KeySwitch/libebs/defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libebs/defs.go -------------------------------------------------------------------------------- /KeySwitch/libebs/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libebs/ec2.go -------------------------------------------------------------------------------- /KeySwitch/libebs/snapshots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libebs/snapshots.go -------------------------------------------------------------------------------- /KeySwitch/libebs/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libebs/utils.go -------------------------------------------------------------------------------- /KeySwitch/libebs/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libebs/volumes.go -------------------------------------------------------------------------------- /KeySwitch/liblogger/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/liblogger/init.go -------------------------------------------------------------------------------- /KeySwitch/libswitch/awsconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/libswitch/awsconf.go -------------------------------------------------------------------------------- /KeySwitch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/KeySwitch/main.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/config/config.json -------------------------------------------------------------------------------- /config/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/config/settings.toml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshVaragiya/aws-redteam-kit/HEAD/docker-compose.yml --------------------------------------------------------------------------------