CWE-476
NULL Pointer Dereference
About
The product dereferences a pointer that it expects to be valid but is NULL.
Common consequences
- Availability → DoS: Crash, Exit, or Restart
- Integrity, Confidentiality → Execute Unauthorized Code or Commands, Read Memory, Modify Memory
Mitigations
- 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.
CVEs with this weakness
Frequently asked questions
What is CWE-476?
The product dereferences a pointer that it expects to be valid but is NULL. Common consequences Availability → DoS: Crash, Exit, or Restart Integrity, Confidentiality → Execute Unauthorized Code or Commands, Read Memory, Modify Memory Mitigations 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.
How likely is CWE-476 to be exploited?
MITRE rates the likelihood of exploit for CWE-476 as medium.
Which platforms does CWE-476 affect?
CWE-476 has been observed on: C, C++, Java, C#, Go.
How many CVEs does Rainforest track for CWE-476?
Rainforest Labs currently tracks 3 published CVEs mapped to CWE-476. They are listed on this page.
Empower Your Security Strategy with Rainforest
Discover vulnerabilities early, prioritize critical threats, and protect what truly matters. Rainforest streamlines your security operations, saving you time and reducing costs, so you can focus on what drives your business forward.
