gitextract_pfekmv1c/ ├── LICENSE ├── README.md ├── html/ │ ├── EvilGinx.html │ ├── Full_Infra.html │ ├── GoPhish.html │ ├── Mythic_C2.html │ ├── Mythic_C2_with_ELB.html │ └── pwndrop.html ├── infra_deployment_guide/ │ ├── AWS/ │ │ ├── assets/ │ │ │ └── test │ │ └── readme.md │ ├── Azure/ │ │ └── readme.md │ └── GCP/ │ └── readme.md └── redinfracraft/ ├── Terraform/ │ ├── AWS/ │ │ ├── AWS_Evilginx_Phishing_Server/ │ │ │ └── main.tf │ │ ├── AWS_GoPhish_Phishing_Server/ │ │ │ └── main.tf │ │ ├── AWS_Mythic_C2/ │ │ │ └── main.tf │ │ ├── AWS_Mythic_C2_with_CloudFront/ │ │ │ └── main.tf │ │ └── AWS_Pwndrop_Payload_Server/ │ │ └── main.tf │ ├── Azure/ │ │ ├── Azure_Evilginx_Phishing_Server/ │ │ │ ├── main.tf │ │ │ └── script.sh │ │ ├── Azure_GoPhish_Phishing_Server/ │ │ │ ├── main.tf │ │ │ └── script.sh │ │ ├── Azure_Mythic_C2/ │ │ │ ├── main.tf │ │ │ └── script.sh │ │ ├── Azure_Mythic_C2_with_Frontdoor/ │ │ │ ├── main.tf │ │ │ └── script.sh │ │ └── Azure_Pwndrop_Payload_Server/ │ │ ├── main.tf │ │ └── script.sh │ ├── GCP/ │ │ └── GCP_Mythic_C2_with_ELB/ │ │ ├── mythic.tf │ │ └── script.sh │ └── terraform.auto.tfvars └── redinfracraft.py