diff options
| author | Marta Rybczynska <rybczynska@gmail.com> | 2023-03-29 12:02:56 +0200 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-06-21 04:00:58 -1000 |
| commit | 075d712b289d1749c3199bc2604164b285371629 (patch) | |
| tree | 768700d455f003f707102968fc0bcf9fcff93ac9 /meta/classes/cve-check.bbclass | |
| parent | 1a63c9703f76c30c6c0c2b15ccefd3730bc707be (diff) | |
| download | poky-075d712b289d1749c3199bc2604164b285371629.tar.gz | |
cve-update-nvd2-native: new CVE database fetcher
Add new fetcher for the NVD database using the 2.0 API [1].
The implementation changes as little as possible, keeping the current
database format (but using a different database file for the transition
period), with a notable exception of not using the META table.
Minor changes that could be visible:
- the database starts in 1999 instead of 2002
- the complete fetch is longer (30 minutes typically)
[1] https://nvd.nist.gov/developers/vulnerabilities
(From OE-Core rev: b8ae26aabe825c1bc8d84fd7e0ee197695f1dee7)
Signed-off-by: Marta Rybczynska <marta.rybczynska@syslinbit.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit fb62c4c3dbca4e58f7ce6cf29d4b630a06411a97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes/cve-check.bbclass')
| -rw-r--r-- | meta/classes/cve-check.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass index 3c922b27af..494fa03ec1 100644 --- a/meta/classes/cve-check.bbclass +++ b/meta/classes/cve-check.bbclass | |||
| @@ -26,7 +26,7 @@ CVE_PRODUCT ??= "${BPN}" | |||
| 26 | CVE_VERSION ??= "${PV}" | 26 | CVE_VERSION ??= "${PV}" |
| 27 | 27 | ||
| 28 | CVE_CHECK_DB_DIR ?= "${DL_DIR}/CVE_CHECK" | 28 | CVE_CHECK_DB_DIR ?= "${DL_DIR}/CVE_CHECK" |
| 29 | CVE_CHECK_DB_FILE ?= "${CVE_CHECK_DB_DIR}/nvdcve_1.1.db" | 29 | CVE_CHECK_DB_FILE ?= "${CVE_CHECK_DB_DIR}/nvdcve_2.db" |
| 30 | CVE_CHECK_DB_FILE_LOCK ?= "${CVE_CHECK_DB_FILE}.lock" | 30 | CVE_CHECK_DB_FILE_LOCK ?= "${CVE_CHECK_DB_FILE}.lock" |
| 31 | 31 | ||
| 32 | CVE_CHECK_LOG ?= "${T}/cve.log" | 32 | CVE_CHECK_LOG ?= "${T}/cve.log" |
| @@ -155,7 +155,7 @@ python do_cve_check () { | |||
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | addtask cve_check before do_build | 157 | addtask cve_check before do_build |
| 158 | do_cve_check[depends] = "cve-update-db-native:do_fetch" | 158 | do_cve_check[depends] = "cve-update-nvd2-native:do_fetch" |
| 159 | do_cve_check[nostamp] = "1" | 159 | do_cve_check[nostamp] = "1" |
| 160 | 160 | ||
| 161 | python cve_check_cleanup () { | 161 | python cve_check_cleanup () { |
