├── Exercise 01 ├── .DS_Store └── webserver │ ├── main.tf │ └── securitygroup.tf ├── Exercise 02 └── webserver │ ├── Ansible-Playbooks │ ├── inventory.tpl │ └── setup_webserver.yml │ └── Terraform │ ├── main.tf │ └── securitygroup.tf ├── Exericise (Github Actions) └── sample.yml ├── Final_Project ├── Ansible-Playbooks │ ├── evilginx │ │ ├── evilginx_setup.yml │ │ └── inventory.tpl │ ├── gophish │ │ ├── gophish.service │ │ ├── gophish_setup.yml │ │ └── inventory.tpl │ ├── http-redir │ │ ├── http_redirector_setup.yml │ │ ├── inventory.tpl │ │ └── setup_redelk.yml │ ├── redelk │ │ ├── download_redelk.yml │ │ ├── inventory.tpl │ │ └── setup_redelk.yml │ ├── teamserver │ │ ├── inventory.tpl │ │ └── teamserver.yml │ └── website-cloner │ │ ├── inventory.tpl │ │ ├── main.yml │ │ └── ssl-setup.yml ├── README.md ├── create_ssh_config.sh ├── main.tf ├── modules │ ├── aws │ │ ├── bastion_host │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── create-dns-record │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── create_vpc │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── evilginx │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── gophish │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── http-redir │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── redelk_httpredir.conf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── namecheap-to-route53 │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── plain-instance │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── redelk │ │ │ ├── config.cnf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ ├── teamserver │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ └── variables.tf │ │ └── webserver-clone │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── securitygroup.tf │ │ │ ├── server-ssl.conf │ │ │ └── variables.tf │ ├── azure │ │ └── azure-cdn │ │ │ ├── main.tf │ │ │ └── variables.tf │ └── mailgun │ │ ├── main.tf │ │ └── variables.tf └── variables.tf ├── README.md └── RedTeamInfraAutomation.pdf /Exercise 01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 01/.DS_Store -------------------------------------------------------------------------------- /Exercise 01/webserver/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 01/webserver/main.tf -------------------------------------------------------------------------------- /Exercise 01/webserver/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 01/webserver/securitygroup.tf -------------------------------------------------------------------------------- /Exercise 02/webserver/Ansible-Playbooks/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 02/webserver/Ansible-Playbooks/inventory.tpl -------------------------------------------------------------------------------- /Exercise 02/webserver/Ansible-Playbooks/setup_webserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 02/webserver/Ansible-Playbooks/setup_webserver.yml -------------------------------------------------------------------------------- /Exercise 02/webserver/Terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 02/webserver/Terraform/main.tf -------------------------------------------------------------------------------- /Exercise 02/webserver/Terraform/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exercise 02/webserver/Terraform/securitygroup.tf -------------------------------------------------------------------------------- /Exericise (Github Actions)/sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Exericise (Github Actions)/sample.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/evilginx/evilginx_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/evilginx/evilginx_setup.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/evilginx/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/evilginx/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/gophish/gophish.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/gophish/gophish.service -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/gophish/gophish_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/gophish/gophish_setup.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/gophish/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/gophish/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/http-redir/http_redirector_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/http-redir/http_redirector_setup.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/http-redir/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/http-redir/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/http-redir/setup_redelk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/http-redir/setup_redelk.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/redelk/download_redelk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/redelk/download_redelk.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/redelk/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/redelk/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/redelk/setup_redelk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/redelk/setup_redelk.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/teamserver/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/teamserver/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/teamserver/teamserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/teamserver/teamserver.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/website-cloner/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/website-cloner/inventory.tpl -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/website-cloner/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/website-cloner/main.yml -------------------------------------------------------------------------------- /Final_Project/Ansible-Playbooks/website-cloner/ssl-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/Ansible-Playbooks/website-cloner/ssl-setup.yml -------------------------------------------------------------------------------- /Final_Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/README.md -------------------------------------------------------------------------------- /Final_Project/create_ssh_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/create_ssh_config.sh -------------------------------------------------------------------------------- /Final_Project/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/bastion_host/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/bastion_host/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/bastion_host/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/bastion_host/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/bastion_host/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/bastion_host/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/bastion_host/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/bastion_host/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create-dns-record/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/create-dns-record/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create-dns-record/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/create-dns-record/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create-dns-record/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/create-dns-record/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create_vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/create_vpc/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create_vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/create_vpc/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/create_vpc/variables.tf: -------------------------------------------------------------------------------- 1 | variable "avl_zone" { 2 | 3 | } -------------------------------------------------------------------------------- /Final_Project/modules/aws/evilginx/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/evilginx/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/evilginx/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/evilginx/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/evilginx/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/evilginx/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/evilginx/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/evilginx/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/gophish/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/gophish/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/gophish/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/gophish/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/gophish/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/gophish/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/gophish/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/gophish/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/http-redir/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/http-redir/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/http-redir/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/http-redir/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/http-redir/redelk_httpredir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/http-redir/redelk_httpredir.conf -------------------------------------------------------------------------------- /Final_Project/modules/aws/http-redir/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/http-redir/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/http-redir/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/http-redir/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/namecheap-to-route53/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/namecheap-to-route53/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/namecheap-to-route53/variables.tf: -------------------------------------------------------------------------------- 1 | variable domains { 2 | type = list(string) 3 | } 4 | 5 | -------------------------------------------------------------------------------- /Final_Project/modules/aws/plain-instance/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/plain-instance/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/plain-instance/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/plain-instance/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/plain-instance/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/plain-instance/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/plain-instance/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/plain-instance/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/redelk/config.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/redelk/config.cnf -------------------------------------------------------------------------------- /Final_Project/modules/aws/redelk/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/redelk/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/redelk/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/redelk/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/redelk/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/redelk/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/redelk/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/redelk/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/teamserver/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/teamserver/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/teamserver/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/teamserver/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/teamserver/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/teamserver/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/teamserver/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/teamserver/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/webserver-clone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/webserver-clone/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/webserver-clone/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/webserver-clone/outputs.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/webserver-clone/securitygroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/webserver-clone/securitygroup.tf -------------------------------------------------------------------------------- /Final_Project/modules/aws/webserver-clone/server-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/webserver-clone/server-ssl.conf -------------------------------------------------------------------------------- /Final_Project/modules/aws/webserver-clone/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/aws/webserver-clone/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/azure/azure-cdn/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/azure/azure-cdn/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/azure/azure-cdn/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/azure/azure-cdn/variables.tf -------------------------------------------------------------------------------- /Final_Project/modules/mailgun/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/mailgun/main.tf -------------------------------------------------------------------------------- /Final_Project/modules/mailgun/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/modules/mailgun/variables.tf -------------------------------------------------------------------------------- /Final_Project/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/Final_Project/variables.tf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/README.md -------------------------------------------------------------------------------- /RedTeamInfraAutomation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazzyddos/HSC24RedTeamInfra/HEAD/RedTeamInfraAutomation.pdf --------------------------------------------------------------------------------