reps4thor@localhost:~$ cat /dev/urandom | tr -dc 'a-f0-9' | fold -w32 | head -n1 | sha256sum | cut -d' ' -f1

Initial Commit: Bootstrapping the Lab

Stood up the new box, hardened SSH, and wired in the mesh. Here's what broke and how I fixed it. First order of business was disabling password auth and setting up key-based login only.

sudo sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config
sudo systemctl restart sshd
read log →

Packet Capture Deep Dive: Hunting Anomalies

Spent the evening sifting through pcap files looking for suspicious traffic patterns. Found some interesting DNS exfiltration attempts that were trying to tunnel data out through TXT records...

read log →

CTF Writeup: Binary Exploitation 101

This weekend's CTF had a classic buffer overflow challenge. The binary had no ASLR and no stack canaries. Let me walk you through the exploit development process from crash to shell...

read log →