🔍 Reconnaissance & Connectivity

1. Connectivity

Before starting the machine, ensure the HTB VPN connection is active.


2. Target Identification

Obtained the target IP from the HTB Dashboard.

  • Target IP: 10.129.101.220

  • Ping Test: Checked connectivity to the target.


3. Port Scanning

I used rustscan and nmap to identify open ports.

  • Rustscan: Successfully identified Port 3306 as open.
rustscan -a 10.129.101.220

  • Nmap Service Scan:
nmap -sC -sV -p 3306 10.129.101.220

Findings:

PortServiceVersion
3306/tcpMariaDB10.3.27-MariaDB-0+deb10u1


4. Initial Findings

The only open port is 3306 (MySQL/MariaDB), which is atypical for a direct external exposure unless the server is misconfigured. Initial thought: Attempt a connection as root with no password.


Next Step