Manual Enumeration

System, user, network, password, and AV

System Enumeration

List all system information:

systeminfo

Grep the essence from systeminfo:

systeminfo | findstr /b /c:"OS Name" /c:"OS Versoin" /c:"System Type"

Enumerate patches:

wmic qfe

wmic qfe with better format:

wmic qfe Caption,Description,HotFixID,InstalledOn

Enumerate disks:

wmic logicaldisk

wmic logicaldisk with better format:

wmic logicaldisk get caption,description,providername

List only the drive names (such as "C:" and "D:"):

wmic logicaldisk get caption

User 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?