From b992950a404fd23af4e6c57579f3c405f4d48856 Mon Sep 17 00:00:00 2001 From: J08nY Date: Tue, 25 Apr 2023 13:19:16 +0200 Subject: Fix CVE/CPE dataset default config paths. --- src/sec_certs/configuration.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sec_certs/configuration.py b/src/sec_certs/configuration.py index f4883dbd..e1f4f9cc 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_dataset.json.gz", description="URL for the latest snapshot of CPEDataset." + "https://seccerts.org/cpe/cpe.json.gz", description="URL for the latest snapshot of CPEDataset." ) cve_latest_snapshot: AnyHttpUrl = Field( - "https://seccerts.org/cve/cve_dataset.json.gz", description="URL for the latest snapshot of CVEDataset." + "https://seccerts.org/cve/cve.json.gz", description="URL for the latest snapshot of CVEDataset." ) cpe_match_latest_snapshot: AnyHttpUrl = Field( - "https://seccerts.org/cpe/cpe_match_dataset.json.gz", + "https://seccerts.org/cpe/cpe_match.json.gz", description="URL for the latest snapshot of cpe match json.", ) fips_matching_threshold: int = Field( -- cgit v1.3.1