CWE List Version 4.20
Common Weakness Enumeration (CWE) is a list of software and hardware weaknesses.
CWE-79
Common Weakness Enumeration (CWE) is a list of software weaknesses.
CWE-20
Common Weakness Enumeration (CWE) is a list of software weaknesses.
CWE-787
Common Weakness Enumeration (CWE) is a list of software weaknesses.
🌐
OWASP Foundation
owasp.org › www-community › vulnerabilities › Null_Dereference
Null Dereference | OWASP Foundation
CWE-476: NULL Pointer Dereference: A NULL pointer dereference occurs when the application dereferences a pointer that it expects to be valid, but is NULL, typically causing a crash or exit.
🌐
CVE Details
cvedetails.com › cwe-details › 476 › NULL-Pointer-Dereference.html
CWE 476 NULL Pointer Dereference
The product dereferences a pointer that it expects to be valid but is NULL. Created: 2006-07-19 Updated: 2025-12-11 Source: https://cwe.mitre.org/data/definitions/476.html
🌐
Medium
thehacktivists.medium.com › null-pointer-dereference-cwe-476-the-hacktivists-d3ceb2a7ade1
NULL Pointer Dereference [CWE-476] — The Hacktivists | by The Hacktivists | Medium
March 13, 2021 - NULL Pointer Dereference [CWE-476] — The Hacktivists NULL Pointer Dereference weakness occurs where software dereferences a pointer with a value of NULL instead of a valid address. Table of …
🌐
MathWorks
mathworks.com › polyspace bug finder › reviewing and reporting results › polyspace bug finder results › coding standards › common weakness enumeration (cwe)
CWE Rule 476 - NULL Pointer Dereference - MATLAB
This issue occurs when you use a pointer with a value of NULL as if it points to a valid memory location. If you dereference the zero address, such as 0x00, Polyspace® considers the null address as equivalent to NULL and raises this defect.
🌐
MITRE
cwe.mitre.org › data › definitions › 476
CWE - CWE-476: NULL Pointer Dereference (4.19.1)
Common Weakness Enumeration (CWE) is a list of software weaknesses.
🌐
GitHub
github.com › wcventure › Static-Analysis-Rules › blob › master › Summary of static analysis in C & C++ › checkingRules › warning_nullPointerRedundantCheck_CWE476.md
Static-Analysis-Rules/Summary of static analysis in C & C++/checkingRules/warning_nullPointerRedundantCheck_CWE476.md at master · wcventure/Static-Analysis-Rules
<error id="nullPointerRedundantCheck" severity="warning" msg="Either the condition is redundant or there is possible null pointer dereference: pointer." verbose="Either the condition is redundant or there is possible null pointer dereference: pointer." cwe="476"/>
Author: wcventure
Find elsewhere
🌐
ImmuniWeb
immuniweb.com › vulnerability › null-pointer-dereference.html
NULL Pointer Dereference Vulnerability | CWE-476 Weakness | Exploitation and Remediation
December 28, 2020 - CWE is a trademark of the MITRE Corporation. ... NULL Pointer Dereference weakness occurs where software dereferences a pointer with a value of NULL instead of a valid address.
🌐
Bytehackr
blog.bytehackr.in › understanding-and-preventing-null-pointer-dereference
Top 5 Way to Prevent NULL Pointer Dereference
May 8, 2025 - In the world of programming, NULL pointer dereference(CWE-476) is a common issue that can lead to crashes, instability, and even security vulnerabilities.
🌐
Krishna Gupta
krishnag.ceo › home › blog › understanding cwe-476: null pointer dereference
Understanding CWE-476: NULL Pointer Dereference - Krishna Gupta
March 25, 2025 - The CWE-476 NULL Pointer Dereference is one of the most critical software weaknesses, consistently appearing in the 2024 CWE Top 25 Most Dangerous Software Weaknesses list. Its presence highlights the ongoing challenges developers face in ensuring ...
🌐
MITRE D3FEND
d3fend.mitre.org › weakness › cwe › CWE-476
NULL Pointer Dereference - CWE-476
Pointer Validation · Memory Block Start Validation · Null Pointer Checking · Reference Nullification · Trusted Library · Variable Initialization · Variable Type Validation · Detect · − Detect · + File Analysis · Dynamic Analysis · Emulated File Analysis ·
🌐
Martellosecurity
martellosecurity.com › kb › mitre › cwe › 476
NULL Pointer Dereference | Martello Security
If an attacker provides an address that appears to be well-formed, but the address does not resolve to a hostname, then the call to gethostbyaddr() will return NULL. Since the code does not check the return value from gethostbyaddr (CWE-252), a NULL pointer dereference (CWE-476) would then ...
🌐
Code2night
code2night.com › security › understanding-cwe476-null-pointer-dereference-causes-impact-and-prevention
Understanding CWE-476: NULL Pointer Dereference - Causes, Impact and Prevention | Code2night.com
The CWE-476: NULL Pointer Dereference vulnerability is a type of programming error that occurs when a program attempts to access an object or variable through a pointer that is NULL (or null).
🌐
HackerOne
hackerone.com › hacktivity › cwe_discovery
CWE discovery - NULL Pointer Dereference
It looks like your JavaScript is disabled. To use HackerOne, enable JavaScript in your browser and refresh this page
🌐
Black Duck
documentation.blackduck.com › bundle › remediation › page › CWE-476.html
CWE-476 NULL Pointer Dereference
November 30, 2022 - Skip to main contentSkip to search · Powered by Zoomin Software. For more details please contactZoomin · ©2025 Black Duck Software, Inc. All Rights Reserved · Privacy PolicyTerms of Use · Powered By
🌐
CVEfeed
cvefeed.io › cwe › detail › cwe-476-null-pointer-dereference
CWE-476: NULL Pointer Dereference
October 26, 2023 - A NULL pointer dereference occurs when the application dereferences a pointer that it expects to be valid, but is NULL, typically causing a crash or exit.
🌐
GitHub
github.com › fkie-cad › cwe_checker › discussions › 344
Regarding the Null pointer derefernce in calloc · fkie-cad/cwe_checker · Discussion #344
Well, the CWE-476 check only looks for unchecked return values of function calls that may return null pointers. Your example does not contain such a function call, thus it cannot find this type of Null dereference.
Author: fkie-cad
🌐
Vulnerabilityhistory
vulnerabilityhistory.org › tags › cwe-476
CWE-476: NULL Pointer Dereference | Vulnerability History Project
"A NULL pointer dereference occurs when the application dereferences a pointer that it expects to be valid, but is NULL, typically causing a crash or exit." - Entry from the Common Weakness Enumeration For more info visit <a href="https://c...