M4cCrypt0
back to overview

Cheatsheet: tool overview

Quick reference per tool. For in-depth notes on a specific tool (e.g. Nmap) create a separate note of its own — this is deliberately short. Looking for portable hardware gadgets like Pwnagotchi, Flipper Zero or WiFi Pineapple? See the hardware hacking gadgets overview.

Nmap — scanning

bash
nmap -sn 10.10.10.0/24        # host discovery
nmap -sV -sC target           # services + safe scripts
nmap -p- -T4 target           # all ports, faster

Burp Suite — web testing

Hashcat — password cracking

bash
# Mode 0 = MD5, 1000 = NTLM, 1800 = sha512crypt — check -h for the full list
hashcat -m 1000 -a 0 hashes.txt rockyou.txt

# Brute-force with a mask (8 chars, lowercase + digits)
hashcat -m 1000 -a 3 hashes.txt ?l?l?l?l?l?l?d?d

Gobuster / ffuf — directory & subdomain fuzzing

bash
gobuster dir -u https://target -w wordlist.txt
ffuf -u https://FUZZ.target -w subdomains.txt -mc 200

Wireshark — packet analysis