DEV Community

tamilvanan
tamilvanan

Posted on

๐Ÿฑ Meow | Hack The Box

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
Enter fullscreen mode Exit fullscreen mode

Output (summary):

PORT   STATE SERVICE VERSION
23/tcp open  telnet  Linux telnetd
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

So I installed Telnet:

apt install telnet
Enter fullscreen mode Exit fullscreen mode

Then I connected:

telnet 10.129.1.17
Enter fullscreen mode Exit fullscreen mode

๐Ÿ”‘ 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
Enter fullscreen mode Exit fullscreen mode

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)