Internal Network & Active Directory · beginner · ~10 min
Identify the objects you enumerate and the high-value groups.
AD objects are users, groups, computers, and OUs, each with attributes. Enumeration finds high-value group membership (Domain/Enterprise Admins and 'almost-admin' groups) and risky account flags (SPNs, no pre-auth, password-never-expires) — the map for every later attack.
Almost every AD attack path starts from enumerating objects and their attributes: who's privileged, which accounts are misconfigured, and where credentials leak (e.g. the description field). It's reconnaissance that directly reveals escalation routes.
Object types. Users, groups (transitive nesting), computers, OUs. Crown groups. Domain/Enterprise Admins; almost-admin groups (Backup/Account Operators, DnsAdmins). Risky flags. SPN set, no Kerberos pre-auth, password-never-expires. Leaks. description fields, GPO files.
Active Directory stores everything as objects with attributes. Enumerating them is the first move once you can query the directory.
description (sometimes holds passwords!), servicePrincipalName, last logon, flags like "password never expires").Who is in the powerful groups, which accounts have risky flags (Kerberos pre-auth disabled, SPNs set, "password never expires"), and where credentials might be exposed (the description field, GPO files). This map drives every later attack. Tools query AD over LDAP (next lesson).
AD is a database of users/groups/computers/OUs; enumerating membership and attributes exposes privileged accounts, misconfigured flags, and leaked credentials — the foundation map for Kerberoasting, spraying, and path-finding.