M4cCrypt0
cat ~/snippets/*.md

command snippets

// reusable, tested command templates — recon, web exploitation, privesc, pivoting, forensics. Copy, swap the <placeholders>, go.

gobuster Directory Brute-Force

Threaded directory/file discovery with gobuster, with common extensions and output to a file. The Go alternative to ffuf/feroxbuster.

bash
gobuster dir -u http://<target-ip> \
  -w /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt \
  -t 40 -x php,txt,html -o gobuster.txt

used in: Cheatsheet: tool overview