A Django application to calculate an overall risk score for a web application vulnerability using the OWASP Risk Rating methodolgy.
-
Install widget_tweaks in your venv.
pip install django-widget-tweaks
Then add ‘widget_tweaks’ to INSTALLED_APPS.
-
Add "owaspcalc" to your INSTALLED_APPS setting like this
INSTALLED_APPS = [
'owaspcalc.apps.OwaspcalcConfig', 'widget_tweaks',
]
-
Include the polls URLconf in your project urls.py like this
url(r'^owaspcalc/', include('owaspcalc.urls')),
-
Run
python manage.py migrate
to create the owaspcalc models. -
Visit http://127.0.0.1:8000/owaspcalc/ to get started.