Windows
Automate Enumeration Tools
Seatbelt - https://github.com/GhostPack/Seatbelt
SharpUp - https://github.com/GhostPack/SharpUp
Nishang - https://github.com/samratashok/nishang.git
PowerUp - https://github.com/PowerShellMafia/PowerSploit/tree/master/Privesc
WinPEAS - https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite/tree/master/winPEAS
Sherlock - https://github.com/rasta-mouse/Sherlock
Watson - https://github.com/rasta-mouse/WatsonService Enumeration
# WMIC
C:\> wmic service get name,displayname,pathname,startmode |findstr /i "auto"
C:\> wmic product get name, version, vendor
# WMI
PS C:\> Get-WmiObject win32_service | Select-Object Name, State, PathName | Where-Object {$_.State -like 'Running'}
# SC
C:\> sc queryex type= service | findstr "Service_Name"
# Running Service
C:\> tasklist /svc
# Schedule Task Enumeration
C:\> schtasks /query /fo LIST /vPowerShell
Discover .Net Framework Version
Password Hunting
Add User Script
Find File Location
System Information
Permission Folder or File
Driver Enumeration
Unattended Windows Install
Saved Windows Credentials
IIS Configuration
Last updated