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
CREATE TABLE cve (
"unnamed_0" VARCHAR,
"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 vendors (
"unnamed_0" VARCHAR,
"vendor" VARCHAR
);
CREATE TABLE vendor_product (
"unnamed_0" BIGINT,
"vendor" VARCHAR,
"product" VARCHAR
);
Anyone who has the link will be able to view this.