Hello, World
Table of Contents
$ ssh visitor@n36l3c7.github.io
Welcome. Last login: never.
This is the blog’s first post. I’ll be writing about hacking and cybersecurity: CTF writeups, vulnerability analyses, reverse engineering notes and the tools I use.
What to expect#
- CTF writeups — commented solutions to challenges (web, pwn, crypto, rev)
- Vulnerability analyses — interesting CVEs explained step by step
- Techniques and tools — from recon to exploitation, with practical examples
Does code look good?#
The theme highlights syntax automatically. A taste:
import socket
def banner_grab(host: str, port: int = 22) -> str:
"""Read the banner of a TCP service."""
with socket.create_connection((host, port), timeout=3) as s:
return s.recv(1024).decode(errors="replace")
print(banner_grab("scanme.nmap.org"))
There’s also a copy button in the top-right corner of every code block — give it a try.
Comments#
Below every article you can comment with your GitHub account, react and reply to others. See you soon! 🏴☠️