First, make sure python3 and pip are installed on your host machine. After installation, we go to the folder of the lab we want to practise "i.e /skf-labs/XSS/, /skf-labs/jwt-secret/ " and run the following commands:
1
$ pip3 install -r requirements.txt
Copied!
1
$ python3 <labname>
Copied!
Now that the app is running let's go hacking!
Reconnaissance
Step 1
The application shows no input field or anything else we can interact with. Let's inspect the source code.
Inspecting the source code of the application.
1
functionloadWelcomeMessage(){
2
setTimeout(function(){
3
endpoint = location.hash.slice(5);
4
var script = document.createElement("script");
5
if(endpoint){
6
script.src = endpoint +"/js/welcome.js";
7
}else{
8
script.src ="/js/welcome.js";
9
}
10
document.head.appendChild(script);
11
},2000);
12
}
Copied!
We notice the application imports javascript files into the application using this function.
1
endpoint = location.hash.slice(5);
Copied!
Declaring endpoint variable which takes the url, whatever is after the hash(#) and using slice to remove the first 4 characters after that. If the endpoint exists it will load the js file from there.
Exploitation
We can start building our malicious server and server the application with our malicious js file.
Save the snippet above to > evil_server.py and run the commands below to install some dependencies. Of course you can also run your app on whatever service you want it does not have to be python flask.
1
$ pip3 install flask
Copied!
Now we need to create our malicous js file, save the following snippet code into /static/js/welcome.js