CVE Vulnerabilities

CVE-2019-11756

Use After Free

Published: Jan 08, 2020 | Modified: Jan 13, 2020
CVSS 3.x
8.8
HIGH
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
CVSS 2.x
6.8 MEDIUM
AV:N/AC:M/Au:N/C:P/I:P/A:P
RedHat/V2
RedHat/V3
7.1 MODERATE
CVSS:3.0/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
Ubuntu
MEDIUM

Improper refcounting of soft token session objects could cause a use-after-free and crash (likely limited to a denial of service). This vulnerability affects Firefox < 71.

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
Firefox Mozilla * 71.0 (excluding)
Red Hat Enterprise Linux 7 RedHat nspr-0:4.25.0-2.el7_9 *
Red Hat Enterprise Linux 7 RedHat nss-0:3.53.1-3.el7_9 *
Red Hat Enterprise Linux 7 RedHat nss-softokn-0:3.53.1-6.el7_9 *
Red Hat Enterprise Linux 7 RedHat nss-util-0:3.53.1-1.el7_9 *
Red Hat Enterprise Linux 7.4 Advanced Update Support RedHat nss-softokn-0:3.28.3-10.el7_4 *
Red Hat Enterprise Linux 7.4 Telco Extended Update Support RedHat nss-softokn-0:3.28.3-10.el7_4 *
Red Hat Enterprise Linux 7.4 Update Services for SAP Solutions RedHat nss-softokn-0:3.28.3-10.el7_4 *
Red Hat Enterprise Linux 7.6 Extended Update Support RedHat nss-0:3.36.0-9.el7_6 *
Red Hat Enterprise Linux 7.6 Extended Update Support RedHat nss-softokn-0:3.36.0-7.el7_6 *
Red Hat Enterprise Linux 7.7 Extended Update Support RedHat nss-softokn-0:3.44.0-9.el7_7 *
Red Hat Enterprise Linux 8 RedHat nspr-0:4.25.0-2.el8_2 *
Red Hat Enterprise Linux 8 RedHat nss-0:3.53.1-11.el8_2 *
Red Hat OpenShift Do RedHat openshiftdo/odo-init-image-rhel7:1.1.3-2 *
Firefox Ubuntu bionic *
Firefox Ubuntu devel *
Firefox Ubuntu disco *
Firefox Ubuntu eoan *
Firefox Ubuntu focal *
Firefox Ubuntu groovy *
Firefox Ubuntu hirsute *
Firefox Ubuntu impish *
Firefox Ubuntu jammy *
Firefox Ubuntu kinetic *
Firefox Ubuntu lunar *
Firefox Ubuntu mantic *
Firefox Ubuntu noble *
Firefox Ubuntu trusty *
Firefox Ubuntu upstream *
Firefox Ubuntu xenial *
Mozjs38 Ubuntu bionic *
Mozjs38 Ubuntu esm-apps/bionic *
Mozjs38 Ubuntu upstream *
Mozjs52 Ubuntu bionic *
Mozjs52 Ubuntu disco *
Mozjs52 Ubuntu eoan *
Mozjs52 Ubuntu esm-apps/focal *
Mozjs52 Ubuntu esm-infra/bionic *
Mozjs52 Ubuntu focal *
Mozjs52 Ubuntu groovy *
Mozjs52 Ubuntu upstream *
Mozjs60 Ubuntu disco *
Mozjs60 Ubuntu eoan *
Mozjs60 Ubuntu upstream *

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