Skip to content

Commit c68536c

Browse files
themr0cnickboldt
andauthored
RHIDP-4290 - Update CVE list for release 1.3 (#574)
Co-authored-by: Nick Boldt <[email protected]>
1 parent 2e8af42 commit c68536c

File tree

6 files changed

+148
-62
lines changed

6 files changed

+148
-62
lines changed

assemblies/assembly-release-notes-fixed-security-issues.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
This section lists security issues fixed in {product} {product-version}.
66

77

8-
include::modules/release-notes/snip-cve---common-vulnerabilities-and-exposures-rhidp-3403.adoc[leveloffset=+1]
9-
10-
8+
include::modules/release-notes/snip-common-vulnerabilities-and-exposures.adoc[leveloffset=+1]
119

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
#
3+
# Copyright (c) 2024 Red Hat, Inc.
4+
# This program, and the accompanying materials are made
5+
# available under the terms of the Apache Public License 2.0,
6+
# available at http://www.apache.org/licenses/
7+
#
8+
# SPDX-License-Identifier: Apache-2.0
9+
10+
# Fail and stop on first error
11+
set -e
12+
destination=modules/release-notes/snip-common-vulnerabilities-and-exposures.adoc
13+
# Cleanup the destination files
14+
rm "$destination"
15+
# Send output to the destination file
16+
exec &>> "$destination"
17+
for cve in $(cat cve-list.txt)
18+
do
19+
# Start the list.
20+
echo "link:https://access.redhat.com/security/cve/$cve[$cve]::"
21+
# Call the API to return a list of details.
22+
# Red Hat is last if there is one.
23+
# Red Hat details is single line.
24+
# MITRE details are multiline.
25+
# We keep Red Hat details if present.
26+
# We keep only the first two lines on MITRE details.
27+
curl -s "https://access.redhat.com/hydra/rest/securitydata/cve/$cve.json" | jq -r '.details[-1]' | head -n 2
28+
# Add a separation
29+
echo ""
30+
done

cve-list.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
CVE-2023-52439
2+
CVE-2023-52884
3+
CVE-2024-6119
4+
CVE-2024-26739
5+
CVE-2024-26929
6+
CVE-2024-26930
7+
CVE-2024-26931
8+
CVE-2024-26947
9+
CVE-2024-26991
10+
CVE-2024-27022
11+
CVE-2024-35895
12+
CVE-2024-36016
13+
CVE-2024-36899
14+
CVE-2024-38562
15+
CVE-2024-38570
16+
CVE-2024-38573
17+
CVE-2024-38601
18+
CVE-2024-38615
19+
CVE-2024-39331
20+
CVE-2024-40984
21+
CVE-2024-41071
22+
CVE-2024-42225
23+
CVE-2024-42246
24+
CVE-2024-45490
25+
CVE-2024-45491
26+
CVE-2024-45492

jira2asciidoc.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,6 @@ sections:
6666
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
6767
ORDER BY key
6868
template: with-jira-link
69-
- id: fixed-security-issues
70-
title: Fixed security issues
71-
description: |
72-
This section lists security issues fixed in {product} {product-version}.
73-
query: >
74-
project = "Red Hat Internal Developer Platform"
75-
AND "Release Note Status" = "Done"
76-
AND level is EMPTY
77-
AND status in (Closed, "Release Pending")
78-
AND "Release Note Type" in ("CVE - Common Vulnerabilities and Exposures")
79-
AND (fixVersion ~ "{version_minor_glob}" OR fixVersion = "{version_patch}")
80-
ORDER BY key
81-
template: security
8269
- id: fixed-issues
8370
title: Fixed issues
8471
description: |
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
link:https://access.redhat.com/security/cve/CVE-2023-52439[CVE-2023-52439]::
2+
A flaw was found in the Linux kernel’s uio subsystem. A use-after-free memory flaw in the uio_open functionality allows a local user to crash or escalate their privileges on the system.
3+
4+
link:https://access.redhat.com/security/cve/CVE-2023-52884[CVE-2023-52884]::
5+
In the Linux kernel, the following vulnerability has been resolved:
6+
Input: cyapa - add missing input core locking to suspend/resume functions
7+
8+
link:https://access.redhat.com/security/cve/CVE-2024-6119[CVE-2024-6119]::
9+
A flaw was found in OpenSSL. Applications performing certificate name checks (e.g., TLS clients checking server certificates) may attempt to read an invalid memory address resulting in abnormal termination of the application process.
10+
11+
link:https://access.redhat.com/security/cve/CVE-2024-26739[CVE-2024-26739]::
12+
A use-after-free flaw was found in net/sched/act_mirred.c in the Linux kernel. This may result in a crash.
13+
14+
link:https://access.redhat.com/security/cve/CVE-2024-26929[CVE-2024-26929]::
15+
In the Linux kernel, the following vulnerability has been resolved:
16+
scsi: qla2xxx: Fix double free of fcport
17+
18+
link:https://access.redhat.com/security/cve/CVE-2024-26930[CVE-2024-26930]::
19+
A vulnerability was found in the Linux kernel. A potential double-free in the pointer ha->vp_map exists in the Linux kernel in drivers/scsi/qla2xxx/qla_os.c.
20+
21+
link:https://access.redhat.com/security/cve/CVE-2024-26931[CVE-2024-26931]::
22+
In the Linux kernel, the following vulnerability has been resolved:
23+
scsi: qla2xxx: Fix command flush on cable pull
24+
25+
link:https://access.redhat.com/security/cve/CVE-2024-26947[CVE-2024-26947]::
26+
A flaw was found in the Linux kernel’s ARM memory management functionality, where certain memory layouts cause a kernel panic. This flaw allows an attacker who can specify or alter memory layouts to cause a denial of service.
27+
28+
link:https://access.redhat.com/security/cve/CVE-2024-26991[CVE-2024-26991]::
29+
A flaw was found in the Linux Kernel. A lpage_info overflow can occur when checking attributes. This may lead to a crash.
30+
31+
link:https://access.redhat.com/security/cve/CVE-2024-27022[CVE-2024-27022]::
32+
In the Linux kernel, the following vulnerability has been resolved:
33+
fork: defer linking file vma until vma is fully initialized
34+
35+
link:https://access.redhat.com/security/cve/CVE-2024-35895[CVE-2024-35895]::
36+
In the Linux kernel, the following vulnerability has been resolved:
37+
bpf, sockmap: Prevent lock inversion deadlock in map delete elem
38+
39+
link:https://access.redhat.com/security/cve/CVE-2024-36016[CVE-2024-36016]::
40+
In the Linux kernel, the following vulnerability has been resolved:
41+
tty: n_gsm: fix possible out-of-bounds in gsm0_receive()
42+
43+
link:https://access.redhat.com/security/cve/CVE-2024-36899[CVE-2024-36899]::
44+
In the Linux kernel, the following vulnerability has been resolved:
45+
gpiolib: cdev: Fix use after free in lineinfo_changed_notify
46+
47+
link:https://access.redhat.com/security/cve/CVE-2024-38562[CVE-2024-38562]::
48+
In the Linux kernel, the following vulnerability has been resolved:
49+
wifi: nl80211: Avoid address calculations via out of bounds array indexing
50+
51+
link:https://access.redhat.com/security/cve/CVE-2024-38570[CVE-2024-38570]::
52+
In the Linux kernel, the following vulnerability has been resolved:
53+
gfs2: Fix potential glock use-after-free on unmount
54+
55+
link:https://access.redhat.com/security/cve/CVE-2024-38573[CVE-2024-38573]::
56+
A NULL pointer dereference flaw was found in cppc_cpufreq_get_rate() in the Linux kernel. This issue may result in a crash.
57+
58+
link:https://access.redhat.com/security/cve/CVE-2024-38601[CVE-2024-38601]::
59+
In the Linux kernel, the following vulnerability has been resolved:
60+
ring-buffer: Fix a race between readers and resize checks
61+
62+
link:https://access.redhat.com/security/cve/CVE-2024-38615[CVE-2024-38615]::
63+
In the Linux kernel, the following vulnerability has been resolved:
64+
cpufreq: exit() callback is optional
65+
66+
link:https://access.redhat.com/security/cve/CVE-2024-39331[CVE-2024-39331]::
67+
A flaw was found in Emacs. Arbitrary shell commands can be executed without prompting when an Org mode file is opened or when the Org mode is enabled, when Emacs is used as an email client, this issue can be triggered when previewing email attachments.
68+
69+
link:https://access.redhat.com/security/cve/CVE-2024-40984[CVE-2024-40984]::
70+
In the Linux kernel, the following vulnerability has been resolved:
71+
ACPICA: Revert "ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine."
72+
73+
link:https://access.redhat.com/security/cve/CVE-2024-41071[CVE-2024-41071]::
74+
An out-of-bounds buffer overflow has been found in the Linux kernel’s mac80211 subsystem when scanning for SSIDs. Address calculation using out-of-bounds array indexing could result in an attacker crafting an exploit, resulting in the complete compromise of a system.
75+
76+
link:https://access.redhat.com/security/cve/CVE-2024-42225[CVE-2024-42225]::
77+
A potential flaw was found in the Linux kernel’s MediaTek WiFi, where it was reusing uninitialized data. This flaw allows a local user to gain unauthorized access to some data potentially.
78+
79+
link:https://access.redhat.com/security/cve/CVE-2024-42246[CVE-2024-42246]::
80+
In the Linux kernel, the following vulnerability has been resolved:
81+
net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket
82+
83+
link:https://access.redhat.com/security/cve/CVE-2024-45490[CVE-2024-45490]::
84+
A flaw was found in libexpat's xmlparse.c component. This vulnerability allows an attacker to cause improper handling of XML data by providing a negative length value to the XML_ParseBuffer function.
85+
86+
link:https://access.redhat.com/security/cve/CVE-2024-45491[CVE-2024-45491]::
87+
An issue was found in libexpat’s internal dtdCopy function in xmlparse.c, It can have an integer overflow for nDefaultAtts on 32-bit platforms where UINT_MAX equals SIZE_MAX.
88+
89+
link:https://access.redhat.com/security/cve/CVE-2024-45492[CVE-2024-45492]::
90+
A flaw was found in libexpat's internal nextScaffoldPart function in xmlparse.c. It can have an integer overflow for m_groupSize on 32-bit platforms where UINT_MAX equals SIZE_MAX.
91+

modules/release-notes/snip-cve---common-vulnerabilities-and-exposures-rhidp-3403.adoc

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)