aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2023-04-25 13:19:16 +0200
committerJ08nY2023-04-25 13:19:16 +0200
commitb992950a404fd23af4e6c57579f3c405f4d48856 (patch)
treea7f50c27ec0f2e3e3db15004a84b6127b394d315
parente8bb30b3385a04fc0f81497da53b88cce6d14117 (diff)
downloadsec-certs-b992950a404fd23af4e6c57579f3c405f4d48856.tar.gz
sec-certs-b992950a404fd23af4e6c57579f3c405f4d48856.tar.zst
sec-certs-b992950a404fd23af4e6c57579f3c405f4d48856.zip
Fix CVE/CPE dataset default config paths.
-rw-r--r--src/sec_certs/configuration.py6
1 files 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(