Hello everyone, in this blog post Iโll share how I solved the Meow challenge on Hack The Box.
Okay, letโs startโฆ
Note: Iโm not an expert. Iโm writing this blog just to document my learning journey. ๐
๐ Step 1: Scan the Target with Nmap
I started by scanning the target IP using nmap
.
nmap -A 10.129.1.17
Output (summary):
PORT STATE SERVICE VERSION
23/tcp open telnet Linux telnetd
So port 23 (telnet) is open, and itโs running a Linux telnetd
service.
๐ก Step 2: Connect via Telnet
At first, when I typed the telnet
command, I got an error:
command not found
So I installed Telnet:
apt install telnet
Then I connected:
telnet 10.129.1.17
๐ Step 3: Try Default Credentials
I tried some default usernames and passwords:
admin
administrator
- and finally...
root
โ
Bingo! root
worked without a password!
๐ Step 4: Capture the Flag
Once I logged in as root, I looked around and found the flag.
cat flag.txt
Hahhh ๐ finally, I captured the flagโฆ
๐ฏ Final Thoughts
This was a fun and simple box โ perfect for beginners like me who are just starting with Hack The Box. The key takeaway: check open services, try default logins, and donโt overthink simple challenges.
Happy hacking! ๐
Top comments (0)