├── .gitignore ├── Gsuite ├── create_user.py ├── list_emails.py ├── requirements.txt └── search_drive.py ├── LambdaBackdoor ├── go.mod ├── go.sum ├── main.go └── makefile ├── README.md ├── S3Backdoor ├── README.md ├── S3Agent │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── makefile └── S3Op │ ├── S3Wrapper.py │ ├── main.py │ └── requirements.txt ├── containers ├── README.md ├── nginx │ ├── Dockerfile │ ├── html │ │ └── index.html │ ├── init.sh │ └── nginx.conf └── silent │ └── Dockerfile └── infra ├── README.md ├── alb.tf.disabled ├── alb_module ├── main.tf └── variables.tf ├── ec2_module ├── main.tf ├── output.tf └── variables.tf ├── main.tf ├── output.tf ├── provider.tf ├── scripts ├── nginx.sh └── silent.sh ├── variables.tf └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/.gitignore -------------------------------------------------------------------------------- /Gsuite/create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/Gsuite/create_user.py -------------------------------------------------------------------------------- /Gsuite/list_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/Gsuite/list_emails.py -------------------------------------------------------------------------------- /Gsuite/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/Gsuite/requirements.txt -------------------------------------------------------------------------------- /Gsuite/search_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/Gsuite/search_drive.py -------------------------------------------------------------------------------- /LambdaBackdoor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/LambdaBackdoor/go.mod -------------------------------------------------------------------------------- /LambdaBackdoor/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/LambdaBackdoor/go.sum -------------------------------------------------------------------------------- /LambdaBackdoor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/LambdaBackdoor/main.go -------------------------------------------------------------------------------- /LambdaBackdoor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/LambdaBackdoor/makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/README.md -------------------------------------------------------------------------------- /S3Backdoor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/S3Backdoor/README.md -------------------------------------------------------------------------------- /S3Backdoor/S3Agent/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/S3C2 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /S3Backdoor/S3Agent/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /S3Backdoor/S3Agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/S3Backdoor/S3Agent/main.go -------------------------------------------------------------------------------- /S3Backdoor/S3Agent/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/S3Backdoor/S3Agent/makefile -------------------------------------------------------------------------------- /S3Backdoor/S3Op/S3Wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/S3Backdoor/S3Op/S3Wrapper.py -------------------------------------------------------------------------------- /S3Backdoor/S3Op/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/S3Backdoor/S3Op/main.py -------------------------------------------------------------------------------- /S3Backdoor/S3Op/requirements.txt: -------------------------------------------------------------------------------- 1 | coloredlogs 2 | boto3 -------------------------------------------------------------------------------- /containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/containers/README.md -------------------------------------------------------------------------------- /containers/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/containers/nginx/Dockerfile -------------------------------------------------------------------------------- /containers/nginx/html/index.html: -------------------------------------------------------------------------------- 1 |

it works

-------------------------------------------------------------------------------- /containers/nginx/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/containers/nginx/init.sh -------------------------------------------------------------------------------- /containers/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/containers/nginx/nginx.conf -------------------------------------------------------------------------------- /containers/silent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/containers/silent/Dockerfile -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/alb.tf.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/alb.tf.disabled -------------------------------------------------------------------------------- /infra/alb_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/alb_module/main.tf -------------------------------------------------------------------------------- /infra/alb_module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/alb_module/variables.tf -------------------------------------------------------------------------------- /infra/ec2_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/ec2_module/main.tf -------------------------------------------------------------------------------- /infra/ec2_module/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/ec2_module/output.tf -------------------------------------------------------------------------------- /infra/ec2_module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/ec2_module/variables.tf -------------------------------------------------------------------------------- /infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/main.tf -------------------------------------------------------------------------------- /infra/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/output.tf -------------------------------------------------------------------------------- /infra/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/provider.tf -------------------------------------------------------------------------------- /infra/scripts/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/scripts/nginx.sh -------------------------------------------------------------------------------- /infra/scripts/silent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/scripts/silent.sh -------------------------------------------------------------------------------- /infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcflow/HackLikeAGhost/HEAD/infra/variables.tf -------------------------------------------------------------------------------- /infra/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | --------------------------------------------------------------------------------