In this walk through, we will be going through the OWASP Juice Shop room from Tryhackme. This room uses the Juice Shop vulnerable web application to teach you how to identify and exploit common web application vulnerabilities. So, let’s get started without any delay.
Table of Contents
Task 1 – Open for business!
Question 1 – Deploy the VM attached to this task to get started! You can access this machine by using your browser-based machine, or if you’re connected through OpenVPN.
Done
Question 2 – Once the machine has loaded, access it by copying and pasting its IP into your browser; if you’re using the browser-based machine, paste the machines IP into a browser on that machine.
Done
Task 2 – Let’s go on an adventure!
Before we get into the actual hacking part, it’s good to have a look around. In Burp, set the Intercept mode to off and then browse around the site. This allows Burp to log different requests from the server that may be helpful later.
This is called walking through the application, which is also a form of reconnaissance!
Question 1 – What’s the Administrator’s email address?
[email protected]
Question 2 – What parameter is used for searching?
q
Question 3 – What show does Jim reference in his review?
Star Trek
Task 3 – Inject the juice
- SQL Injection – SQL Injection is when an attacker enters a malicious or malformed query to either retrieve or tamper data from a database. And in some cases, log into accounts.
- Command Injection – Command Injection is when web applications take input or user-controlled data and run them as system commands. An attacker may tamper with this data to execute their own system commands. This can be seen in applications that perform misconfigured ping tests.
- Email Injection – Email injection is a security vulnerability that allows malicious users to send email messages without prior authorization by the email server. These occur when the attacker adds extra data to fields, which are not interpreted by the server correctly.
Question 1 – Log into the administrator account!
Payload: ' or 1=1--
Why does this work?
- The character ‘ will close the brackets in the SQL query
- ‘OR‘ in a SQL statement will return true if either side of it is true. As 1=1 is always true, the whole statement is true. Thus it will tell the server that the email is valid, and log us into user id 0, which happens to be the administrator account.
- The — character is used in SQL to comment out data, any restrictions on the login will no longer work as they are interpreted as a comment. This is like the # and // comment in python and javascript respectively.
32a5e0f21372bcc1000a6088b93b458e41f0e02a
Question 2 – Log into the Bender account!
Target email: [email protected]
Payload - [email protected]' --
Well, as the email address is valid (which will return true), we do not need to force it to be true. Thus we are able to use ‘– to bypass the login system. Note the 1=1 can be used when the email or username is not known or invalid.
fb364762a3c102b2db932069c0e6b78e738d4066
Task 4 – Who broke my lock?!
In this task, we will look at exploiting authentication through different flaws. When talking about flaws within authentication, we include mechanisms that are vulnerable to manipulation. These mechanisms, listed below, are what we will be exploiting.
- Weak passwords in high privileged accounts.
- Forgotten password pages
Question 1 – Bruteforce the Administrator account’s password!
Target account: [email protected]
Go to Positions and then select the Clear § button. In the password field place two § inside the quotes. To clarify, the § § is not two separate inputs but rather Burp’s implementation of quotations e.g. “”. The request should look like the image below.
For the payload, we will be using the best1050.txt from Seclists. (Which can be installed via: apt-get install seclists)
You can load the list from: /usr/share/wordlists/SecLists/Passwords/Common-Credentials/best1050.txt
Once the file is loaded into Burp, start the attack. You will want to filter for the request by status.
A failed request will receive a 401 Unauthorized whereas a successful request will return a 200 OK.
Once completed, login to the account with the password.
c2110d06dc6f81c67cd8099ff0ba601241f1ac0e
Question 2 – Reset Jim’s password!
Target Account: [email protected]
Security Question: Your eldest siblings middle name?
From Task 2, we know that Jim has an interest in Star Trek.
094fbc9b48e525150ba97d05b942bbf114987257
Task 5 – AH! Don’t look!
A web application should store and transmit sensitive data safely and securely. But in some cases, the developer may not correctly protect their sensitive data, making it vulnerable.
Most of the time, data protection is not applied consistently across the web application making certain pages accessible to the public. Other times information is leaked to the public without the knowledge of the developer, making the web application vulnerable to an attack.
Question 1 – We will download the acquisitions.md and save it. It looks like there are other files of interest here as well.
After downloading it, navigate to the home page to receive the flag!
edf9281222395a1c5fee9b89e32175f1ccf50c5b
Question 2 – Log into MC SafeSearch’s account!
Youtube Video Link: https://www.youtube.com/watch?v=v59CX2DiX0Y
Target Account: [email protected]
Password: Mr. N00dles
He notes that his password is “Mr. Noodles” but he has replaced some “vowels into zeros”, meaning that he just replaced the o’s into 0’s.
We now know the password to the [email protected] account is “Mr. N00dles“
66bdcffad9e698fd534003fbb3cc7e2b7b55d7f0
Question 3 – Download the Backup file!
We will now go back to the http://10.10.82.154/ftp/ folder and try to download package.json.bak. But it seems we are met with a 403 which says that only .md and .pdf files can be downloaded.
To get around this, we will use a character bypass called “Poison Null Byte”. A Poison Null Byte looks like this: %00.
Note: as we can download it using the url, we will need to encode this into a url encoded format.
The Poison Null Byte will now look like this: %2500. Adding this and then a .md to the end will bypass the 403 error!
Why does this work?
A Poison Null Byte is actually a NULL terminator. By placing a NULL character in the string at a certain byte, the string will tell the server to terminate at that point, nulling the rest of the string.
66bdcffad9e698fd534003fbb3cc7e2b7b55d7f0
Task 6 – Who’s flying this thing?
Question 1 – Access the administration page!
- Open up Develper Tools -> Debugger
- Find the path:administrator in main-es2015.js file
Go to Login and login with the earlier grabbed creds:
- Username: [email protected]
- Password: admin123
Type on path on the URL: http://10.10.231.178/#/administration
946a799363226a24822008503f5d1324536629a0
Question 2 – View another user’s shopping basket!
Login to the Admin account and click on ‘Your Basket’. Make sure Burp is running so you can capture the request!
- Change the parameter /rest/basket/1 to /rest/basket/2
41b997a36cc33fbe4f0ba018474e19ae5ce52121
Question 3 – Remove all 5-star reviews!
Navigate to the http://10.10.231.178/#/administration page again and click the bin icon next to the review with 5 stars!
50c97bcce0b895e446d61c83a21df371ac2266ef
Task 7 – Where did that come from?
XSS or Cross-site scripting is a vulnerability that allows attackers to run javascript in web applications. These are one of the most found bugs in web applications. Their complexity ranges from easy to extremely hard, as each web application parses the queries in a different way.
There are three major types of XSS attacks:
DOM (Special) – DOM XSS (Document Object Model-based Cross-site Scripting) uses the HTML environment to execute malicious javascript. This type of attack commonly uses the HTML tag.
Persistent (Server-side) – Persistent XSS is javascript that is run when the server loads the page containing it. These can occur when the server does not sanitise the user data when it is uploaded to a page. These are commonly found on blog posts.
Reflected (Client-side) – Reflected XSS is javascript that is run on the client-side end of the web application. These are most commonly found when the server doesn’t sanitise search data.
Question 1 – Perform a DOM XSS!
Payload: <iframe src="javascript:alert(`xss`)">
Note that we are using iframe which is a common HTML element found in many web applications, there are others which also produce the same result.
This type of XSS is also called XFS (Cross-Frame Scripting), is one of the most common forms of detecting XSS within web applications.
Websites that allow the user to modify the iframe or other DOM elements will most likely be vulnerable to XSS.
Why does this work?
It is common practice that the search bar will send a request to the server in which it will then send back the related information, but this is where the flaw lies. Without correct input sanitation, we are able to perform an XSS attack against the search bar.
9aaf4bbea5c30d00a1f5bbcfce4db6d4b0efe0bf
Question 2 – Perform a persistent XSS!
It should say the last IP Address is 0.0.0.0 or 10.x.x.x
As it logs the ‘last’ login IP we will now logout so that it logs the ‘new’ IP.
Make sure that Burp intercept is on, so it will catch the logout request.
We will then head over to the Headers tab where we will add a new header:
Payload: True-Client-IP:<iframe src="javascript:alert(`xss`)">
Then forward the request to the server!
When signing back into the admin account and navigating to the Last Login IP page again, we will see the XSS alert!
Why do we have to send this Header?
The True-Client-IP header is similar to the X-Forwarded-For header, both tell the server or proxy what the IP of the client is. Due to there being no sanitation in the header we are able to perform an XSS attack.
149aa8ce13d7a4a8a931472308e269c94dc5f156
Question 3 – Perform a reflected XSS!
First, we are going to need to be on the right page to perform the reflected XSS!
Login into the admin account and navigate to the ‘Order History’ page.
From there you will see a “Truck” icon, clicking on that will bring you to the track result page. You will also see that there is an id paired with the order.
Payload: <iframe src="javascript:alert(`xss`)">
Why does this work?
The server will have a lookup table or database (depending on the type of server) for each tracking ID. As the ‘id’ parameter is not sanitised before it is sent to the server, we are able to perform an XSS attack.
23cefee1527bde039295b2616eeb29e1edc660a0
Task 8 – Exploration!
Question 1 – Access the /#/score-board/ page
7efd3174f9dd5baa03a7882027f2824d2f72d86e
Also Read: Tryhackme – Overpass
So that was “OWASP Juice Shop” for you. In this room, we have covered the OWASP Top 10 web application vulnerabilities. From Bruteforcing to SQL Injection and XSS we took the challenge to solve all of these. To be honest, OWASP Juice Shop is a very detailed and fun vulnerable VM to tinker with and this room scratches only the surface of it. That means, the rest is upon you to uncover and excel in the web application exploitation techniques and attacks. On that note, i will take your leave and will meet you in next one. Till then, “Keep Hacking”.