7.8 CVE-2024-49924

Enriched by CISA Patch
 

In the Linux kernel, the following vulnerability has been resolved: fbdev: pxafb: Fix possible use after free in pxafb_task() In the pxafb_probe function, it calls the pxafb_init_fbinfo function, after which &fbi->task is associated with pxafb_task. Moreover, within this pxafb_init_fbinfo function, the pxafb_blank function within the &pxafb_ops struct is capable of scheduling work. If we remove the module which will call pxafb_remove to make cleanup, it will call unregister_framebuffer function which can call do_unregister_framebuffer to free fbi->fb through put_fb_info(fb_info), while the work mentioned above will be used. The sequence of operations that may lead to a UAF bug is as follows: CPU0 CPU1 | pxafb_task pxafb_remove | unregister_framebuffer(info) | do_unregister_framebuffer(fb_info) | put_fb_info(fb_info) | // free fbi->fb | set_ctrlr_state(fbi, state) | __pxafb_lcd_power(fbi, 0) | fbi->lcd_power(on, &fbi->fb.var) | //use fbi->fb Fix it by ensuring that the work is canceled before proceeding with the cleanup in pxafb_remove. Note that only root user can remove the driver at runtime.
https://nvd.nist.gov/vuln/detail/CVE-2024-49924

Categories

CWE-416 : Use After Free
The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. If the product accesses a previously-freed pointer, then it means that a separate weakness or error already occurred previously, such as a race condition, an unexpected or poorly handled error condition, confusion over which part of the program is responsible for freeing the memory, performing the free too soon, etc. a pointer that no longer points to valid memory, often after it has been freed commonly used acronym for Use After Free Fuzz testing (fuzzing) is a powerful technique for generating large numbers of diverse inputs - either randomly or algorithmically - and dynamically invoking the code with those inputs. Even with random inputs, it is often capable of generating unexpected results such as crashes, memory corruption, or resource consumption. Fuzzing effectively produces repeatable test cases that clearly indicate bugs, which helps developers to diagnose the issues. Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.) Use tools that are integrated duringcompilation to insert runtime error-checking mechanismsrelated to memory safety errors, such as AddressSanitizer(ASan) for C/C++ [REF-1518]. Choose a language that provides automatic memory management. When freeing pointers, be sure to set them to NULL once they are freed. However, the utilization of multiple or complex data structures may lower the usefulness of this strategy. TCP/IP code for an OS has a use-after-free that can leak heap memory contents Chain: an operating system kernel has insufficent resource locking (CWE-413) leading to a use after free (CWE-416). Chain: two threads in a web browser use the same resource (CWE-366), but one of those threads can destroy the resource before the other has completed (CWE-416). Chain: mobile platform race condition (CWE-362) leading to use-after-free (CWE-416), as exploited in the wild per CISA KEV. Chain: race condition (CWE-362) leads to use-after-free (CWE-416), as exploited in the wild per CISA KEV. Use-after-free triggered by closing a connection while data is still being transmitted. Improper allocation for invalid data leads to use-after-free. certificate with a large number of Subject Alternate Names not properly handled in realloc, leading to use-after-free Timers are not disabled when a related object is deleted Access to a "dead" object that is being cleaned up object is deleted even with a non-zero reference count, and later accessed use-after-free involving request containing an invalid version number unload of an object that is currently being accessed by other functionality incorrectly tracking a reference count leads to use-after-free use-after-free related to use of uninitialized memory HTML document with incorrectly-nested tags Use after free in ActiveX object by providing a malformed argument to a method use-after-free by disconnecting during data transfer, or a message containing incorrect data types disconnect during a large data transfer causes incorrect reference count, leading to use-after-free use-after-free found by fuzzing Chain: race condition (CWE-362) from improper handling of a page transition in web client while an applet is loading (CWE-368) leads to use after free (CWE-416) realloc generates new buffer and pointer, but previous pointer is still retained, leading to use after free Use-after-free in web browser, probably resultant from not initializing memory. use-after-free when one thread accessed memory that was freed by another thread assignment of malformed values to certain properties triggers use after free mail server does not properly handle a long header. chain: integer overflow leads to use-after-free freed pointer dereference Chain: A multi-threaded race condition (CWE-367) allows attackers to cause two threads to process the same RPC request, which causes a use-after-free (CWE-416) in one thread

References


 

AFFECTED (from MITRE)


Vendor Product Versions
Linux Linux
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < e657fa2df4429f3805a9b3e47fb1a4a1b02a72bd [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < 6d0a07f68b66269e167def6c0b90a219cd3e7473 [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < e6897e299f57b103e999e62010b88e363b3eebae [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < 4cda484e584be34d55ee17436ebf7ad11922b97a [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < 3c0d416eb4bef705f699213cee94bf54b6acdacd [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < fdda354f60a576d52dcf90351254714681df4370 [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < aaadc0cb05c999ccd8898a03298b7e5c31509b08 [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < a3a855764dbacbdb1cc51e15dc588f2d21c93e0e [affected]
  • 9f17f2874834f4cdbe48cc05676d8f7558793204 < 4a6921095eb04a900e0000da83d9475eb958e61e [affected]
Linux Linux
  • 2.6.27 [affected]
  • < 2.6.27 [unaffected]
  • 4.19.323 ≤ 4.19.* [unaffected]
  • 5.4.285 ≤ 5.4.* [unaffected]
  • 5.10.227 ≤ 5.10.* [unaffected]
  • 5.15.168 ≤ 5.15.* [unaffected]
  • 6.1.113 ≤ 6.1.* [unaffected]
  • 6.6.55 ≤ 6.6.* [unaffected]
  • 6.10.14 ≤ 6.10.* [unaffected]
  • 6.11.3 ≤ 6.11.* [unaffected]
  • 6.12 ≤ * [unaffected]
© 2022 The MITRE Corporation. This work is reproduced and distributed with the permission of The MITRE Corporation.

CPE

cpe start end
Configuration 1
cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 2.6.27 < 4.19.323
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 4.20 < 5.4.285
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 5.5 < 5.10.227
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 5.11 < 5.15.168
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 5.16 < 6.1.113
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 6.2 < 6.6.55
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 6.7 < 6.10.14
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* >= 6.11 < 6.11.3


REMEDIATION


Patch

Url
https://git.kernel.org/stable/c/3c0d416eb4bef705f699213cee94bf54b6acdacd
https://git.kernel.org/stable/c/4a6921095eb04a900e0000da83d9475eb958e61e
https://git.kernel.org/stable/c/4cda484e584be34d55ee17436ebf7ad11922b97a
https://git.kernel.org/stable/c/6d0a07f68b66269e167def6c0b90a219cd3e7473
https://git.kernel.org/stable/c/a3a855764dbacbdb1cc51e15dc588f2d21c93e0e
https://git.kernel.org/stable/c/aaadc0cb05c999ccd8898a03298b7e5c31509b08
https://git.kernel.org/stable/c/e657fa2df4429f3805a9b3e47fb1a4a1b02a72bd
https://git.kernel.org/stable/c/e6897e299f57b103e999e62010b88e363b3eebae
https://git.kernel.org/stable/c/fdda354f60a576d52dcf90351254714681df4370


EXPLOITS


Exploit-db.com

id description date
No known exploits

POC Github

Url
No known exploits

Other Nist (github, ...)

Url
No known exploits


CAPEC


Common Attack Pattern Enumerations and Classifications

id description severity
No entry