Hack The Box (HTB) is an online platform allowing you to test your penetration testing skills. It contains several challenges that are constantly updated. Some of them are simulating real world scenarios and some of them lean more towards a CTF style of challenge.

Note. Only write-ups of retired HTB machines are allowed.

Screenshot-2020-05-19-at-22.23.48

Blocky is fairly simple overall, and was based on a real-world machine. It demonstrates the risks of bad password practices as well as exposing internal files on a public facing system.

We will use the following tools to pawn the box on a Kali Linux box:

  • nmap
  • nikto
  • gobuster
  • wpscan
  • jd-gui
  • hash-identifier

Let's get started.

I add blocky on the /etc/hosts file

nano /etc/hosts

with

10.10.10.37     blocky.htb
Screenshot-2020-05-20-at-21.05.19

Step 1 - Reconnaissance

The first step before exploiting a machine is to do a little bit of scanning and reconnaissance.

This is one of the most important parts as it will determine what you can try to exploit afterwards. It is always better to spend more time on this phase to get as much information as you can.

Port scanning

I will use Nmap (Network Mapper). Nmap is a free and open source utility for network discovery and security auditing. It uses raw IP packets to determine what hosts are available on the network, what services those hosts are offering, what operating systems they are running, what type of packet filters/firewalls are in use, and dozens of other characteristics.

There are many commands you can use with this tool to scan the network. If you want to learn more about it, you can have a look at the documentation here.

Screenshot-2020-05-20-at-20.24.38

I use the following command to perform an intensive scan:

nmap -A -v blocky.htb

-A: Enable OS detection, version detection, script scanning, and traceroute

-v: Increase verbosity level

blocky.htb: hostname for the Blocky box

If you find the results a little bit too overwhelming, you can do another command to get only the open ports.

nmap blocky.htb
Screenshot-2020-05-20-at-20.23.43

We can see that there are 3 open ports:

Port 21, File Transfer Protocol (FTP) control (command)

Port 22, Secure Shell (SSH), secure logins, file transfers (scp, sftp) and port forwarding

Port 80, most often used by Hypertext Transfer Protocol (HTTP)

Directory scanning

I use Gobuster. Gobuster is a directory scanner written in Go. More info on the tool here. Gobuster uses wordlists on Kali which are located in the /usr/share/wordlists directory. I'm using wordlists from dirb and dirbuster, but you can download more wordlists from SecLists here

Screenshot-2020-05-20-at-20.33.47

I use this command for the dirb common.txt wordlist

gobuster dir -u blocky.htb -w /usr/share/wordlists/dirb/common.txt
Screenshot-2020-05-20-at-20.34.40

We can see some there are WordPress directories (wp-admin, wp-content-wp-includes). There is also a couple of other interesting pages (/phpmyadmin and /plugins)

I use Nikto.

Nikto is an Open Source web server scanner which performs comprehensive tests against web servers for multiple items, checks for outdated versions of over 1250 servers, and version specific problems on over 270 servers. It also checks for server configuration items such as the presence of multiple index files, HTTP server options, and will attempt to identify installed web servers and software.

More info on the tool here

Screenshot-2020-05-20-at-20.29.51

I use this command to launch the scan

nikto -host blocky.htb
Screenshot-2020-05-20-at-20.30.37

I see a couple of directories that could be interesting (/wp-content/uploads/ and /wp-login.php)

Finally I use WPScan. WPScan is a black box WordPress vulnerability scanner that can be used to scan remote WordPress installations to find security issues

Screenshot-2020-05-20-at-20.27.12

I use this command to launch the scan

wpscan --url blocky.htb -e
Screenshot-2020-05-20-at-20.27.42
Screenshot-2020-05-20-at-20.28.05

We have one username, Notch

Step 2 - Visiting the web page

Let's visit the pages we found from the reconnaissance phase. Let's start by the main web page. It's a blog on Minecraft - BlockyCraft

Screenshot-2020-05-20-at-20.38.18
Screenshot-2020-05-20-at-20.39.29

