diff options
author | Shinji Matsunaga <shin.matsunaga@fujitsu.com> | 2024-09-24 15:38:32 +0900 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-11-19 13:13:21 -0800 |
commit | 489c4380b36442d714d61a99b4d1159aded81118 (patch) | |
tree | 816171b29de88695328d91eb9f691a74feefb55b | |
parent | bbe628f5ee7166cf0d6e986d3c0c5d818a1cf48f (diff) | |
download | meta-openembedded-489c4380b36442d714d61a99b4d1159aded81118.tar.gz |
audit: Fix CVE_PRODUCT
Fix "audit" set in CVE_PRODUCT to "linux:audit" to detect only vulnerabilities where the vendor is "linux".
Currently, CVE_PRODUCT also detects vulnerabilities where the vendor is "visionsoft",
which are unrelated to the "audit" in this recipe.
https://www.opencve.io/cve?vendor=visionsoft&product=audit
In addition, all the vulnerabilities currently detected in "audit" have the vendor of "visionsoft" or "linux".
Therefore, fix "audit" set in CVE_PRODUCT to "linux:audit".
Signed-off-by: Shinji Matsunaga <shin.matsunaga@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-security/audit/audit_4.0.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-security/audit/audit_4.0.2.bb b/meta-oe/recipes-security/audit/audit_4.0.2.bb index d6742c9eb0..6bb8a2c703 100644 --- a/meta-oe/recipes-security/audit/audit_4.0.2.bb +++ b/meta-oe/recipes-security/audit/audit_4.0.2.bb | |||
@@ -99,3 +99,5 @@ do_install:append() { | |||
99 | # Create /var/spool/audit directory for audisp-remote | 99 | # Create /var/spool/audit directory for audisp-remote |
100 | install -d -m 0700 ${D}${localstatedir}/spool/audit | 100 | install -d -m 0700 ${D}${localstatedir}/spool/audit |
101 | } | 101 | } |
102 | |||
103 | CVE_PRODUCT = "linux:audit" | ||