From 00e4a03348ca4fccbc64d540a9d06d0bbdc2602f Mon Sep 17 00:00:00 2001 From: Thomas Perale Date: Tue, 2 Jun 2026 22:23:22 +0200 Subject: [PATCH] package/ntp: ignore CVE-2015-7977 The NVD database schema has the following entry ``` { "vulnerable": true, "criteria": "cpe:2.3:a:ntp:ntp:*:*:*:*:*:*:*:*", "versionEndIncluding": "4.2.8", }, ``` Which make every patch revision of the package ntp match to the CVE-2015-7977. This commit ignore this entry. Signed-off-by: Thomas Perale Signed-off-by: Julien Olivain --- package/ntp/ntp.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index f481c5d79b..29770642a0 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -25,6 +25,9 @@ NTP_CONF_OPTS = \ --with-yielding-select=yes \ --disable-local-libevent +# NVD Entry incorrectly match on every patch revision. Fixed in 4.2.8p6. +NTP_IGNORE_CVES += CVE-2015-7977 + # 0002-ntp-syscalls-fallback.patch NTP_AUTORECONF = YES