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 RestartNULL 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 MemoryIn 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
(incoming)15
| Type | Target | Confidence | Tier |
|---|---|---|---|
| Vulnerability | CVE-2025-5867cve-2025-5867 | 0% | live |
| Vulnerability | CVE-2026-0710cve-2026-0710 | 0% | live |
| Vulnerability | CVE-2026-21485cve-2026-21485 | 0% | live |
| Vulnerability | Microsoft Windows NULL Pointer Dereference Vulnerabilitycve-2026-21525 | 0% | live |
| Vulnerability | CVE-2026-21688cve-2026-21688 | 0% | live |
| Vulnerability | CVE-2026-24404cve-2026-24404 | 0% | live |
| Vulnerability | CVE-2026-24409cve-2026-24409 | 0% | live |
| Vulnerability | CVE-2026-24410cve-2026-24410 | 0% | live |
| Vulnerability | CVE-2026-24411cve-2026-24411 | 0% | live |
| Vulnerability | CVE-2026-28224cve-2026-28224 | 0% | live |
| Vulnerability | CVE-2026-31436cve-2026-31436 | 0% | live |
| Vulnerability | CVE-2026-31450cve-2026-31450 | 0% | live |
| Vulnerability | CVE-2026-31657cve-2026-31657 | 0% | live |
| Vulnerability | CVE-2026-43113cve-2026-43113 | 0% | live |
| KEVEntry | Microsoft Windows NULL Pointer Dereference Vulnerabilitykev-cve-2026-21525 | 0% | live |
Related by meaning· 6
Nearest entities by semantic similarity across the cs-graph corpus.