mirror of
https://github.com/0xMarcio/cve.git
synced 2025-11-28 18:48:49 +00:00
1.0 KiB
1.0 KiB
CVE-2024-38541
Description
In the Linux kernel, the following vulnerability has been resolved:of: module: add buffer overflow check in of_modalias()In of_modalias(), if the buffer happens to be too small even for the 1stsnprintf() call, the len parameter will become negative and str parameter(if not NULL initially) will point beyond the buffer's end. Add the bufferoverflow check after the 1st snprintf() call and fix such check after thestrlen() call (accounting for the terminating NUL char).
POC
Reference
No PoCs from references.