🕺
CheatSheets
  • Introduction
  • Getting Started With Hacking
  • VMs on Mac
  • Windows
    • Enumeration
    • Local Privilege Escalation
    • UAC Bypasses
    • Persistance
    • Networking
  • Active Directory
    • Offensive Powershell
    • Enumeration
      • BloodHound
    • Lateral Movement
    • Escalation
      • ACL Abuse
      • Kerberoasting
      • Un-Constrained Delegation
      • JEA
    • Persistance
    • Mimikatz
    • Alternate Cred Dumps
    • MSSQL
    • Defences and Bypasses
    • Setting Up a Lab
  • Red Teaming
    • Phishing Payloads
    • Cobalt Strike
    • Metasploit
    • Sliver
  • Linux
    • Networking
    • Enumeration
    • Local Privilege Escalation
    • Persistance
    • MySQL
  • Mainframes
    • HP Nonstop
    • IBM z/OS
  • Cloud
    • AWS
    • GCP
    • Azure
  • Web App
    • Tomcat
    • SQLMap
    • PHP
  • Mobile
    • Android
    • iOS
  • Exploit-Dev
    • Linux
      • Basic Stack Overflows
      • Bypassing NX (DEP)
      • Bypassing ASLR
    • Shellcode
    • Windows
  • WiFi
    • Alfa AWUS036ACH Setup
    • Aircrack-ng
Powered by GitBook
On this page
  • Finding Files
  • Listing all User files
  • Finding Content in Files
  • Capture Packets
  • DNS Records

Was this helpful?

  1. Windows

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>
PreviousVMs on MacNextLocal Privilege Escalation

Last updated 5 years ago

Was this helpful?