https://github.com/we45/vulnerable_xss
https://github.com/we45/vulnerable_xss
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/we45/vulnerable_xss
- Owner: we45
- Created: 2019-08-18T05:53:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-25T01:59:26.000Z (about 4 years ago)
- Last Synced: 2023-02-28T14:36:26.926Z (over 3 years ago)
- Language: JavaScript
- Size: 7.57 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vulnerable XSS Application
> In this application contains 3 types XSS vulnerabilities examples
* DOM Based XSS
* Stored XSS
* Reflected XSS
## Installation
```commandline
docker run -d -p 5060:5060 we45/vulnerable_xss:latest
```
Or
```commandline
git clone https://github.com/we45/vulnerable_xss.git
```
* Create and activate Virtualenv
```commandline
virtualenv -p python3 venv
```
```commandline
source venv/bin/activate
```
* cd into the `vulnerable_xss/app` directory
```commandline
cd vulnerable_xss/app
```
* Install python requirements
```commandline
pip install -r requirements.txt
```
* Now run the application
```commandline
python3 app.py
```
* Open Browser and run `http://127.0.0.1:5060`, The Vulnerable XSS application ready now
### Follow the documentation to exploit the XSS vulnerabilities
[DOM Based XSS](DOMBASEDXSS.md)
[Stored XSS](STOREDXSS.md)
[Reflected XSS](REFLECTEDXSS.md)