V-web is collection of vulnerable web applications. In this collection I'm adding website with some infamous vulnerabilities like IDOR (Type of Broken Access Control vulnerability, which is currently rank top in the OWASP top 10 list).
- IDOR
- IDOR in url
- IDOR in API
- NoSQL Injection
- Insecure 2FA
- XSS (Cross Site Scripting)
As I made the project with this technologies, so you have to install this tech stacks before executing the server
- Node js
- Express js
- Mongo DB
- Mongoose
- HTML
- CSS
- Handlebars
- swagger
- UUID
- Clone the repository
git clone https://github.com/Pankaj0038/V-web
- Get into the directory
cd V-web
- Now get into the directory which you want to execute
#in case of IDOR in API cd IDOR2
- Then configure the directory with node package manager
npm init -y
- And now as I shared the package.json file so install the requirements
npm i express
- Lastly run the code
npm run dev #I have added the script in package.json file "dev": nodemon src/app.js , that is why it will work