VYPR
Unrated severityNVD Advisory· Published Dec 30, 2025· Updated Apr 15, 2026

CVE-2023-54198

CVE-2023-54198

Description

In the Linux kernel, the following vulnerability has been resolved:

tty: fix out-of-bounds access in tty_driver_lookup_tty()

When specifying an invalid console= device like console=tty3270, tty_driver_lookup_tty() returns the tty struct without checking whether index is a valid number.

To reproduce:

qemu-system-x86_64 -enable-kvm -nographic -serial mon:stdio \ -kernel ../linux-build-x86/arch/x86/boot/bzImage \ -append "console=ttyS0 console=tty3270"

This crashes with:

[ 0.770599] BUG: kernel NULL pointer dereference, address: 00000000000000ef [ 0.771265] #PF: supervisor read access in kernel mode [ 0.771773] #PF: error_code(0x0000) - not-present page [ 0.772609] Oops: 0000 [#1] PREEMPT SMP PTI [ 0.774878] RIP: 0010:tty_open+0x268/0x6f0 [ 0.784013] chrdev_open+0xbd/0x230 [ 0.784444] ? cdev_device_add+0x80/0x80 [ 0.784920] do_dentry_open+0x1e0/0x410 [ 0.785389] path_openat+0xca9/0x1050 [ 0.785813] do_filp_open+0xaa/0x150 [ 0.786240] file_open_name+0x133/0x1b0 [ 0.786746] filp_open+0x27/0x50 [ 0.787244] console_on_rootfs+0x14/0x4d [ 0.787800] kernel_init_freeable+0x1e4/0x20d [ 0.788383] ? rest_init+0xc0/0xc0 [ 0.788881] kernel_init+0x11/0x120 [ 0.789356] ret_from_fork+0x22/0x30

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

Out-of-bounds access in tty_driver_lookup_tty() in Linux kernel due to missing index validation when an invalid console= device is specified.

Vulnerability

In the Linux kernel, an out-of-bounds access vulnerability exists in the tty_driver_lookup_tty() function. When an invalid console= device string (e.g., console=tty3270) is specified during boot, the function returns a tty struct without verifying that the index is within valid bounds. This can lead to a NULL pointer dereference and system crash [1][2][3].

Exploitation

The attack vector is local, requiring the ability to pass kernel boot parameters. An attacker with access to the boot loader configuration or kernel command line can trigger the vulnerability by setting an invalid console device. No authentication is needed as boot parameters are set before user login.

Impact

Successful exploitation results in a denial of service, as demonstrated by a kernel NULL pointer dereference and subsequent system crash. The crash occurs during early boot when the kernel attempts to open the console device.

Mitigation

The vulnerability has been fixed in the Linux kernel stable releases. Patches are available in the Git repository [1][2][3]. Affected systems should update to the latest stable kernel version to mitigate the issue.

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected products

1

Patches

8

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

8

News mentions

0

No linked articles in our index yet.