CVE-2024-38621
Published: Jun 21, 2024
Modified: May 11, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: media: stk1160: fix bounds checking in stk1160_copy_video() The subtract in this condition is reversed. The ->length is the length of the buffer. The ->bytesused is how many bytes we have copied thus far. When the condition is reversed that means the result of the subtraction is always negative but since it's unsigned then the result is a very high positive value. That means the overflow check is never true. Additionally, the ->bytesused doesn't actually work for this purpose because we're not writing to "buf->mem + buf->bytesused". Instead, the math to calculate the destination where we are writing is a bit involved. You calculate the number of full lines already written, multiply by two, skip a line if necessary so that we start on an odd numbered line, and add the offset into the line. To fix this buffer overflow, just take the actual destination where we are writing, if the offset is already out of bounds print an error and return. Otherwise, write up to buf->length bytes.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 9cb2173e6ea8f2948bd1367c93083a2500fcf08f - < f6a392266276730bea893b55d12940e32a25f56aaffected 9cb2173e6ea8f2948bd1367c93083a2500fcf08f - < ecf4ddc3aee8ade504c4d36b7b4053ce6093e200affected 9cb2173e6ea8f2948bd1367c93083a2500fcf08f - < a16775828aaed1c54ff4e6fe83e8e4d5c6a50cb7affected 9cb2173e6ea8f2948bd1367c93083a2500fcf08f - < 7532bcec0797adfa08791301c3bcae14141db3bdaffected 9cb2173e6ea8f2948bd1367c93083a2500fcf08f - < b504518a397059e1d55c521ba0ea2b545a6c4b52+3 more versions |
Linux | Linux | affected 3.7unaffected 0 - < 3.7unaffected 4.19.316 - <= 4.19.*unaffected 5.4.278 - <= 5.4.*unaffected 5.10.219 - <= 5.10.*+5 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now