Lucene search
+L

7689 matches found

Cvelist
Cvelist
added 2024/10/21 6:01 p.m.24 views

CVE-2024-49917 drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs in dcn30_init_hw

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for clkmgr and clkmgr-funcs in dcn30inithw This commit addresses a potential null pointer dereference issue in the dcn30inithw function. The issue could occur when dc-clkmgr or dc-clkmgr-funcs is...

0.00238EPSS
SaveExploits0References5
CVE
CVE
added 2024/10/21 6:01 p.m.127 views

CVE-2024-49916

CVE-2024-49916 affects the Linux kernel’s drm/amd/display code (dcn401_init_hw). The root cause is a potential null pointer dereference when dc->clk_mgr or dc->clk_mgr->funcs is null. The fix adds explicit null checks before dereferencing clk_mgr/clk_mgr->funcs, preventing dereference...

5.5CVSS5.2AI score0.00208EPSS
SaveExploits0References2Affected Software1
CVE
CVE
added 2024/10/21 6:01 p.m.151 views

CVE-2024-49914

CVE-2024-49914 affects the Linux kernel DRM/AMD display path. A null pointer dereference could occur in dcn20_program_pipe when pipe_ctx->plane_state is null; a patch adds a guard to verify pipe_ctx->plane_state is non-null before access. This stabilizes display pipe programming and prevent...

5.5CVSS6.4AI score0.00244EPSS
SaveExploits0References3Affected Software1
Vulnrichment
Vulnrichment
added 2024/10/21 6:01 p.m.12 views

CVE-2024-49914 drm/amd/display: Add null check for pipe_ctx->plane_state in dcn20_program_pipe

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add null check for pipectx-planestate in dcn20programpipe This commit addresses a null pointer dereference issue in the dcn20programpipe function. The issue could occur when pipectx-planestate is null. The fix ad...

6.8AI score0.00244EPSS
SaveExploits0References3
CVE
CVE
added 2024/10/21 6:01 p.m.139 views

CVE-2024-49915

CVE-2024-49915 concerns the Linux kernel DRM AMD display driver. A null pointer dereference could occur in drm/amd/display during dcn32_init_hw if dc->clk_mgr is null. The fix adds an explicit NULL check before invoking clk_mgr functions, preventing dereferencing a null pointer. Public referen...

5.5CVSS6.4AI score0.00238EPSS
SaveExploits0References6Affected Software1
CVE
CVE
added 2024/10/21 6:01 p.m.153 views

CVE-2024-49913

CVE-2024-49913 affects the Linux kernel’s DRM AMD display path. The issue was a potential NULL pointer dereference in commit_planes_for_stream when top_pipe_to_program could be NULL, leading to dereferencing stream_res. The fix adds a null check before accessing top_pipe_to_program to prevent the...

5.5CVSS6.8AI score0.00248EPSS
SaveExploits0References9Affected Software1
Vulnrichment
Vulnrichment
added 2024/10/21 6:01 p.m.13 views

CVE-2024-49913 drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add null check for toppipetoprogram in commitplanesforstream This commit addresses a null pointer dereference issue in the commitplanesforstream function at line 4140. The issue could occur when toppipetoprogram ...

6.8AI score0.00248EPSS
SaveExploits0References7
Cvelist
Cvelist
added 2024/10/21 6:01 p.m.28 views

CVE-2024-49913 drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add null check for toppipetoprogram in commitplanesforstream This commit addresses a null pointer dereference issue in the commitplanesforstream function at line 4140. The issue could occur when toppipetoprogram ...

0.00248EPSS
SaveExploits0References7
Vulnrichment
Vulnrichment
added 2024/10/21 6:01 p.m.17 views

CVE-2024-49912 drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream'

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Handle null 'streamstatus' in 'planeschangedforexistingstream' This commit adds a null check for 'streamstatus' in the function 'planeschangedforexistingstream'. Previously, the code assumed 'streamstatus' could ...

7AI score0.00238EPSS
SaveExploits0References5
CVE
CVE
added 2024/10/21 6:01 p.m.141 views

CVE-2024-49912

The CVE-2024-49912 entry concerns a Linux kernel DRM/AMD display issue. A null pointer dereference risk existed in drm/amd/display within planes_changed_for_existing_stream when stream_status could be null. The published fix adds a null check for stream_status in planes_changed_for_existing_strea...

