|
3 miesięcy temu | |
---|---|---|
app | 1 rok temu | |
bin | 2 lat temu | |
config | 2 lat temu | |
db | 2 lat temu | |
doc | 2 lat temu | |
lib | 2 lat temu | |
log | 3 lat temu | |
public | 2 lat temu | |
.gitignore | 2 lat temu | |
.gitmodules | 2 lat temu | |
Gemfile | 2 lat temu | |
Gemfile.lock | 2 lat temu | |
LICENSE | 3 lat temu | |
README.md | 2 lat temu | |
Rakefile | 3 lat temu | |
config.ru | 3 lat temu |
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.
DVGM contains (at least) the following vulnerabilities:
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:
Damn Vulnerable Grade Management implements a simplistic system for managing university grades. Students can upload assignments (pdf), view their grades for their assignments and lectures, download their grades as reports, and add comments to the grades which can be viewed by lecturers. The application knows three roles: admins, lecturers, and students.
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!
The repository can be cloned as usual:
git clone https://git.logicalhacking.com/BrowserSecurity/DVGM.git
Note, if you authorized to access the confidential solutions of the exercises for DVGM, you can obtain them by executing
git submodule update --init --recursive
After cloning the repository, install the dependencies; bundle
will install
all dependencies automatically into a project-local directory:
cd DVGM
bundle install --path vendor/bundle
To make exploration of the app a bit easier, we run DVGM in development mode. This means that
Now, start the server:
bin/rails server
Now, open your browser, go to http://localhost:3000, and start exploring!
This project is licensed under the GPL 3.0 (or any later version).
SPDX-License-Identifier: GPL-3.0-or-later
The master git repository for this project is hosted by the Software Assurance & Security Research Team at https://git.logicalhacking.com/BrowserSecurity/DVGM.