Skip to content

slandail/dvpwa

 
 

Repository files navigation

DVPWA -- Damn Vulnerable Python Web Application

Description

DVPWA was inspired by famous dvwa project and bobby-tables xkcd comics. The purpose of this project is to implement real-world like application in Python with as many vulnerabilities as possible while having a good design and intentions.

This project was used as demonstration of vulnerabilities during my Web vulnerabilities presentation at EVO Summer Python Lab'17.

Running

Docker-compose

DVPWA is packaged into docker container. All the dependencies described in docker-compose.yml. You can easiliy run it and its dependencies using a simple command:

Then visit http://localhost:8080 in your favorite browser.

To rebuild the container, please use ./recreate.sh script, which will delete old container and create new from scratch. This script is primarly used in order to rebuild application image.

If you have screwed up the database (i.e. with DROP TABLE students;, please issue the following commands to recreate database container:

Natively

If for some reasons you cannot use docker or docker-compose you can run the application on your host system.

Requirements

  • Python3.6.2
  • PostgreSQL database for data storage
  • Redis for session storage

Installing and running

Then visit http://localhost:8080 in your favorite browser.

Vulnerabilities

Session fixation

Steps to reproduce

  1. Open http://localhost:8080.
  2. Open browser devtools.
  3. Get value for AIOHTTP_SESSION cookie.
  4. Open http://localhost:8080 in the incognito tab.
  5. In the incognito tab, change cookie value to the one, obtained in step 3.
  6. In the normal tab (the one from steps 1-3) log in as any user.
  7. Refresh page in the incognito tab.

Result

You are now logged in the incognito tab as user from step 6 as well.

Mitigation

Rotate session identifiers on every single login and logout. Rotate session identifiers on every user_id and/or permissions change.

SQL Injection

Steps to reproduce

  1. Open http://localhost:8080.
  2. Log in as superadmin:superadmin.
  3. Go to http://localhost:8080/students/.
  4. Add new student with the name Robert'); DROP TABLE students CASCADE; --.

Result

Table "students" is deleted from database. You observe error message, which says: _"relation "students" does not exist"_.

Mitigation

Never construct database queries using string concatenation. Use library-provided way to pass parameters and query separated. Use ORM.

Stored XSS

Steps to reproduce

  1. Open http://localhost:8080/courses/1/review.
  2. Fill in review content with the following payload:

    <b>Is this bold?</b> Yes!
  3. Submit the review by clicking "Save" button.
  4. Observe the newly created review. Note that text "Is it bold?" is bold, which means review content is probably neither sanitized on input nor escaped on output.
  5. Open http://localhost:8080/courses/1/review.
  6. Fill in review content with the following payload:

    <script>
      alert('I am a stored XSS. Your cookies are: ' + document.cookie);
    </script>
  7. Submit the review by clicking "Save" button.
  8. Observe the result.

Result

Now whenever you load http://localhost:8080/courses/1, you will receive an alert, which displays your cookie. You can play with different ways to inject your custom javascript to the page now: event handlers (i.e. <img src="nonexistent" onerror="alert(document.cookie)">, links with javascript targets, etc.

Mitigation

Escape all untrusted content, when you output it. In this example, to mitigate this kind of attack you can set autoescape=True when setting up templating engine (Jinja2) in sqli/app.py. You can also sanitize text, when users input it and prohibit different kinds of code injection.

TBA

About

Damn Vulnerable Python Web App

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.2%
  • HTML 44.3%
  • Other 0.5%