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:
whoamiEnumerate the current user's privilege:
whoami /privEnumerate the current user's groups:
whoami /groupsEnumerate all users:
net userEnumerate a specific user:
net user <username>Verify the administrator group:
net localgroup administratorsNetwork Enumeration
Enumerate network information:
ipconfigipconfig with more details:
ipconfig /allEnumerate the ARP table:
arp -aEnumerate the routing table:
route printEnumerate open ports:
netstat -anoPassword Hunting
Search for the keyword "password" in files with certain file extensions:
findstr /si password *.txt *.ini *.configSearch for password in registry:
reg query HKLM /f password /t REG_SZ /sAV Enumeration
Search the phase "password" in text files (in the current directory):
findstr /si password *.txtEnumerate Windows Defender:
sc query windefendEnumerate all running services:
sc queryex type= serviceEnumerate firewall (older machines):
netsh firewall show stateEnumerate firewall (newer machines):
netsh advfirewall firewall dumpEnumerate firewall configuration:
netsh firewall show configLast updated
Was this helpful?