├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── cmd └── root.go ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/GoAWSConsoleSpray/HEAD/main.go --------------------------------------------------------------------------------