diff options
| author | J08nY | 2023-04-25 19:07:34 +0200 |
|---|---|---|
| committer | J08nY | 2023-04-25 19:07:34 +0200 |
| commit | 7d4e1a1fb411313516901938ad690f4cb64ea2ee (patch) | |
| tree | 95bcb4ddf83546ca3f9cc84e7bd85c99ec5f2799 /src | |
| parent | b992950a404fd23af4e6c57579f3c405f4d48856 (diff) | |
| download | sec-certs-7d4e1a1fb411313516901938ad690f4cb64ea2ee.tar.gz sec-certs-7d4e1a1fb411313516901938ad690f4cb64ea2ee.tar.zst sec-certs-7d4e1a1fb411313516901938ad690f4cb64ea2ee.zip | |
Fix URLs of CVE/CPE/CPE-match datasets.
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( |
