A use-after-free flaw was found in the xorg-x11-server. An X server crash may occur in a very specific and legacy configuration (a multi-screen setup with multiple protocol screens, also known as Zaphod mode) if the pointer is warped from within a window on one screen to the root window of the other screen and if the original window is destroyed followed by another window being destroyed.
Referencing memory after it has been freed can cause a program to crash, use unexpected values, or execute code.
Name | Vendor | Start Version | End Version |
---|---|---|---|
X_server | X.org | * | 21.1.9 (excluding) |
Xwayland | X.org | * | 23.2.2 (excluding) |
Red Hat Enterprise Linux 7 | RedHat | tigervnc-0:1.8.0-26.el7_9 | * |
Red Hat Enterprise Linux 8 | RedHat | xorg-x11-server-0:1.20.11-22.el8 | * |
Red Hat Enterprise Linux 8 | RedHat | tigervnc-0:1.13.1-8.el8 | * |
Red Hat Enterprise Linux 9 | RedHat | xorg-x11-server-0:1.20.11-24.el9 | * |
Red Hat Enterprise Linux 9 | RedHat | tigervnc-0:1.13.1-8.el9 | * |
Xorg | Ubuntu | bionic | * |
Xorg | Ubuntu | trusty | * |
Xorg | Ubuntu | xenial | * |
Xorg-server | Ubuntu | bionic | * |
Xorg-server | Ubuntu | devel | * |
Xorg-server | Ubuntu | esm-infra/bionic | * |
Xorg-server | Ubuntu | esm-infra/xenial | * |
Xorg-server | Ubuntu | focal | * |
Xorg-server | Ubuntu | jammy | * |
Xorg-server | Ubuntu | lunar | * |
Xorg-server | Ubuntu | mantic | * |
Xorg-server | Ubuntu | noble | * |
Xorg-server | Ubuntu | oracular | * |
Xorg-server | Ubuntu | trusty | * |
Xorg-server | Ubuntu | trusty/esm | * |
Xorg-server | Ubuntu | upstream | * |
Xorg-server | Ubuntu | xenial | * |
Xorg-server-hwe-16.04 | Ubuntu | xenial | * |
Xorg-server-hwe-18.04 | Ubuntu | bionic | * |
Xorg-server-lts-utopic | Ubuntu | trusty | * |
Xorg-server-lts-vivid | Ubuntu | trusty | * |
Xorg-server-lts-wily | Ubuntu | trusty | * |
Xorg-server-lts-xenial | Ubuntu | trusty | * |
The use of previously-freed memory can have any number of adverse consequences, ranging from the corruption of valid data to the execution of arbitrary code, depending on the instantiation and timing of the flaw. The simplest way data corruption may occur involves the system’s reuse of the freed memory. Use-after-free errors have two common and sometimes overlapping causes:
In this scenario, the memory in question is allocated to another pointer validly at some point after it has been freed. The original pointer to the freed memory is used again and points to somewhere within the new allocation. As the data is changed, it corrupts the validly used memory; this induces undefined behavior in the process. If the newly allocated data happens to hold a class, in C++ for example, various function pointers may be scattered within the heap data. If one of these function pointers is overwritten with an address to valid shellcode, execution of arbitrary code can be achieved.