githubEdit

Windows Enumeration

Command Line

  1. System

# Get Systeminfo
systeminfo
systeminfo | findstr /B /C:"Os Version"
systeminfo | findtr Domain

# Get hotfix
wmic qfe # quick fix engineering

# Get list of drives and filter
wmic logicaldisk get caption,discription,pridername
  1. User Enumeration

# print current user
whoami

#list privilege of current user
whoami /priv

# List user of the current group
whoami /groups

# print users on the computer and get details
net user
net user <username>

# list local groups
net localgroup
net localgroup administrator
  1. Network Enumeration

  1. Password Hunting

  1. AV Enumeration

WMI

  1. Antivirus Details

  1. Services

  1. Processor Architecture

  1. Logged On User

  1. Installed HotFix

  1. Get log files locations

  1. Get Command Line to start process

  1. Get BinPath for running services

  1. Routing table

  1. User Accounts

  1. Groups

  1. Shadow Copy Information

Automated Tools

Executables

  • winPEAS.exe

  • Sealbelt.exe

  • Watson.exe

  • SharpUp.exe

Powershell

  • Sharlock.ps1

  • PowerUp.ps1

  • jaws-enum.ps1

Other

  • Windows-exploit-suggester (local)

  • Exploit Suggester (metasploit)

Last updated