BaseDraft

CWE-252Unchecked Return Value

Category: other

Description

The product does not check the return value from a method or function, which can prevent it from detecting unexpected states and conditions. Two common programmer assumptions are "this function call can never fail" and "it doesn't matter if this function call fails". If an attacker can force the function to fail or otherwise return a value that is not expected, then the subsequent program logic could lead to a vulnerability, because the product is not in a state that the programmer assumes. For example, if the program calls a function to drop privileges but does not check the return code to ensure that privileges were successfully dropped, then the program will continue to operate with the higher privileges.

Common consequences· 1

  • Availability / Integrity — Unexpected State, DoS: Crash, Exit, or Restart
    An unexpected return value could place the system in a state that could lead to a crash or other unintended behaviors.

Potential mitigations· 4

  • [Implementation]Check the results of all functions that return a value and verify that the value is expected.
  • [Implementation]For any pointers that could have been modified or provided from a function that can return NULL, check the pointer for NULL before use. When working with a multithreaded or otherwise asynchronous environment, ensure that proper locking APIs are used to lock before the check, and unlock when it has finished [REF-1484].
  • [Implementation]Ensure that you account for all possible return values from the function.
  • [Implementation]When designing a function, make sure you return a value or throw an exception in case of an error.

References

  1. https://cwe.mitre.org/data/definitions/252.html

(incoming)6

TypeTargetConfidenceTier
VulnerabilityCVE-2025-46672cve-2025-466720%live
VulnerabilityCVE-2025-66565cve-2025-665650%live
VulnerabilityCVE-2026-22046cve-2026-220460%live
VulnerabilityCVE-2026-22047cve-2026-220470%live
VulnerabilityCVE-2026-22255cve-2026-222550%live
VulnerabilityCVE-2026-22861cve-2026-228610%live

Related by meaning· 6

Nearest entities by semantic similarity across the cs-graph corpus.

CWE
Unchecked Return Value to NULL Pointer Dereference
CWE
Return of Wrong Status Code
CWE
Incorrect Check of Function Return Value
CWE
Unexpected Status Code or Return Value
CWE
Unchecked Error Condition
CWE
Reliance on Undefined, Unspecified, or Implementation-Defined Behavior
Sourced from MITRE CWE 4.20. Curated for EU compliance use cases by Adam Lundqvist, Founder at SQUR.