Welcome. If you're reading this, you found your way to the right corner of the internet. This is my blog — a place where I'll document everything I learn in the cyber world: hacking experiments, CTF writeups, CLI tools, and whatever I'm building in the terminal.
Why this blog?
The hacker mindset is built on one principle: understand before you use.
Writing forces me to understand. If I can't explain it clearly, I don't understand it yet.
So this blog is as much for me as it is for anyone reading.
"The quieter you become, the more you can hear." — Keep your terminal open.
What to expect
- 🔐 Pentest writeups & CTF walkthroughs
- 🛠️ CLI tool builds and devlogs
- 📡 Network analysis and recon techniques
- ⚙️ jackalSploit development updates
A quick demo
Here's the kind of content you'll see — a typical recon session:
And the kind of code I'll share along the way:
# Quick port scanner — Python
import socket
def scan(host, ports):
for port in ports:
s = socket.socket()
s.settimeout(0.5)
result = s.connect_ex((host, port))
if result == 0:
print(f"[+] {host}:{port} — OPEN")
s.close()
scan("10.10.10.1", range(1, 1025))
That's it for the first post. More is coming — follow the GitHub repo or check back here. The terminal is always open.