Lucene search
+L

7726 matches found

Cvelist
Cvelist
added 2024/07/30 7:46 a.m.34 views

CVE-2024-42120 drm/amd/display: Check pipe offset before setting vblank

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipectx has a size of MAXPIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity...

7.8CVSS0.00263EPSS
SaveExploits0References6
Debian CVE
Debian CVE
added 2024/07/30 7:46 a.m.32 views

CVE-2024-42120

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipectx has a size of MAXPIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity...

7.8CVSS5.6AI score0.00263EPSS
SaveExploits0
OSV
OSV
added 2024/07/30 7:46 a.m.29 views

CVE-2024-42120 drm/amd/display: Check pipe offset before setting vblank

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipectx has a size of MAXPIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity...

7.8CVSS6AI score
SaveExploits0References10
Vulnrichment
Vulnrichment
added 2024/07/30 7:46 a.m.19 views

CVE-2024-42120 drm/amd/display: Check pipe offset before setting vblank

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipectx has a size of MAXPIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity...

6.8AI score0.00263EPSS
SaveExploits0References6
CVE
CVE
added 2024/07/30 7:46 a.m.126 views

CVE-2024-42120

CVE-2024-42120 pertains to the Linux kernel, specifically a vulnerability in the DRM AMD display code. The issue is an OVERRUN caused by accessing the pipe_ctx array without validating an index against its MAX_PIPES size, which could lead to out-of-bounds access in the vblank handling path. The d...

7.8CVSS6.6AI score0.00263EPSS
SaveExploits0References7Affected Software1
Vulnrichment
Vulnrichment
added 2024/07/30 7:46 a.m.16 views

CVE-2024-42119 drm/amd/display: Skip finding free audio for unknown engine_id

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Skip finding free audio for unknown engineid WHY ENGINEIDUNKNOWN = -1 and can not be used as an array index. Plus, it also means it is uninitialized and does not need free audio. HOW Skip and return NULL. This...

6.9AI score0.00281EPSS
SaveExploits0References8
CVE
CVE
added 2024/07/30 7:46 a.m.124 views

CVE-2024-42119

The CVE-2024-42119 entry concerns a Linux kernel issue in drm/amd/display where the code pathSkip finding free audio for unknown engine_id (ENGINE_ID_UNKNOWN = -1) could be mishandled as an array index. The root cause is that ENGINE_ID_UNKNOWN is -1 and uninitialized, leading to unnecessary free ...

7.8CVSS6.7AI score0.00281EPSS
SaveExploits0References9Affected Software1
Debian CVE
Debian CVE
added 2024/07/30 7:46 a.m.21 views

CVE-2024-42119

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Skip finding free audio for unknown engineid WHY ENGINEIDUNKNOWN = -1 and can not be used as an array index. Plus, it also means it is uninitialized and does not need free audio. HOW Skip and return NULL. This...

7.8CVSS5.6AI score0.00281EPSS
SaveExploits0
OSV
OSV
added 2024/07/30 7:46 a.m.14 views

CVE-2024-42119 drm/amd/display: Skip finding free audio for unknown engine_id

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Skip finding free audio for unknown engineid WHY ENGINEIDUNKNOWN = -1 and can not be used as an array index. Plus, it also means it is uninitialized and does not need free audio. HOW Skip and return NULL. This...

6.2AI score
SaveExploits0References12
OSV
OSV
added 2024/07/30 7:46 a.m.12 views

CVE-2024-42118 drm/amd/display: Do not return negative stream id for array

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Do not return negative stream id for array WHY resourcestreamtostreamidx returns an array index and it return -1 when not found; however, -1 is not a valid array index number. HOW When this happens, call ASSERT,...

6.3AI score
SaveExploits0References5
Cvelist
Cvelist
added 2024/07/30 7:46 a.m.36 views

CVE-2024-42118 drm/amd/display: Do not return negative stream id for array

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Do not return negative stream id for array WHY resourcestreamtostreamidx returns an array index and it return -1 when not found; however, -1 is not a valid array index number. HOW When this happens, call ASSERT,...

