Windows Enumeration
Manual and automated scripts for windows enumeration
WIN PAESS
Automatic priv esc profiling scripts
Identity
whoami
whoami /priv
whoami /groups
whoami /allSystem
hostname
set
echo %COMPUTERNAME%
echo %USERNAME%
echo %USERDOMAIN%
echo %USERDNSDOMAIN%
# wmic
wmic nicconfig get description,IPAddress,MACAddress
wmic product get name, version, vendor
wmic qfe get Caption, Description, HotFixID, InstalledOnUsers and Groups
Net
net user
net user administrator
net localgroup
net localgroup administratorsShares, Account Policy, Autostart
net share
net accounts
net startPowerShell
# powershell
Get-LocalUser
Get-LocalGroup
Get-LocalGroupMember AdministratorsNetwork
arp -a
ifconfig /all
route printTasks
tasklist
tasklist /SVCDisk and Registry
tree /a /f
search password
REG QUERY HKLM /F "password" /t REG_SZ /S /KLast updated
Was this helpful?