From 7d4e1a1fb411313516901938ad690f4cb64ea2ee Mon Sep 17 00:00:00 2001 From: J08nY Date: Tue, 25 Apr 2023 19:07:34 +0200 Subject: Fix URLs of CVE/CPE/CPE-match datasets. --- src/sec_certs/configuration.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/sec_certs/configuration.py b/src/sec_certs/configuration.py index e1f4f9cc..3e49ecad 100644 --- a/src/sec_certs/configuration.py +++ b/src/sec_certs/configuration.py @@ -70,13 +70,13 @@ class Configuration(BaseSettings): "https://seccerts.org/fips/mip/latest.json", description="URL for the latest snapshot of FIPS MIP data" ) cpe_latest_snapshot: AnyHttpUrl = Field( - "https://seccerts.org/cpe/cpe.json.gz", description="URL for the latest snapshot of CPEDataset." + "https://seccerts.org/vuln/cpe/cpe.json.gz", description="URL for the latest snapshot of CPEDataset." ) cve_latest_snapshot: AnyHttpUrl = Field( - "https://seccerts.org/cve/cve.json.gz", description="URL for the latest snapshot of CVEDataset." + "https://seccerts.org/vuln/cve/cve.json.gz", description="URL for the latest snapshot of CVEDataset." ) cpe_match_latest_snapshot: AnyHttpUrl = Field( - "https://seccerts.org/cpe/cpe_match.json.gz", + "https://seccerts.org/vuln/cpe/cpe_match.json.gz", description="URL for the latest snapshot of cpe match json.", ) fips_matching_threshold: int = Field( -- cgit v1.3.1