0.00235EPSS
SaveExploits0References2
CVE
CVE
added 2024/07/30 7:46 a.m.94 views

CVE-2024-42118

CVE-2024-42118 – Linux kernel / drm/amd display : The issue arises in resource_stream_to_stream_idx where an array index can be -1 if not found. The code currently asserts and then returns 0, preventing a negative index and thereby avoiding an OVERRUN and NEGATIVE_RETURNS. Connected sources ident...

7.8CVSS6.6AI score0.00235EPSS
SaveExploits0References2Affected Software1
Debian CVE
Debian CVE
added 2024/07/30 7:46 a.m.38 views

CVE-2024-42118

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Do not return negative stream id for array WHY resourcestreamtostreamidx returns an array index and it return -1 when not found; however, -1 is not a valid array index number. HOW When this happens, call ASSERT,...

7.8CVSS5.3AI score0.00235EPSS
SaveExploits0
Vulnrichment
Vulnrichment
added 2024/07/30 7:46 a.m.15 views

CVE-2024-42117 drm/amd/display: ASSERT when failing to find index by plane/stream id

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: ASSERT when failing to find index by plane/stream id WHY finddispcfgidxbyplaneid and finddispcfgidxbystreamid returns an array index and they return -1 when not found; however, -1 is not a valid index number. HOW...

6.9AI score0.00233EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 2024/07/30 7:46 a.m.41 views

CVE-2024-42117

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: ASSERT when failing to find index by plane/stream id WHY finddispcfgidxbyplaneid and finddispcfgidxbystreamid returns an array index and they return -1 when not found; however, -1 is not a valid index number. HOW...

7.8CVSS5.3AI score0.00233EPSS
SaveExploits0
CVE
CVE
added 2024/07/30 7:46 a.m.123 views

CVE-2024-42117

CVE-2024-42117 affects the Linux kernel DRM/AMD display path. The root cause was that find_disp_cfg_idx_by_plane_id and find_disp_cfg_idx_by_stream_id could return -1 and that value was used as an index, causing overrun/negative-return conditions. The fix is to return a valid positive index or ta...

7.8CVSS6.5AI score0.00233EPSS
SaveExploits0References2Affected Software1
OSV
OSV
added 2024/07/30 7:46 a.m.18 views

CVE-2024-42117 drm/amd/display: ASSERT when failing to find index by plane/stream id

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: ASSERT when failing to find index by plane/stream id WHY finddispcfgidxbyplaneid and finddispcfgidxbystreamid returns an array index and they return -1 when not found; however, -1 is not a valid index number. HOW...

7.8CVSS6.2AI score
SaveExploits0References5
Cvelist
Cvelist
added 2024/07/30 7:46 a.m.37 views

CVE-2024-42117 drm/amd/display: ASSERT when failing to find index by plane/stream id

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: ASSERT when failing to find index by plane/stream id WHY finddispcfgidxbyplaneid and finddispcfgidxbystreamid returns an array index and they return -1 when not found; however, -1 is not a valid index number. HOW...

7.8CVSS0.00233EPSS
SaveExploits0References2
BDU FSTEC
BDU FSTEC
added 2024/07/30 12:00 a.m.14 views

The vulnerability of the dml_core_mode_programming function in the AMD Display kernel of the Linux operating system allows a hacker to compromise the accessibility of protected information.

The vulnerability of the dmlcoremodeprogramming function in the AMD Display kernel of the Linux operating system is related to the execution of operations outside the buffer in memory. Exploiting this vulnerability could allow an attacker to compromise the accessibility of protected information...

4.7CVSS6.5AI score0.00177EPSS
SaveExploits0References5Affected Software2
OpenVAS
OpenVAS
added 2024/07/30 12:00 a.m.29 views

Ubuntu: Security Advisory (USN-6923-1)

The remote host is missing an update for the SPDX-FileCopyrightText: 2024 Greenbone AG Some text descriptions might be excerpted from a referenced sources, and are Copyright C by the respective right holders. SPDX-License-Identifier: GPL-2.0-only ifdescription...

8.3CVSS7.8AI score0.00722EPSS
SaveExploits0References2
Rows per page
Query Builder