CVEExploitationDetails

SecurityThreat IntelligenceCybersecurityIP ReputationVulnerability ManagementNetwork TelemetrySOC AutomationPublic APIs

Properties

Name Type Description
attack_vector string The attack vector for the CVE.
exploit_found boolean Whether an exploit has been found for this CVE.
exploitation_registered_in_kev boolean Whether the exploitation is registered in KEV.
epss_score number The EPSS score for the CVE.
View JSON Schema on GitHub

JSON Schema

greynoise-cve-exploitation-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/greynoise/json-schema/greynoise-cve-exploitation-details-schema.json",
  "title": "CVEExploitationDetails",
  "type": "object",
  "properties": {
    "attack_vector": {
      "type": "string",
      "description": "The attack vector for the CVE.",
      "example": "Network"
    },
    "exploit_found": {
      "type": "boolean",
      "description": "Whether an exploit has been found for this CVE.",
      "example": true
    },
    "exploitation_registered_in_kev": {
      "type": "boolean",
      "description": "Whether the exploitation is registered in KEV.",
      "example": true
    },
    "epss_score": {
      "type": "number",
      "description": "The EPSS score for the CVE.",
      "example": 0.8
    }
  }
}