๐Ÿ”Initial Enumeration

Reference:

OS Version & Architecture

Code

systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"

Example

C:\Users\student>systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"
OS Name:                   Microsoft Windows 10 Pro
OS Version:                10.0.16299 N/A Build 16299
System Type:               X86-based PC

Running Processes & Services

Code

tasklist /SVC
  • /SVC flag will return processes that are mapped to a specific Windows service.

Network Information

ipconfig

Code

Routing Table

Code

Active Network Connections

Code

Firewall Status & Rules

Code

Scheduled Tasks

Code

  • The /query argument displays tasks and /FO LIST sets the output format to a simple list. We can also use /V to request verbose output.

Installed Applications & Patch Levels

Code

System-wide Updates

Code

AccessChk

Code

  • -u to suppress errors, -w to search for write access permissions, and -s to perform a recursive search.

๐Ÿ”Initial Enumeration (External)chevron-right๐Ÿ–ฅ๏ธInitial Enmeration (Domain)chevron-right

Last updated