In the Linux kernel, the following vulnerability has been...
Moderate severity
Unreviewed
Published
Oct 15, 2025
to the GitHub Advisory Database
•
Updated Feb 3, 2026
Description
Published by the National Vulnerability Database
Oct 15, 2025
Published to the GitHub Advisory Database
Oct 15, 2025
Last updated
Feb 3, 2026
In the Linux kernel, the following vulnerability has been resolved:
fbcon: fix integer overflow in fbcon_do_set_font
Fix integer overflow vulnerabilities in fbcon_do_set_font() where font
size calculations could overflow when handling user-controlled font
parameters.
The vulnerabilities occur when:
multiplication with user-controlled values that can overflow.
overflows during font data copying.
Add explicit overflow checking using check_mul_overflow() and
check_add_overflow() kernel helpers to safety validate all size
calculations before allocation.
References