In FreeBSD 12.2-STABLE before r367402, 11.4-STABLE before r368202, 12.2-RELEASE before p1, 12.1-RELEASE before p11 and 11.4-RELEASE before p5 the handler for a routing option caches a pointer into the packet buffer holding the ICMPv6 message. However, when processing subsequent options the packet buffer may be freed, rendering the cached pointer invalid. The network stack may later dereference the pointer, potentially triggering a use-after-free.
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 |
---|---|---|---|
Freebsd | Freebsd | 11.4 (including) | 11.4 (including) |
Freebsd | Freebsd | 11.4-beta1 (including) | 11.4-beta1 (including) |
Freebsd | Freebsd | 11.4-p1 (including) | 11.4-p1 (including) |
Freebsd | Freebsd | 11.4-p2 (including) | 11.4-p2 (including) |
Freebsd | Freebsd | 11.4-p3 (including) | 11.4-p3 (including) |
Freebsd | Freebsd | 11.4-p4 (including) | 11.4-p4 (including) |
Freebsd | Freebsd | 11.4-rc1 (including) | 11.4-rc1 (including) |
Freebsd | Freebsd | 11.4-rc2 (including) | 11.4-rc2 (including) |
Freebsd | Freebsd | 12.1 (including) | 12.1 (including) |
Freebsd | Freebsd | 12.1-p10 (including) | 12.1-p10 (including) |
Freebsd | Freebsd | 12.1-p2 (including) | 12.1-p2 (including) |
Freebsd | Freebsd | 12.1-p3 (including) | 12.1-p3 (including) |
Freebsd | Freebsd | 12.1-p4 (including) | 12.1-p4 (including) |
Freebsd | Freebsd | 12.1-p5 (including) | 12.1-p5 (including) |
Freebsd | Freebsd | 12.1-p6 (including) | 12.1-p6 (including) |
Freebsd | Freebsd | 12.1-p7 (including) | 12.1-p7 (including) |
Freebsd | Freebsd | 12.1-p8 (including) | 12.1-p8 (including) |
Freebsd | Freebsd | 12.1-p9 (including) | 12.1-p9 (including) |
Freebsd | Freebsd | 12.2 (including) | 12.2 (including) |
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.