Skip to content

Commit e7c7a5c

Browse files
committed
update RN with more fixed rpm and node/go CVEs; add missing RN item for https://issues.redhat.com/browse/RHIDP-5477 bug fix too
Signed-off-by: Nick Boldt <[email protected]>
1 parent e4bb816 commit e7c7a5c

5 files changed

+47
-9
lines changed
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
# https://errata.engineering.redhat.com/advisory/143859
22
CVE-2024-9287, python 3.11: Virtual environment (venv) activation scripts don't quote paths
33

4-
# TODO verify these are fixed in the latest rhdh-hub / operator containers
5-
64
# https://errata.engineering.redhat.com/advisory/144019, kernel-5.14.0-503.21.1.el9_5
7-
# CVE-2024-46713, kernel: perf/aux: Fix AUX buffer serialization
8-
# CVE-2024-50208, kernel: RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages
9-
# CVE-2024-50252, kernel: mlxsw: spectrum_ipip: Fix memory leak when changing remote IPv6 address
10-
# CVE-2024-53122, kernel: mptcp: cope racing subflow creation in mptcp_rcv_space_adjust
5+
CVE-2024-46713, kernel: perf/aux: Fix AUX buffer serialization
6+
CVE-2024-50208, kernel: RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages
7+
CVE-2024-50252, kernel: mlxsw: spectrum_ipip: Fix memory leak when changing remote IPv6 address
8+
CVE-2024-53122, kernel: mptcp: cope racing subflow creation in mptcp_rcv_space_adjust
119

1210
# https://errata.engineering.redhat.com/advisory/139648, skopeo-1.16.1-2.el9_5
13-
# CVE-2024-34156, encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion
11+
CVE-2024-34156, encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion
1412

1513
# https://errata.engineering.redhat.com/advisory/143848, python3.9-3.9.21-1.el9_5
16-
# CVE-2024-11168, python 3.9: Improper validation of IPv6 and IPvFuture addresses
14+
CVE-2024-11168, python 3.9: Improper validation of IPv6 and IPvFuture addresses

modules/release-notes/ref-release-notes-fixed-issues.adoc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
This section lists issues fixed in {product} {product-version}.
66

7+
== Fixed issues in 1.3.4
8+
9+
[id="bug-fix-rhidp-5477"]
10+
=== GitLab Org plugin throws MODULE_NOT_FOUND error
11+
12+
In the previous version of {product-short}, the gitlab org catalog backend plugin would fail to load when configured with a `MODULE_NOT_FOUND` error. This has been fixed by embedding the missing dependencies in the dynamic plugins.
13+
14+
See similar issue https://issues.redhat.com/browse/RHIDP-5308
15+
16+
.Additional resources
17+
18+
* link:https://issues.redhat.com/browse/RHIDP-5477[RHIDP-5477]
19+
720
== Fixed issues in 1.3.3
821

922
[id="bug-fix-rhidp-5180"]

modules/release-notes/ref-release-notes-known-issues.adoc

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

77
[id="known-issue-rhidp-5342"]
8-
== [Helm] Cannot run 2 RHDH replicas on different nodes due to Multi-Attach errors on the dynamic plugins root PVC
8+
== [Helm] Cannot run two RHDH replicas on different nodes due to Multi-Attach errors on the dynamic plugins root PVC
99

1010
If you are deploying {product-short} using the Helm Chart, it is currently impossible to have 2 replicas running on different cluster nodes. This might also affect the upgrade from 1.3 to 1.4.0 if the new pod is scheduled on a different node.
1111

modules/release-notes/snip-fixed-security-issues-in-product-1.3.4.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
= {product} dependency updates
22

3+
link:https://access.redhat.com/security/cve/CVE-2024-45338[CVE-2024-45338]::
4+
A flaw was found in golang.org/x/net/html. This flaw allows an attacker to craft input to the parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This issue can cause a denial of service.
5+
6+
link:https://access.redhat.com/security/cve/CVE-2024-52798[CVE-2024-52798]::
7+
A flaw was found in path-to-regexp. A path-to-regexp turns path strings into regular expressions. In certain cases, path-to-regexp will output a regular expression that can be exploited to cause poor performance.
8+
39
link:https://access.redhat.com/security/cve/CVE-2024-55565[CVE-2024-55565]::
410
nanoid (aka Nano ID) before 5.0.9 mishandles non-integer values. 3.3.8 is also a fixed version.
511

modules/release-notes/snip-fixed-security-issues-in-rpm-1.3.4.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,24 @@
22

33
link:https://access.redhat.com/security/cve/CVE-2024-9287[CVE-2024-9287]::
44
A vulnerability has been found in the Python `venv` module and CLI. Path names provided when creating a virtual environment were not quoted properly, allowing the creator to inject commands into virtual environment "activation" scripts, for example, "source venv/bin/activate". This flaw allows attacker-controlled virtual environments to run commands when the virtual environment is activated.
5+
6+
link:https://access.redhat.com/security/cve/CVE-2024-11168[CVE-2024-11168]::
7+
A flaw was found in Python. The `urllib.parse.urlsplit()` and `urlparse()` functions improperly validated bracketed hosts (`[]`), allowing hosts that weren't IPv6 or IPvFuture compliant. This behavior was not conformant to RFC 3986 and was potentially vulnerable to server-side request forgery (SSRF) if a URL is processed by more than one URL parser.
8+
9+
link:https://access.redhat.com/security/cve/CVE-2024-34156[CVE-2024-34156]::
10+
A flaw was found in the encoding/gob package of the Golang standard library. Calling Decoder.Decoding, a message that contains deeply nested structures, can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.
11+
12+
link:https://access.redhat.com/security/cve/CVE-2024-46713[CVE-2024-46713]::
13+
In the Linux kernel, the following vulnerability has been resolved:
14+
perf/aux: Fix AUX buffer serialization
15+
16+
link:https://access.redhat.com/security/cve/CVE-2024-50208[CVE-2024-50208]::
17+
In the Linux kernel, the following vulnerability has been resolved:
18+
RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages
19+
20+
link:https://access.redhat.com/security/cve/CVE-2024-50252[CVE-2024-50252]::
21+
In the Linux kernel, the following vulnerability has been resolved:
22+
mlxsw: spectrum_ipip: Fix memory leak when changing remote IPv6 address
23+
24+
link:https://access.redhat.com/security/cve/CVE-2024-53122[CVE-2024-53122]::
25+
A divide by zero flaw was found in the Linux kernel's Multipath TCP (MPTCP). This issue could allow a remote user to crash the system.

0 commit comments

Comments
 (0)