Member-only story
Oopsie | HackTheBox
Source: https://www.hackthebox.eu/home/machines/profile/259
— — — — — — Table of Contents — — — — — —
— Introduction
— Scanning
— Enumeration
— Vulnerability Analysis
— Exploitation
— Privesc
— Summary | TL;DR
— Parting Thoughts
— — — — — — — — — — — — — — — — — — — —
Introduction
It is the second machine in the HTB-Starter series, and the difficulty rating is very easy. Oopsie hints towards a mistake. I am blogging while I am trying to solve so expect facing rabbit holes.
Scanning
Target IP: 10.10.10.28
Nmap Scan
nmap -sV -A -Pn $target
-sV : Probe open ports to determine service/version info
-A : Enable OS detection, version detection, script scanning, and traceroute
-Pn : Treat all hosts as online — skip host discovery
> ------------------------Nmap Results-----------------------------<…