here’s a new episode related to the hackthebox machine Blocky. As always I’m figuring to avoid the use of metasploit in order to better understand the hacking process.
some open ports. I make a full scan with max retries = 1 in order to make a quick scan of the whole machine. On port 80 there’s a website made by wordpress. so I always start Nikto for the port 80 and in this case I add a scan with WPscan.
let’s keep them but we’ll try to exploit other vector before.
FTP: the ftp version is vulnerable but the exploit doesn’t work.
so we decided to move to a web application brute forcing with dirbuster
the plugins directory contains two files. Download them!
jar files can be extracted (https://docs.oracle.com/javase/tutorial/deployment/jar/unpack.html)
this is the content of Blockycore.class there’s a root and something that seems to be a password… try it on ssh
the password doesn’t work with root user. But on wpscan we discovered the user notch. and it works!
we have the password so we try to check if the user is in the sudoers group
let’s start nmapping the machine. There are 2 ports opened: 22 and 80. On the port 80 there’s a simple “hello word” page but checking the page source there’s something interesting:
port 80 – view-source
Adding the nibbleblog directory to our url let us reach a nibbles blog homepage.
Nibble homepage
The hyperlinks don’t open other pages so what we can do is try to enumerate more web pages with gobuster.
As soon as we started the enumeration we discovered many interesting links. The admin page have a login so we look for some sql injection using sqlmap. While configuring burpsuite to grab the sql request we tried to use some basic password against the login (admin / password, admin / pass, nibbles / nibbles) and we discovered that the login was admin / nibbles. We launched sqlmap the same in order to analize the sql injection.
The nibbleblog dashboard. Is possible to see some login failed attempt
This is the request we’ll use with sqlmap
save this to be used with Sqlmap. Click the right mouse button and select “copy to file”
# sqlmap -r sql.req --batch --risk 3 --level 5
the problem is that we have some kind of protection (WAF) that blocks our requests.
something blocks our requests
After few minutes we are again able to access the website but we can’t use automatic tools that can block us. Entering the blog we discovered the software version
googling this version we discovered a vulnerability with the “my image” plugin. From packetstormsecurity.com:
The first upload, from the “my image” plugin was a simple image. After the upload the image appears on the home page and by inspecting it we discovered where the uploaded images are located. so I try to upload a php shell. We found a directory listing where there’s a image.php file…..click on it.. here’s the shell!!!
type some command to obtain a better shell (thank you Ippsec….subscribe his channel for very cool HTB and others high quality writeups!!)
in the home directory is possible to found the user hash
unzip the personal.zip archive and you’ll find the code that works as a protection from bruteforce auth. Nothing particularly interesting for now. Get LinEnum from attacking machine and launch it.
surprise!
modify the monitor.sh with this command
echo "su" > monitor.sh
and launch the following command:
sudo /home/nibbler/personal/stuff/monitor.sh
even if the program returns an error, we are root!
after this upload the exploit.exe file to the machine. Use the FTP server in binary mode for the transfer. after this, simply run the command from the meterpreter shell and…
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok