# NIST NVD High Severity CVE Scraper

**Use case:** 

Scrape HIGH severity CVEs from the NIST NVD. Get CVE IDs, CVSS scores, descriptions and references for serious vulnerabilities.

## Input

```json
{
  "cveId": "",
  "cveIds": [],
  "keyword": "",
  "severity": "HIGH",
  "cweId": "",
  "pubStartDate": "",
  "pubEndDate": "",
  "hasOval": false,
  "hasKev": false,
  "hasCertAlerts": false,
  "hasCertNotes": false,
  "noRejected": true,
  "sourceIdentifier": "",
  "virtualMatchString": "",
  "maxItems": 5
}
```

## Output

```json
{
  "cveId": {
    "label": "Cve Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "sourceIdentifier": {
    "label": "Source Identifier",
    "format": "text"
  },
  "published": {
    "label": "Published",
    "format": "text"
  },
  "lastModified": {
    "label": "Last Modified",
    "format": "text"
  },
  "vulnStatus": {
    "label": "Vuln Status",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "cvssV4BaseScore": {
    "label": "Cvss V4 Base Score",
    "format": "number"
  },
  "cvssV4Severity": {
    "label": "Cvss V4 Severity",
    "format": "text"
  },
  "cvssV4VectorString": {
    "label": "Cvss V4 Vector String",
    "format": "text"
  },
  "cvssV3BaseScore": {
    "label": "Cvss V3 Base Score",
    "format": "number"
  },
  "cvssV3BaseSeverity": {
    "label": "Cvss V3 Base Severity",
    "format": "text"
  },
  "cvssV3VectorString": {
    "label": "Cvss V3 Vector String",
    "format": "text"
  },
  "cvssV2BaseScore": {
    "label": "Cvss V2 Base Score",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [NIST NVD CVE Scraper](https://apify.com/parseforge/nist-nvd-cve-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/nist-nvd-cve-scraper) to learn more, explore other use cases, and run it yourself.