I look at the wiki page. Nothing interesting

Screenshot-2020-05-20-at-21.19.40

I have a look at the /wp-content/uploads page. Nothing interesting

Screenshot-2020-05-20-at-20.31.50

I find the admin panel

Screenshot-2020-05-20-at-20.32.27

as well as the phpMyAdmin panel

Screenshot-2020-05-20-at-20.33.14

I navigate to the /plugins folder and find two jar files.

A JAR is a package file format typically used to aggregate many Java class files and associated metadata and resources into one file for distribution. JAR files are archive files that include a Java-specific manifest file. They are built on the ZIP format and typically have a .jar file extension

I download both zip files on my Kali box

Screenshot-2020-05-20-at-20.35.15

I use JD-Gui to be decompile the java files. JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. More info on the tool here

I launch the tool with

jd-gui

And then select the JAVA class I want to read - BlockyCore.class

Screenshot-2020-05-20-at-21.04.55

I can see a username and a password

Screenshot-2020-05-20-at-20.36.34

I navigate back to phpMyAdmin and enter the credentials I just found. I have access to the database

Screenshot-2020-05-20-at-20.37.17

I have a look at the table wp_users within the wordpress folder to see if I can get more information about the users of the blog

The SQL query

SELECT * FROM `wp_users`

which can be translated by select all the users from the table wp_users would only give us one result, Notch

Screenshot-2020-05-20-at-20.40.27

I use hash-identifier to identify the possible hash. Hash-identifier is a software to identify the different types of hashes used to encrypt data and especially passwords. You can find more information here.

I launch hash-identifier with the following command:

hash-identifier

and copy/paste the hashed password I got earlier:

Screenshot-2020-05-20-at-20.41.04

We see the hash is most likely to be an MD5 (Wordpress) hash

Step 3 - Using the port 22

I'm back on my terminal and connect using SSH

The SSH protocol (also referred to as Secure Shell) is a method for secure remote login from one computer to another. It provides several alternative options for strong authentication, and it protects the communications security and integrity with strong encryption. It is a secure alternative to the non-protected login protocols (such as telnet, rlogin) and insecure file transfer methods (such as FTP).

More info here on the SSH Protocol

I use the following command

ssh notch@10.10.10.37

and I enter the password I found on the BlockyCore.class file earlier

Screenshot-2020-05-20-at-20.41.56

Step 4 - Looking for the user.txt flag

I'm now connected as Notch. I list all the folders/files

Screenshot-2020-05-20-at-20.43.06

I find the user.txt file!

To read the content of the file I use the command

cat user.txt

Now that we have the user flag, let's find the root flag!

Step 5 - Performing Privilege Escalation

I check the current access user with sudo.

sudo is a program for Unix-like computer operating systems that allows users to run programs with the security privileges of another user, by default the superuser. It originally stood for "superuser do" as the older versions of sudo were designed to run commands only as the superuser

More info on sudo here

Screenshot-2020-05-20-at-21.56.47

I list the user's privileges with this command

sudo -l

I use the same password I found previously

Screenshot-2020-05-20-at-20.44.08

I can see that Notch has unlimited privileges and can run any command on the system. I check the id. The id command in Linux is used to find out user and group names and numeric ID’s of the current user or any other user in the server

Screenshot-2020-05-20-at-22.01.37

I escalate to root using this command

sudo su
Screenshot-2020-05-20-at-20.45.35

Step 6 - Looking for the root.txt flag

I am now a root user and can navigate to the root folder

Screenshot-2020-05-20-at-20.46.20

I find the root.txt file!

Screenshot-2020-05-20-at-20.48.59

To read the content of the file I use the command

cat root.txt

Congrats! You found both flags!


Please don’t hesitate to comment, ask questions or share with your friends :)

You can see more of my articles here

You can follow me on Twitter or on LinkedIn

And don't forget to #GetSecure, #BeSecure & #StaySecure!


Other Hack The Box articles

wallpaperflare.com_wallpaper-2