CVE-2026-23472
Last modified
CVE-2026-23472 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: serial: core: fix infinite loop in handle_tx() for PORT_UNKNOWN uart_write_room() and uart_write() behave inconsistently when xmit_buf is NULL (which happens for PORT_UNKNOWN ports that were never properly initialized): - uart_write_room() returns kfifo_avail() which can be > 0 - uart_write() checks xmit_buf and returns 0 if NULL This inconsistency causes an infinite loop in drivers that rely on tty_write_room() to determine if they can write: while (tty_write_room(tty) > 0) { written = tty->ops->write(...); // written is always 0, loop never exits } For example, caif_serial's handle_tx() enters an infinite loop when used with PORT_UNKNOWN serial ports, causing system hangs. Fix by making uart_write_room() also check xmit_buf and return 0 if it's NULL, consistent with uart_write(). Reproducer: https://gist.github.com/mrpre/d9a694cc0e19828ee3bc3b37983fde13. EPSS estimates a 0.12% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: serial: core: fix infinite loop in handle_tx() for PORT_UNKNOWN uart_write_room() and uart_write() behave inconsistently when xmit_buf is NULL (which happens for PORT_UNKNOWN ports that were never properly initialized): - uart_write_room() returns kfifo_avail() which can be > 0 - uart_write() checks xmit_buf and returns 0 if NULL This inconsistency causes an infinite loop in drivers that rely on tty_write_room() to determine if they can write: while (tty_write_room(tty) > 0) { written = tty->ops->write(...); // written is always 0, loop never exits } For example, caif_serial's handle_tx() enters an infinite loop when used with PORT_UNKNOWN serial ports, causing system hangs. Fix by making uart_write_room() also check xmit_buf and return 0 if it's NULL, consistent with uart_write(). Reproducer: https://gist.github.com/mrpre/d9a694cc0e19828ee3bc3b37983fde13
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 2.6.12.1, < 6.18.20 | — |
| Linux | Linux Kernel | >= 6.19, < 6.19.10 | — |
| Linux | Linux Kernel | 2.6.12 | — |
| Linux | Linux Kernel | 7.0 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-23472?
How severe is CVE-2026-23472?
How do I fix CVE-2026-23472?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-23467In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-23468In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-23469In the Linux kernel, the following vulnerability has been re…4.7
- CVE-2026-2347Authorization bypass through User-Controlled key vulnerabili…9.8
- CVE-2026-23470In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-23471Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-23473Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-23474In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-23475In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-23476FacturaScripts is open-source enterprise resource planning a…5.4
- CVE-2026-23477Rocket.Chat is an open-source, secure, fully customizable co…6.5
- CVE-2026-23478Cal.com is open-source scheduling software. From 3.1.6 to be…9.8
Are you affected by CVE-2026-23472?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
