CVE-2026-64041
7.8
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Summary
In the Linux kernel, the following vulnerability has been resolved:
ASoC: codecs: fs210x: fix possible buffer overflow
In fs210x_effect_scene_info(), a string was copied like this:
strscpy(DST, SRC, strlen(SRC) + 1);
A buffer overflow would happen if strlen(SRC) >= sizeof(DST). Actually, strscpy() must be used this way:
strscpy(DST, SRC, sizeof(DST));
strscpy(DST, SRC); // defaults to sizeof(DST)
Affected Software
| Vendor | Product | Version Range | Status |
|---|---|---|---|
| Linux | Linux | 75611770177965ae902c87c96eace07542beff07 < 1ddf678bb75b6383c775ece61d40956c441d8a26 | affected |
| Linux | Linux | 75611770177965ae902c87c96eace07542beff07 < 6daefdf1cd3c56483f61970a76c0ad6028e4118f | affected |
| Linux | Linux | 75611770177965ae902c87c96eace07542beff07 < 0d435a7ebcd4e97e47673c1ab6fb27f973a053ec | affected |
| Linux | Linux | 6.18 | affected |
| Linux | Linux | 0 < 6.18 | unaffected |
| Linux | Linux | 6.18.34 <= 6.18.* | unaffected |
| Linux | Linux | 7.0.11 <= 7.0.* | unaffected |
| Linux | Linux | 7.1 <= * | unaffected |
Weaknesses
References
- https://git.kernel.org/stable/c/1ddf678bb75b6383c775ece61d40956c441d8a26
- https://git.kernel.org/stable/c/6daefdf1cd3c56483f61970a76c0ad6028e4118f
- https://git.kernel.org/stable/c/0d435a7ebcd4e97e47673c1ab6fb27f973a053ec
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.