CWE一覧に戻る
CWE-476

NULLポインタ参照

NULL Pointer Dereference
脆弱性 確定版
JA

製品が有効であると期待するポインタを参照解除するが、それはNULLである。

EN

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

Scope: Availability / Impact: DoS: Crash, Exit, or Restart
Scope: Integrity, Confidentiality / Impact: Execute Unauthorized Code or Commands; Read Memory; Modify Memory
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].
Select a programming language that is not susceptible to these issues.
Check the results of all functions that return a value and verify that the value is non-null before acting upon it.
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.
Explicitly initialize all variables and other data stores, either during declaration or just before the first usage.
MITRE公式ページ — CWE-476