Enumeration

Finding Files

# Search for strings
cd C:\
dir /s *string*

## From PowerShell
cmd /c dir /s *string*

# Search for filetype
dir /s *.txt

Listing all User files

cd C:\Users

get-childitem *\*\*

Finding Content in Files

# From cmd.exe
findstr /s string * 2>nul

Capture Packets

# Capture

# Convert to PCAP

DNS Records

Get-DNSServerZone
Get-DNSServerZoneResourceRecord -ZoneName <name>

Last updated