/nvdapi

The JSON REST API for the National Vulnerability Database

Primary LanguageCSS

NVDAPI

NVDAPI is a JSON REST API project to share the list of vulnerabilities of the National Vulnerability Database

It provides a method to list and detail CVEs and some filters/searchs as well.

Dependencies

Installation

git clone https://github.com/Diviei/nvdapi.git
cd nvdapi
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Create a file called local_settings.py inside nvdapi folder (where settings.py is) and add your SECRET_KEY

SECRET_KEY = "whatever"

And now run the migrations

python manage.py migrate