Manual Enumeration
System, user, network, password, and AV
System Enumeration
List all system information:
systeminfoGrep the essence from systeminfo:
systeminfo | findstr /b /c:"OS Name" /c:"OS Versoin" /c:"System Type"Enumerate patches:
wmic qfewmic qfe with better format:
wmic qfe Caption,Description,HotFixID,InstalledOnEnumerate disks:
wmic logicaldiskwmic logicaldisk with better format:
wmic logicaldisk get caption,description,providernameList only the drive names (such as "C:" and "D:"):
wmic logicaldisk get captionUser Enumeration
Enumerate the current user:
Enumerate the current user's privilege:
Enumerate the current user's groups:
Enumerate all users:
Enumerate a specific user:
Verify the administrator group:
Network Enumeration
Enumerate network information:
ipconfig with more details:
Enumerate the ARP table:
Enumerate the routing table:
Enumerate open ports:
Password Hunting
Search for the keyword "password" in files with certain file extensions:
Search for password in registry:
AV Enumeration
Search the phase "password" in text files (in the current directory):
Enumerate Windows Defender:
Enumerate all running services:
Enumerate firewall (older machines):
Enumerate firewall (newer machines):
Enumerate firewall configuration:
Last updated
Was this helpful?