Capture the flag (CTF)

Hack the Box (HTB) machines walkthrough series — Blocky

Security Ninja
July 22, 2019 by
Security Ninja

Today, we will be continuing with our exploration of Hack the Box (HTB) machines as seen in previous articles. This walkthrough is of an HTB machine named Blocky.

What should you learn next?

What should you learn next?

From SOC Analyst to Secure Coder to Security Manager — our team of experts has 12 free training plans to help you hit your goals. Get your free copy now.

HTB is an excellent platform that hosts machines belonging to multiple OSes. It also has some other challenges as well. Individuals have to solve the puzzle (simple enumeration plus pentest)  in order to log into the platform and download the VPN pack to connect to the machines hosted on the HTB platform.

Note: Only write-ups of retired HTB machines are allowed. The machine in this article, named Blocky, is retired.

The walkthrough

Let’s start with this machine.

1. Download the VPN pack for the individual user and use the guidelines to log into the HTB VPN.

2. The Blocky machine IP is 10.10.10.37.

3. We will adopt the same methodology of performing penetration testing as we have used previously. Let’s start with enumeration in order to learn as much about the machine as possible.

4. As usual, let’s start with the Nmap scan to gather more information about the services running on this machine. [CLICK IMAGES TO ENLARGE]

<<nmap -sC -sV -oA Blocky 10.10.10.37>>

5. As we can see, ports 21, 22 and 80 are opened.

6. Let’s start the enumeration with port 80.  We can see a normal webpage hosted on WordPress.

7. Let’s try to enumerate the directories with gobuster. We can see that we have a lot of WordPress directories hit. After enumerating, we found something interesting in the plugin directory.

<<gobuster -u http://10.10.10.37 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -t 20>>

8. We have a jar file. Let’s download it and analyze it.

9. We can just unzip the jar file to inflate the classes within. We can see that there is a Blockycore.class in it.

<<unzip BlockyCore.jar>>

10. Decompiling the class with JAD, we can see there are SQL users and passwords in cleartext.

<<jad BlockyCore.class>>

<<cat BlockCore.jad>>

11. We can browse the phpmyadmin and use these creds to enter the portal. We were able to successfully log in. So far, so good.

12. We can see that there is a user named “Notch.” We can try to edit the password as well, but let’s try to directly ssh in with the password discovered above.

13. SSH with user Notch and password discovered above results in a successful login.

<<ssh notch@10.10.10.37>>

14. We can easily capture the user.txt flag.

<<cat user.txt>>

15. Now let’s try to escalate privileges to root.

16. As you might have seen from previous articles, that first thing is to check current user access.

17. Running sudo -l reveals that this user has all the access.

<<sudo -l>>

<<sudo su>>

18. It can be easily escalated to root using sudo su.

<<cd /root>>

<<cat root.txt>>

 

We’re done!

What should you learn next?

What should you learn next?

From SOC Analyst to Secure Coder to Security Manager — our team of experts has 12 free training plans to help you hit your goals. Get your free copy now.

This was a very straightforward HTB box: Just enumerate and everything will fall in place. We will continue this series with more of this type of HTB box.

Security Ninja
Security Ninja