5.5CVSS5.2AI score0.00238EPSS
SaveExploits0References6Affected Software1
OSV
OSV
added 2024/10/21 6:01 p.m.13 views

CVE-2024-49912 drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream'

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Handle null 'streamstatus' in 'planeschangedforexistingstream' This commit adds a null check for 'streamstatus' in the function 'planeschangedforexistingstream'. Previously, the code assumed 'streamstatus' could ...

6.1AI score
SaveExploits0References9
OSV
OSV
added 2024/10/21 6:01 p.m.13 views

CVE-2024-49911 drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn20setoutputtransferfunc This commit adds a null check for the setoutputgamma function pointer in the dcn20setoutputtransferfunc function. Previously, setoutputgamma was...

6AI score
SaveExploits0References9
Vulnrichment
Vulnrichment
added 2024/10/21 6:01 p.m.19 views

CVE-2024-49910 drm/amd/display: Add NULL check for function pointer in dcn401_set_output_transfer_func

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn401setoutputtransferfunc This commit adds a null check for the setoutputgamma function pointer in the dcn401setoutputtransferfunc function. Previously, setoutputgamma was...

6.8AI score0.00208EPSS
SaveExploits0References2
CVE
CVE
added 2024/10/21 6:01 p.m.137 views

CVE-2024-49908

CVE-2024-49908: In the Linux kernel, the AMDGPU display driver (amdgpu_dm) had a missing null check for theafb in amdgpu_dm_update_cursor, risking a null pointer dereference. The fix adds a null check and moves the check to the point of use (line where afb is accessed). Affects drm/amd/display co...

5.5CVSS5.2AI score0.00206EPSS
SaveExploits0References2Affected Software1
Cvelist
Cvelist
added 2024/10/21 6:01 p.m.27 views

CVE-2024-49909 drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn32setoutputtransferfunc This commit adds a null check for the setoutputgamma function pointer in the dcn32setoutputtransferfunc function. Previously, setoutputgamma was...

0.00238EPSS
SaveExploits0References5
Cvelist
Cvelist
added 2024/10/21 6:01 p.m.24 views

CVE-2024-49907 drm/amd/display: Check null pointers before using dc->clk_mgr

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null pointers before using dc-clkmgr WHY & HOW dc-clkmgr is null checked previously in the same function, indicating it might be null. Passing "dc" to "dc-hwss.applyidlepoweroptimizations", which dereferenc...

0.00243EPSS
SaveExploits0References7
CVE
CVE
added 2024/10/21 6:01 p.m.139 views

CVE-2024-49907

CVE-2024-49907 : Linux kernel DRM/AMD display vulnerability where a NULL dereference can occur by dereferencing dc->clk_mgr in the idle-power path if it is NULL. The fix adds a NULL check before calling dc->hwss.apply_idle_power_optimizations (which may call dcn35_apply_idle_power_optimizat...

5.5CVSS5.1AI score0.00243EPSS
SaveExploits0References9Affected Software1
OSV
OSV
added 2024/10/21 6:01 p.m.10 views

CVE-2024-49907 drm/amd/display: Check null pointers before using dc->clk_mgr

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null pointers before using dc-clkmgr WHY & HOW dc-clkmgr is null checked previously in the same function, indicating it might be null. Passing "dc" to "dc-hwss.applyidlepoweroptimizations", which dereferenc...

6.2AI score
SaveExploits0References12
Cvelist
Cvelist
added 2024/10/21 6:01 p.m.31 views

CVE-2024-49906 drm/amd/display: Check null pointer before try to access it

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null pointer before try to access it why & how Change the order of the pipectx-planestate check to ensure that planestate is not null before accessing it...

0.00244EPSS
SaveExploits0References3
CVE
CVE
added 2024/10/21 6:01 p.m.135 views

CVE-2024-49906

CVE-2024-49906 has concrete remediation on Root OS (rootio-linux) for Ubuntu 22.04 and Debian 11/12. The OSV entries indicate Root has patched CVE-2024-49906 in the rootio-linux package across multiple distributions with multiple fixed versions available. Ubuntu Security Notices and Debian/Ubuntu...

5.5CVSS6.5AI score0.00244EPSS
SaveExploits0References3Affected Software1
Rows per page
Query Builder