CVE Vulnerabilities

CVE-2023-1393

Use After Free

Published: Mar 30, 2023 | Modified: Nov 07, 2023
CVSS 3.x
7.8
HIGH
Source:
NVD
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
7.8 IMPORTANT
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Ubuntu
MEDIUM

A flaw was found in X.Org Server Overlay Window. A Use-After-Free may lead to local privilege escalation. If a client explicitly destroys the compositor overlay window (aka COW), the Xserver would leave a dangling pointer to that window in the CompScreen structure, which will trigger a use-after-free later.

Weakness

Referencing memory after it has been freed can cause a program to crash, use unexpected values, or execute code.

Affected Software

Name Vendor Start Version End Version
Xorg-server X.org * 21.1.8 (excluding)
Red Hat Enterprise Linux 7 RedHat tigervnc-0:1.8.0-25.el7_9 *
Red Hat Enterprise Linux 7 RedHat xorg-x11-server-0:1.20.4-23.el7_9 *
Red Hat Enterprise Linux 8 RedHat tigervnc-0:1.12.0-9.el8_7.3 *
Red Hat Enterprise Linux 8 RedHat xorg-x11-server-0:1.20.11-17.el8 *
Red Hat Enterprise Linux 8 RedHat xorg-x11-server-Xwayland-0:21.1.3-12.el8 *
Red Hat Enterprise Linux 8.1 Update Services for SAP Solutions RedHat tigervnc-0:1.9.0-16.el8_1.3 *
Red Hat Enterprise Linux 8.2 Advanced Update Support RedHat tigervnc-0:1.9.0-15.el8_2.3 *
Red Hat Enterprise Linux 8.2 Telecommunications Update Service RedHat tigervnc-0:1.9.0-15.el8_2.3 *
Red Hat Enterprise Linux 8.2 Update Services for SAP Solutions RedHat tigervnc-0:1.9.0-15.el8_2.3 *
Red Hat Enterprise Linux 8.4 Extended Update Support RedHat tigervnc-0:1.11.0-8.el8_4.2 *
Red Hat Enterprise Linux 8.6 Extended Update Support RedHat tigervnc-0:1.12.0-6.el8_6.3 *
Red Hat Enterprise Linux 9 RedHat tigervnc-0:1.12.0-5.el9_1.2 *
Red Hat Enterprise Linux 9 RedHat xorg-x11-server-0:1.20.11-19.el9 *
Red Hat Enterprise Linux 9 RedHat xorg-x11-server-Xwayland-0:22.1.9-2.el9 *
Red Hat Enterprise Linux 9.0 Extended Update Support RedHat tigervnc-0:1.11.0-22.el9_0.2 *
Tigervnc Ubuntu bionic *
Tigervnc Ubuntu focal *
Tigervnc Ubuntu jammy *
Tigervnc Ubuntu lunar *
Tigervnc Ubuntu mantic *
Tigervnc Ubuntu trusty *
Tigervnc Ubuntu xenial *
Xorg-server Ubuntu bionic *
Xorg-server Ubuntu devel *
Xorg-server Ubuntu focal *
Xorg-server Ubuntu jammy *
Xorg-server Ubuntu kinetic *
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 *
Xwayland Ubuntu devel *
Xwayland Ubuntu jammy *
Xwayland Ubuntu kinetic *
Xwayland Ubuntu lunar *
Xwayland Ubuntu mantic *
Xwayland Ubuntu noble *
Xwayland Ubuntu oracular *

Extended Description

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.

Potential Mitigations

References