Enumeration
Finding Files
# Search for strings
cd C:\
dir /s *string*
## From PowerShell
cmd /c dir /s *string*
# Search for filetype
dir /s *.txtListing all User files
cd C:\Users
get-childitem *\*\*Finding Content in Files
# From cmd.exe
findstr /s string * 2>nulCapture Packets
# Capture
# Convert to PCAP
DNS Records
Get-DNSServerZone
Get-DNSServerZoneResourceRecord -ZoneName <name>Last updated
Was this helpful?