Lucene search

K
redhatcveRedhat.comRH:CVE-2024-36957
HistoryJun 03, 2024 - 2:04 p.m.

CVE-2024-36957

2024-06-0314:04:33
redhat.com
access.redhat.com
11
cve-2024-36957
linux kernel
octeontx2-af
off-by-one read
vulnerability
resolved

AI Score

6.5

Confidence

Low

EPSS

0

Percentile

10.3%

In the Linux kernel, the following vulnerability has been resolved: octeontx2-af: avoid off-by-one read from userspace We try to access count + 1 byte from userspace with memdup_user(buffer, count + 1). However, the userspace only provides buffer of count bytes and only these count bytes are verified to be okay to access. To ensure the copied buffer is NUL terminated, we use memdup_user_nul instead.