Cybersecurity

Active Directory Home Lab

Built a local AD environment to practice common attacks including NTLM relay, token impersonation, and Kerberos abuse.

Tools: Windows Server, OSTicket

Added: February 17, 2026

πŸ–₯️ Active Directory Enterprise Lab (Windows Server 2022)

A complete enterprise-grade Active Directory environment built from scratch using Windows Server 2022, Windows 10/11, Group Policy, NTFS permissions, file servers, printers, and real-world help desk workflows. This project simulates a real corporate IT infrastructure and demonstrates practical system administration skills.


πŸ“˜ Project Overview

This lab environment includes:

Network used: 192.168.192.130 – 134


πŸ—οΈ Architecture Overview

VMware Workstation Lab β”‚ β”œβ”€β”€ DC01 (Windows Server 2022) β”‚ β”œβ”€β”€ Active Directory Domain Services β”‚ β”œβ”€β”€ DNS β”‚ β”œβ”€β”€ Group Policy Management β”‚ β”œβ”€β”€ File Server β”‚ β”œβ”€β”€ Print Server β”‚ └── Home Folder Server β”‚ β”œβ”€β”€ WIN10-CLIENT (Domain Joined) └── WIN11-CLIENT (Domain Joined)


🏒 1. Active Directory Setup

βœ” Installed Windows Server 2022

Configured static IP, hostname, Windows updates. Server Manager Initial Dashboard

βœ” Promoted DC01 to Domain Controller

Domain: C.LOCAL DC Promotion Screen

βœ” DNS Installed

Forward lookup zones configured; verified workstation DNS registration.

βœ” Troubleshooting


πŸ—‚οΈ 2. Organizational Unit Structure

Company β”œβ”€β”€ Employees β”‚ β”œβ”€β”€ HR β”‚ β”œβ”€β”€ Finance β”‚ β”œβ”€β”€ Sales β”‚ └── IT β”œβ”€β”€ Workstations └── Groups

OU Structure

Each department contains users + a matching security group.


πŸ‘₯ 3. Users & Security Groups

Created department users and groups:

Department Group Example User
HR HR-Staff sarah.brown
Finance Finance-Staff emma.stone
Sales Sales-Staff john.smith
IT IT admin.it

βœ” Issue Encountered


🚦 4. Group Policy Management

Policies Configured:

βœ” Desktop Wallpaper

Using a shared UNC path: \DC01\Wallpapers\company.jpg

Wallpaper GPO Settings Wallpaper Applied - Client View

βœ” Block Control Panel

User Configuration β†’ Administrative Templates β†’ Control Panel β†’ Prohibit Access Block Control Panel GPO Test

βœ” Block USB Storage

Computer Configuration β†’ Administrative Templates β†’ System β†’ Removable Storage Access

βœ” Login Script

VBS script stored in SYSVOL for a welcome popup.

βœ” Password Policies

Updated in Default Domain Policy: - Minimum password length: 8
- Password history: 5
- Maximum password age: 90 days
- Complexity requirements: Enabled


πŸ—„οΈ 5. File Server + NTFS Permissions

Created:

C:\CompanyData
β”œβ”€β”€ HR
β”œβ”€β”€ Finance
β”œβ”€β”€ Sales
└── IT

Permissions Applied:

Folder Allowed Group Permissions
HR HR-Staff Modify
Finance Finance-Staff Modify
Sales Sales-Staff Modify
IT IT Full Control
HR NTFS Permissions

❌ Issue Encountered

User could access HR but not Sales.

βœ” Fix

Disabled inheritance β†’ Converted permissions β†’ Added Sales-Staff group correctly.


πŸ” 6. Drive Mapping (S:)

Deployed via GPO:

User Configuration β†’ Preferences β†’ Windows Settings β†’ Drive Maps

Mapped:

S: β†’ \DC01\CompanyData Drive Map GPO S Drive on Client

Users only see folders allowed by NTFS permissions.


🏠 7. Home Folders (H:)

Configured path:

\DC01\HomeFolders\%username%

❌ Issue Encountered

β€œYou do not have create access on the server”

βœ” Fix

Shared the HomeFolders directory β†’ Assigned correct share permissions β†’ AD successfully created home folders.


πŸ–¨οΈ 8. Print Server & Printer Deployment


πŸ› οΈ 9. Help Desk Simulation Tasks

Practiced real-world IT support tasks:


πŸ§ͺ 10. Testing

Test Result
GPOs applying βœ”
Wallpaper working βœ”
USB blocked βœ”
S: drive mapping βœ”
H: drive mapping βœ”
Printer deployed βœ”
Department folder access βœ”
Domain login βœ”

🧰 Tools Used


🏁 Conclusion

This project replicates an enterprise Windows domain and demonstrates:

This matches the skills needed for:


βœ” End of README