Bizness
July 9, 2025•1,390 words
Initial Reconnaissance: Nmap Scan
Our initial intel gathering begins with a nmap scan targeting the machine's IP address (10.10.11.252). This scan helps us identify open ports and services running on the system.
$ sudo nmap -sS -sV -sC 10.10.11.252 -oN nmap/first-scan
Scan Results:
The scan reveals the following open ports:
Port 22 (TCP): This is the standard port for SSH (Secure Shell) connections, which allows remote login with encryption.
Port 80 (TCP): This is the standard port for HTTP...
Read post