Bounty Hacker

11/11/2023

Had to edit the .ovpn file and add the line data-ciphers AES-256-CBC below  cipher AES-256-CBC to fix a connection issue with OpenVPN


Machine IP: 10.10.1.35

Scan machine for open ports with Nmap
nmap -sS 10.10.1.35

>Nmap scan report for 10.10.1.35
Host is up (0.17s latency). 
Not shown: 967 filtered tcp ports (no-response), 30 closed tcp ports (reset)
PORT   STATE SERVICE
21/tcp open  ftp
22/tcp open  ssh
80/tcp open  http

There’s a web server running on this machine. Let’s investigate

Use Gobuster to find hidden directories:

gobuster dir -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -u http://10.10.1.35/

No interesting directories to look at, so lets try to get into the FTP server using Hydra

Leave a Comment