DVGM/README.md

101 lines
3.4 KiB
Markdown
Raw Normal View History

2018-08-22 14:42:08 +00:00
# Damn Vulnerable Grade Management (DVGM) - An Intentionally Vulnerable Rails Application
2018-08-12 06:57:07 +00:00
2018-08-22 14:42:08 +00:00
Damn Vulnerable Grade Management is an **intentionally vulnerable** grade
management application that can be used for teaching *security testing* and
*security programming*. It aims to be a small application with a realistic use
case that contains common vulnerabilities, making it a good target to get
started with automatic security testing tools.
## Known Vulnerabilities
VGM contains (at least) the following vulnerabilities:
* SQL Injection
* Cross-Site Scripting (XSS)
* DOM Based XSS / Client Side XSS
* Missing server-side input validation
* Insecure HTTP Headers
2018-08-22 15:59:27 +00:00
* Vulnerable dependencies
2018-08-22 14:42:08 +00:00
## Suggested Static and Dynamic Tools
We have tried many different tools to automatically find the vulnerabilities,
and found the following tools to work best for this kind of application. While
none of them finds all contained vulnerabilities, together they cover a
reasonable amount:
* [arachni (1.5.1)](https://github.com/Arachni/arachni)
* [zaproxy (OSWASP ZAP, 2.7.0)](https://github.com/zaproxy/zaproxy)
* [brakeman (4.2.1)](https://github.com/presidentbeef/brakeman)
2018-08-12 06:57:07 +00:00
## Application Scenario
2018-08-22 14:42:08 +00:00
Damn Vulnerable Grade Management implements a simplistic system for managing
2018-08-23 11:53:24 +00:00
university grades. Students can view their grades for their lectures and add
2018-08-22 14:42:08 +00:00
comments to the grades, which can be viewed by lecturers. The application knows
three roles: *admins*, *lecturers*, and *students*.
* *Admins* can create new students, lecturers, and other admins. Admins can
create new lectures, held by any lecturer. Admins can also create, view, and
edit new grades for all lectures and students and can create, view, and edit
comments.
* *Lecturers* can create new students. They can also create new lectures that
are being held by them. Lecturers can can view grades for all students, but
only enter new grades for their own students. Lecturers can see comments for
all grades, but can not change any.
* *Students* can view their grades. For their convenience, they have the ability
to filter their grade list by a lecturer name.
2018-08-23 11:53:24 +00:00
You are Peter, a student and you can log in with `peter` as username and
`football` as password. Try and see how much information/control you can gain!
2018-08-12 06:45:56 +00:00
## Setup
### Dependencies
2018-08-22 14:42:08 +00:00
* Ruby 2.5 and [bundler](https://github.com/bundler/bundler)
2018-08-12 06:45:56 +00:00
### Installation
2017-10-22 18:56:44 +00:00
2018-08-22 14:42:08 +00:00
After cloning the repository, install the dependencies; `bundle` will install
all dependencies automatically into a project-local directory:
2017-10-22 18:56:44 +00:00
```bash
2018-08-22 14:42:08 +00:00
cd dvgm
bundle install --path vendor/bundle
```
2017-10-22 18:56:44 +00:00
2018-08-12 06:45:56 +00:00
### Starting the server
2017-10-22 18:56:44 +00:00
2018-08-22 14:42:08 +00:00
To make exploration of the app a bit easier, we run DVGM in development mode.
This means that
* on errors, rails will return a detailed debug page, and
* changed source files will automatically be picked up, without needing to
2018-08-23 11:53:24 +00:00
restart the server (useful for seeing if your fixes work).
2018-08-22 14:42:08 +00:00
Now, start the server:
2017-10-22 18:56:44 +00:00
```bash
bin/rails server
```
2018-08-22 14:42:08 +00:00
Now, open your browser, go to <http://localhost:3000>, and start exploring!
## Team
* [Achim D. Brucker](https://www.brucker.ch/)
2018-08-22 14:42:08 +00:00
* [Michael Herzberg](https://www.mherzberg.de/)
## License
This project is licensed under the GPL 3.0 (or any later version).
SPDX-License-Identifier: GPL-3.0-or-later
## Master Repository
The master git repository for this project is hosted by the [Software
Assurance & Security Research Team](https://logicalhacking.com) at
2018-08-22 22:11:02 +00:00
<https://git.logicalhacking.com/BrowserSecurity/DVGM>.