← ClaudeAtlas

goadlisted

GOAD (Game of Active Directory) lab environment — AWS-based Active Directory pentest lab with 1 Ubuntu jumpbox and 5 Windows Server VMs (2 forests, 3 domains). Provides SSH/WinRM access, Ansible playbooks, server configs, and credentials for AD security testing, lateral movement practice, and Kerberos attacks.
DrOlu/agent-skills · ★ 0 · DevOps & Infrastructure · score 60
Install: claude install-skill DrOlu/agent-skills
# GOAD — Game of Active Directory Lab AWS-hosted Active Directory pentest lab with multi-forest, multi-domain topology for practicing AD attacks, lateral movement, and Kerberos exploitation. ## Network Topology ``` Internet → Jumpbox (15.188.19.167) → Private Subnet (192.168.56.0/24) ├── DC01 (192.168.56.10) sevenkingdoms.local [PDC] ├── DC02 (192.168.56.11) north.sevenkingdoms.local [Child DC] ├── DC03 (192.168.56.12) essos.local [Separate forest] ├── SRV02 (192.168.56.22) north.sevenkingdoms.local [Member] └── SRV03 (192.168.56.23) essos.local [Member] ``` ## Server Configuration ### Jumpbox (Ubuntu 22.04) | Property | Value | |----------|-------| | Hostname | `ip-192-168-56-100` | | Public IP | `15.188.19.167` | | Private IP | `192.168.56.100` | | SSH Key | `cyberagent/GOAD/workspace/03ea37-goad-aws/ssh_keys/ubuntu-jumpbox.pem` | | Ansible | ✅ Configured | | Dependencies | ✅ Installed | | Source Code | ✅ Synchronized | **SSH Access:** ```bash ssh -i cyberagent/GOAD/workspace/03ea37-goad-aws/ssh_keys/ubuntu-jumpbox.pem ubuntu@15.188.19.167 ``` **Privesc to root:** ```bash sudo -i ``` **Tunnel Windows hosts through jumpbox:** ```bash # Forward WinRM (5985/5986) for a target through the jumpbox ssh -i cyberagent/GOAD/workspa