BaseStableTop 25 #21

CWE-476NULL Pointer Dereference

Category: memory

Description

The product dereferences a pointer that it expects to be valid but is NULL.

Common consequences· 2

  • Availability — DoS: Crash, Exit, or Restart
    NULL pointer dereferences usually result in the failure of the process unless exception handling (on some platforms) is available and implemented. Even when exception handling is being used, it can still be very difficult to return the software to a safe state of operation.
  • Integrity / Confidentiality — Execute Unauthorized Code or Commands, Read Memory, Modify Memory
    In rare circumstances, when NULL is equivalent to the 0x0 memory address and privileged code can access it, then writing or reading memory is possible, which may lead to code execution.

Potential mitigations· 5

  • [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].
  • [Requirements]Select a programming language that is not susceptible to these issues.
  • [Implementation]Check the results of all functions that return a value and verify that the value is non-null before acting upon it.
  • [Architecture and Design]Identify all variables and data stores that receive information from external sources, and apply input validation to make sure that they are only initialized to expected values.
  • [Implementation]Explicitly initialize all variables and other data stores, either during declaration or just before the first usage.

References

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

(incoming)15

TypeTargetConfidenceTier
VulnerabilityCVE-2025-5867cve-2025-58670%live
VulnerabilityCVE-2026-0710cve-2026-07100%live
VulnerabilityCVE-2026-21485cve-2026-214850%live
VulnerabilityMicrosoft Windows NULL Pointer Dereference Vulnerabilitycve-2026-215250%live
VulnerabilityCVE-2026-21688cve-2026-216880%live
VulnerabilityCVE-2026-24404cve-2026-244040%live
VulnerabilityCVE-2026-24409cve-2026-244090%live
VulnerabilityCVE-2026-24410cve-2026-244100%live
VulnerabilityCVE-2026-24411cve-2026-244110%live
VulnerabilityCVE-2026-28224cve-2026-282240%live
VulnerabilityCVE-2026-31436cve-2026-314360%live
VulnerabilityCVE-2026-31450cve-2026-314500%live
VulnerabilityCVE-2026-31657cve-2026-316570%live
VulnerabilityCVE-2026-43113cve-2026-431130%live
KEVEntryMicrosoft Windows NULL Pointer Dereference Vulnerabilitykev-cve-2026-215250%live

Related by meaning· 6

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

CWE
Unchecked Return Value to NULL Pointer Dereference
CWE
Access of Uninitialized Pointer
CWE
Use of Out-of-range Pointer Offset
CWE
Expired Pointer Dereference
CWE
Free of Pointer not at Start of Buffer
CWE
Untrusted Pointer Dereference
Sourced from MITRE CWE 4.20. Curated for EU compliance use cases by Adam Lundqvist, Founder at SQUR.