External Enumeration
External enumeration involves gathering information about Windows systems from outside the network. Techniques like SMB probing, Nmap scanning, and DNS zone transfers help identify active hosts, exposed services, and potential vulnerabilities before gaining internal access.
Network Discovery
Identify live hosts and gather basic network information to map out the target environment.
Nmap
Enumerating hosts using ping scan.
nmap -sn <TARGET_SUBNET>Zone Transfer
Zone transfers can reveal detailed DNS information, including records for hosts within the domain.
dig axfr <domain_name>@<name_server>Smb
Enumerating smb hosts:
nxc smb <target_subnet>
Service and Port Scanning
Enumerate open ports and running services to identify potential entry points.
Nmap
Scanning specific hosts:
-Pndon’t do ping scan-p-scan the 65535 ports instead of the defaultnmap1000 top ports-sCrun default script for reconnaissance-sVenumerate the version-oNwrite results in normal format
RPC
Checking for Null Sessions:
Active Directory Reconnaissance
Gather detailed information about Active Directory environments, including users, groups, and policies.
Find DCs

Enum4linux
RPC
Connect anonymously
Enumerate users:
SMB
Enumerate valid users:
Users Enumeration
NXC
Kerbrute
References
Last updated