├── .circleci └── config.yml ├── .travis.yml ├── AttackServers ├── CobaltStrike │ ├── .env │ ├── CobaltStrike │ │ └── Dockerfile │ ├── README.md │ └── docker-compose.yml ├── Empire │ └── Dockerfile └── README.md ├── DockerSetup ├── .gitkeep ├── README.md └── dockerSetup.sh ├── GoPhish ├── .gitkeep ├── Dockerfile └── README.md ├── LICENSE ├── PhishingServer ├── .DS_Store ├── .gitkeep ├── README.md ├── emailServer.sh └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── NS_ttl.png │ ├── SPF-1.png │ ├── addDN1.png │ ├── add_mailbx.png │ ├── check_dns_settings.png │ ├── createTXTrec1.png │ ├── createTXTrec2.png │ ├── createTXTrec3.png │ ├── dkim_1.png │ ├── edit_ttl.png │ ├── good_settings.png │ ├── mailbox_user.png │ ├── set_mx.png │ ├── set_mx_2.png │ ├── srvsetup.png │ └── test-score.png ├── README.md ├── Redirectors ├── .gitkeep ├── DNS │ └── DNS.sh ├── HTTP │ └── Dockerfile ├── HTTPS │ └── Dockerfile ├── README.md └── https_letsencrypt │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ ├── docker-compose.yml │ └── nginx.conf ├── ase_docker ├── .env ├── Dockerfile ├── README.md ├── docker-compose.yml ├── nmap │ └── Dockerfile └── searchsploit │ ├── Dockerfile │ └── README.md ├── aws ├── Pipfile ├── README.md ├── ansible.cfg ├── deploy.sh ├── inventory │ ├── group_vars │ │ └── all │ └── hosts ├── playbooks │ ├── rai-attack-servers.retry │ ├── rai-attack-servers.yml │ └── rai-terminiate-stack.yml ├── requirements.yml ├── scripts │ ├── admin-home-watch.rules │ └── tmp-monitor.rules └── teardown.sh └── docs ├── .gitkeep ├── saved0.png └── saved0.svg /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/.travis.yml -------------------------------------------------------------------------------- /AttackServers/CobaltStrike/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/CobaltStrike/.env -------------------------------------------------------------------------------- /AttackServers/CobaltStrike/CobaltStrike/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/CobaltStrike/CobaltStrike/Dockerfile -------------------------------------------------------------------------------- /AttackServers/CobaltStrike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/CobaltStrike/README.md -------------------------------------------------------------------------------- /AttackServers/CobaltStrike/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/CobaltStrike/docker-compose.yml -------------------------------------------------------------------------------- /AttackServers/Empire/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/Empire/Dockerfile -------------------------------------------------------------------------------- /AttackServers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/AttackServers/README.md -------------------------------------------------------------------------------- /DockerSetup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DockerSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/DockerSetup/README.md -------------------------------------------------------------------------------- /DockerSetup/dockerSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/DockerSetup/dockerSetup.sh -------------------------------------------------------------------------------- /GoPhish/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoPhish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/GoPhish/Dockerfile -------------------------------------------------------------------------------- /GoPhish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/GoPhish/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/LICENSE -------------------------------------------------------------------------------- /PhishingServer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/.DS_Store -------------------------------------------------------------------------------- /PhishingServer/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhishingServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/README.md -------------------------------------------------------------------------------- /PhishingServer/emailServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/emailServer.sh -------------------------------------------------------------------------------- /PhishingServer/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/1.png -------------------------------------------------------------------------------- /PhishingServer/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/2.png -------------------------------------------------------------------------------- /PhishingServer/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/3.png -------------------------------------------------------------------------------- /PhishingServer/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/4.png -------------------------------------------------------------------------------- /PhishingServer/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/5.png -------------------------------------------------------------------------------- /PhishingServer/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/6.png -------------------------------------------------------------------------------- /PhishingServer/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/7.png -------------------------------------------------------------------------------- /PhishingServer/images/NS_ttl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/NS_ttl.png -------------------------------------------------------------------------------- /PhishingServer/images/SPF-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/SPF-1.png -------------------------------------------------------------------------------- /PhishingServer/images/addDN1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/addDN1.png -------------------------------------------------------------------------------- /PhishingServer/images/add_mailbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/add_mailbx.png -------------------------------------------------------------------------------- /PhishingServer/images/check_dns_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/check_dns_settings.png -------------------------------------------------------------------------------- /PhishingServer/images/createTXTrec1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/createTXTrec1.png -------------------------------------------------------------------------------- /PhishingServer/images/createTXTrec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/createTXTrec2.png -------------------------------------------------------------------------------- /PhishingServer/images/createTXTrec3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/createTXTrec3.png -------------------------------------------------------------------------------- /PhishingServer/images/dkim_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/dkim_1.png -------------------------------------------------------------------------------- /PhishingServer/images/edit_ttl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/edit_ttl.png -------------------------------------------------------------------------------- /PhishingServer/images/good_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/good_settings.png -------------------------------------------------------------------------------- /PhishingServer/images/mailbox_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/mailbox_user.png -------------------------------------------------------------------------------- /PhishingServer/images/set_mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/set_mx.png -------------------------------------------------------------------------------- /PhishingServer/images/set_mx_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/set_mx_2.png -------------------------------------------------------------------------------- /PhishingServer/images/srvsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/srvsetup.png -------------------------------------------------------------------------------- /PhishingServer/images/test-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/PhishingServer/images/test-score.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/README.md -------------------------------------------------------------------------------- /Redirectors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Redirectors/DNS/DNS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/DNS/DNS.sh -------------------------------------------------------------------------------- /Redirectors/HTTP/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/HTTP/Dockerfile -------------------------------------------------------------------------------- /Redirectors/HTTPS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/HTTPS/Dockerfile -------------------------------------------------------------------------------- /Redirectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/README.md -------------------------------------------------------------------------------- /Redirectors/https_letsencrypt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/https_letsencrypt/Dockerfile -------------------------------------------------------------------------------- /Redirectors/https_letsencrypt/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Redirectors/https_letsencrypt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/https_letsencrypt/build.sh -------------------------------------------------------------------------------- /Redirectors/https_letsencrypt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/Redirectors/https_letsencrypt/docker-compose.yml -------------------------------------------------------------------------------- /Redirectors/https_letsencrypt/nginx.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ase_docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/.env -------------------------------------------------------------------------------- /ase_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/Dockerfile -------------------------------------------------------------------------------- /ase_docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/README.md -------------------------------------------------------------------------------- /ase_docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/docker-compose.yml -------------------------------------------------------------------------------- /ase_docker/nmap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/nmap/Dockerfile -------------------------------------------------------------------------------- /ase_docker/searchsploit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/searchsploit/Dockerfile -------------------------------------------------------------------------------- /ase_docker/searchsploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/ase_docker/searchsploit/README.md -------------------------------------------------------------------------------- /aws/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/Pipfile -------------------------------------------------------------------------------- /aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/README.md -------------------------------------------------------------------------------- /aws/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/ansible.cfg -------------------------------------------------------------------------------- /aws/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/deploy.sh -------------------------------------------------------------------------------- /aws/inventory/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/inventory/group_vars/all -------------------------------------------------------------------------------- /aws/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/inventory/hosts -------------------------------------------------------------------------------- /aws/playbooks/rai-attack-servers.retry: -------------------------------------------------------------------------------- 1 | 18.220.162.23 2 | -------------------------------------------------------------------------------- /aws/playbooks/rai-attack-servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/playbooks/rai-attack-servers.yml -------------------------------------------------------------------------------- /aws/playbooks/rai-terminiate-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/playbooks/rai-terminiate-stack.yml -------------------------------------------------------------------------------- /aws/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/requirements.yml -------------------------------------------------------------------------------- /aws/scripts/admin-home-watch.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/scripts/admin-home-watch.rules -------------------------------------------------------------------------------- /aws/scripts/tmp-monitor.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/scripts/tmp-monitor.rules -------------------------------------------------------------------------------- /aws/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/aws/teardown.sh -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/saved0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/docs/saved0.png -------------------------------------------------------------------------------- /docs/saved0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/RAI/HEAD/docs/saved0.svg --------------------------------------------------------------------------------