HackTheBox - Snapped Writeup (opens in new tab)
Platform: HackTheBox Difficulty: Medium OS: Linux Reconnaissance We begin with a standard nmap scan to identify open ports and running services. nmap -sC -sV -A MACHINE-IP -oA output_file Open ports: Port Service 22 SSH (tcpwrapped) 80 nginx/1.24.0 — redirects to The scan reveals two services: SSH on port 22 and an nginx web server on port 80 that redirects to snapped.htb. We add the hostname to /etc/hosts and browse to port 80. The landing page offers no obvious attack surface — no login for...
Read the original article