├── README.md ├── c2_build.py ├── requirements.txt └── src ├── config └── network.yaml └── templates ├── cleanup.tf ├── configs ├── nebula │ ├── config-edge.yaml │ ├── config-internal.yaml │ ├── config-lighthouse.yaml │ ├── config-operator.yaml │ └── config-teamserver.yaml └── web │ └── Caddyfile.txt ├── dns.tf ├── edge-redirectors.tf ├── files └── webbug_getonly.profile ├── internal-redirectors.tf ├── keys └── generate_key.sh ├── lighthouse.tf ├── output.tf ├── providers.tf ├── security.tf ├── setup.tf ├── team-server.tf └── variables.tf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/README.md -------------------------------------------------------------------------------- /c2_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/c2_build.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-terraform==0.10.1 2 | PyYAML==6.0 3 | -------------------------------------------------------------------------------- /src/config/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/config/network.yaml -------------------------------------------------------------------------------- /src/templates/cleanup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/cleanup.tf -------------------------------------------------------------------------------- /src/templates/configs/nebula/config-edge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/nebula/config-edge.yaml -------------------------------------------------------------------------------- /src/templates/configs/nebula/config-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/nebula/config-internal.yaml -------------------------------------------------------------------------------- /src/templates/configs/nebula/config-lighthouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/nebula/config-lighthouse.yaml -------------------------------------------------------------------------------- /src/templates/configs/nebula/config-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/nebula/config-operator.yaml -------------------------------------------------------------------------------- /src/templates/configs/nebula/config-teamserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/nebula/config-teamserver.yaml -------------------------------------------------------------------------------- /src/templates/configs/web/Caddyfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/configs/web/Caddyfile.txt -------------------------------------------------------------------------------- /src/templates/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/dns.tf -------------------------------------------------------------------------------- /src/templates/edge-redirectors.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/edge-redirectors.tf -------------------------------------------------------------------------------- /src/templates/files/webbug_getonly.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/files/webbug_getonly.profile -------------------------------------------------------------------------------- /src/templates/internal-redirectors.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/internal-redirectors.tf -------------------------------------------------------------------------------- /src/templates/keys/generate_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/keys/generate_key.sh -------------------------------------------------------------------------------- /src/templates/lighthouse.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/lighthouse.tf -------------------------------------------------------------------------------- /src/templates/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/output.tf -------------------------------------------------------------------------------- /src/templates/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/providers.tf -------------------------------------------------------------------------------- /src/templates/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/security.tf -------------------------------------------------------------------------------- /src/templates/setup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/setup.tf -------------------------------------------------------------------------------- /src/templates/team-server.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/team-server.tf -------------------------------------------------------------------------------- /src/templates/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maliciousgroup/C2_Automation/HEAD/src/templates/variables.tf --------------------------------------------------------------------------------