CVE (Common Vulnerabilities And Exposures)
A dataset of cyber security threats and their significance from NIST
@kaggle.andrewkronser_cve_common_vulnerabilities_and_exposures
A dataset of cyber security threats and their significance from NIST
@kaggle.andrewkronser_cve_common_vulnerabilities_and_exposures
The Common Vulnerabilities and Exposures (CVE) system provides a reference-method for publicly known information-security vulnerabilities and exposures. The National Cybersecurity FFRDC, operated by the Mitre Corporation, maintains the system, with funding from the National Cyber Security Division of the United States Department of Homeland Security.
from Wikipedia
CREATE TABLE cve (
"unnamed_0" VARCHAR -- Unnamed: 0,
"mod_date" TIMESTAMP,
"pub_date" TIMESTAMP,
"cvss" DOUBLE,
"cwe_code" BIGINT,
"cwe_name" VARCHAR,
"summary" VARCHAR,
"access_authentication" VARCHAR,
"access_complexity" VARCHAR,
"access_vector" VARCHAR,
"impact_availability" VARCHAR,
"impact_confidentiality" VARCHAR,
"impact_integrity" VARCHAR
);CREATE TABLE products (
"cve_id" VARCHAR,
"vulnerable_product" VARCHAR
);CREATE TABLE vendor_product (
"unnamed_0" BIGINT -- Unnamed: 0,
"vendor" VARCHAR,
"product" VARCHAR
);CREATE TABLE vendors (
"unnamed_0" VARCHAR -- Unnamed: 0,
"vendor" VARCHAR
);Anyone who has the link will be able to view this.