List CVEs

List all CVEs

When to comes to security, we take it very seriously. We have a dedicated team that is constantly monitoring the security of our platform and the services we provide. We are committed to providing a secure platform for our users. That is why we have a API endpoint that allows you to list all the CVEs that are currently affecting our platform.

List All CVEs

Endpoint

GET /cves

Response

all_cves.json
[
  {
    "title": "Example CVE",
    "severity": "Medium",
    "repo": "data",
    "body": "This is an example CVE that is affecting the data repo.",
    "affected": ["example-component"],
    "attackVector": "Physical",
    "attackComplexity": "Low",
    "privilegesRequired": "None",
    "userInteraction": "None",
    "scope": "Unchanged",
    "confidentialityImpact": "None",
    "integrityImpact": "None",
    "availabilityImpact": "None",
    "tags": ["example", "cve"],
    "cve": "CVE-2024-1234",
    "author": {
      "id": "9362380075",
      "username": "YaMi",
      "avatar": "https://user-content.vtubers.tv/avatars/197l3m1911e9f0kun8yk72ycut7ukt0lk1zujqj0l31wc0aljx2wkflhh30u98k44x01j9.jpg",
      "display_name": "Steller"
    },
    "createdAt": "2024-08-11T00:01:45.034Z"
  }
]

Get a Specific CVE

Endpoint

GET /cves?id={cve_id}

Response

specific_cve.json
  {
    "title": "Example CVE",
    "severity": "Medium",
    "repo": "data",
    "body": "This is an example CVE that is affecting the data repo.",
    "affected": [
      "example-component"
    ],
    "attackVector": "Physical",
    "attackComplexity": "Low",
    "privilegesRequired": "None",
    "userInteraction": "None",
    "scope": "Unchanged",
    "confidentialityImpact": "None",
    "integrityImpact": "None",
    "availabilityImpact": "None",
    "tags": [
      "example",
      "cve"
    ],
    "cve": "CVE-2024-1234",
    "author": {
      "id": "9362380075",
      "username": "YaMi",
      "avatar": "https://user-content.vtubers.tv/avatars/197l3m1911e9f0kun8yk72ycut7ukt0lk1zujqj0l31wc0aljx2wkflhh30u98k44x01j9.jpg",
      "display_name": "Steller"
    },
    "createdAt": "2024-08-11T00:01:45.034Z"
  },