6.5 CVE-2025-31235

Enriched by CISA
 

A double free issue was addressed with improved memory management. This issue is fixed in iPadOS 17.7.7, macOS Ventura 13.7.6, macOS Sequoia 15.5, macOS Sonoma 14.7.6. An app may be able to cause unexpected system termination.
https://nvd.nist.gov/vuln/detail/CVE-2025-31235

Categories

CWE-415 : Double Free
The product calls free() twice on the same memory address. 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. Ensure that each allocation is freed only once. After freeing a chunk, set the pointer to NULL to ensure the pointer cannot be freed again. In complicated error conditions, be sure that clean-up routines respect the state of allocation properly. If the language is object oriented, ensure that object destructors delete each chunk of memory only once. Use a static analysis tool to find double free instances. Chain: Signal handler contains too much functionality (CWE-828), introducing a race condition (CWE-362) that leads to a double free (CWE-415). Double free resultant from certain error conditions. Double free resultant from certain error conditions. Double free resultant from certain error conditions. Double free from invalid ASN.1 encoding. Double free from malformed GIF. Double free from malformed GIF. Double free from malformed compressed data.

References


 

AFFECTED (from MITRE)


Vendor Product Versions
Apple macOS
  • unspecified < 15.5 [affected]
Apple iPadOS
  • unspecified < 17.7 [affected]
Apple macOS
  • unspecified < 14.7 [affected]
Apple macOS
  • unspecified < 13.7 [affected]
© 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:apple:ipados:*:*:*:*:*:*:*:* < 17.7.7
cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* < 13.7.6
cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* >= 14.0 < 14.7.6
cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* >= 15.0 < 15.5


REMEDIATION




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