devguard
devguard copied to clipboard
Create open API-Endpoint to search for cves and retrieve all information we are currently storing in our Vulnerability database
I thought about a route design like this:
Retrieve all details of a single CVE: GET /vulndb/<CVE-ID>.
Filter CVEs GET /vulndb - I want to be able to:
- List all Vulnerabilities (max 100 per page) - we need to build a pagination (
GET /vulndb?page=1&perPage=10) - Order and Filter Vulnerabilities by attributes (see
FlawHttpController@ListPaged)