diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/sec_certs/configuration.py | 6 |
1 files changed, 3 insertions, 3 deletions
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( |
