Welcome to my Blog —
First Post

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

A quick demo

Here's the kind of content you'll see — a typical recon session:

bash — AshesGhost@kali: ~
┌──(AshesGhost㉿kali)-[~]
└─$ nmap -sV -sC -oN scan.txt 10.10.10.X
Starting Nmap 7.94 ( https://nmap.org )
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.4p1
80/tcp open http Apache httpd 2.4.51
└─$ gobuster dir -u http://10.10.10.X -w /usr/share/wordlists/common.txt
/admin (Status: 301)
/uploads (Status: 200)
/private (Status: 403)

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.

← all posts github.com/AshesGhost