I Built a Fraud Detector With Zero Frameworks — Just the Python Standard LibraryJul 29, 2026·7 min read
What a Login Request Looks Like Once You Stop Trusting the BrowserTwo weeks ago I watched a login cross the network in Wireshark — passively, from the outside, reading packets as they flew past. This week I stopped one mid-flight and rewrote it before it reached theJul 30, 2026·8 min read
Understanding Status Codes Like a Hacker"Page not found", “Sorry, that door’s locked.” “Try again.” “Welcome inside.”You’ve seen those messages before. Only, they’re not in words — they’re in HTTP status codes. For hackers, these codes are like the responses you get from a building when yo...Jul 12, 2025·3 min read
Directory Discovery with Gobuster: Legal Hacking That Feels Like Trespassing🔎 What Is Gobuster? Gobuster is a tool that helps you **find hidden folders and files** on a web server — things like `/admin/`, `/backup/`, `/test/`, or even `.git/`. These paths may not show up on the website itself, but they still exist. And some...Jul 10, 2025·3 min read
Web Directories: What Websites Are Made OfIntroLong ago I thought websites were just what you see on the screen. A homepage, some links, maybe a login page. But then I learned that websites are like buildings — with hallways, storage rooms, locked cabinets, and sometimes forgotten closets. Y...Jul 9, 2025·2 min read
HTTP vs HTTPS (for Hackers): The Locks, the Leaks, and the LessonsOne of the first things you learn in cybersecurity is to read URLs like a paranoid detective. And right up front, you see it: http:// or https://. Seems simple - one has an “S” and the other doesn’t. But as I’ve been learning, that “S” is doing a lot...Jul 8, 2025·3 min read
Nmap 101: Scanning My First TargetThis one felt different. Compared to passive tools like whois or theHarvester, using nmap was the first time I felt like I was actually touching something. Before now, my reconnaissance journey has been mostly observational—asking questions, pulling ...Jul 7, 2025·2 min read
The Domain Whisperer: My Introduction to `nslookup`The first time I used nslookup was when I was taking one of Cisco's networking courses. There wasn't a loud introduction to the tool, just "This is a DNS server, this is how it works, now try this command using nslookup." I didn't even know it was a ...Jul 3, 2025·2 min read