During TLS 1.2 exchanges, handshake hashes are generated which point to a message buffer. This saved data is used for later messages but in some cases, the handshake transcript can exceed the space available in the current buffer, causing the allocation of a new buffer. This leaves a pointer pointing to the old, freed buffer, resulting in a use-after-free when handshake hashes are then calculated afterwards. This can result in a potentially exploitable crash. This vulnerability affects Firefox < 56, Firefox ESR < 52.4, and Thunderbird < 52.4.
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 |
---|---|---|---|
Firefox | Mozilla | 52.4.0 (including) | 52.4.0 (including) |
Firefox | Mozilla | 56.0 (including) | 56.0 (including) |
Thunderbird | Mozilla | 52.4.0 (including) | 52.4.0 (including) |
Red Hat Enterprise Linux 6 | RedHat | nss-0:3.28.4-4.el6_9 | * |
Red Hat Enterprise Linux 7 | RedHat | nss-0:3.28.4-12.el7_4 | * |
Firefox | Ubuntu | artful | * |
Firefox | Ubuntu | bionic | * |
Firefox | Ubuntu | cosmic | * |
Firefox | Ubuntu | devel | * |
Firefox | Ubuntu | trusty | * |
Firefox | Ubuntu | upstream | * |
Firefox | Ubuntu | xenial | * |
Firefox | Ubuntu | zesty | * |
Nss | Ubuntu | artful | * |
Nss | Ubuntu | bionic | * |
Nss | Ubuntu | cosmic | * |
Nss | Ubuntu | devel | * |
Nss | Ubuntu | trusty | * |
Nss | Ubuntu | xenial | * |
Nss | Ubuntu | zesty | * |
Thunderbird | Ubuntu | artful | * |
Thunderbird | Ubuntu | bionic | * |
Thunderbird | Ubuntu | cosmic | * |
Thunderbird | Ubuntu | devel | * |
Thunderbird | Ubuntu | trusty | * |
Thunderbird | Ubuntu | upstream | * |
Thunderbird | Ubuntu | xenial | * |
Thunderbird | Ubuntu | zesty | * |
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.