CWE一覧に戻る
CWE-252

チェックなし 戻り値

Unchecked Return Value
脆弱性 レビュー中
JA

本製品はメソッドや関数からの戻り値をチェックしないため、予期せぬ状態や条件を検出できない可能性がある。

一般的なプログラマの想定は、「この関数呼び出しは絶対に失敗しない」と「この関数呼び出しが失敗しても問題ない」の2つです。もし攻撃者が関数を強制的に失敗させるか、さもなければ想定外の値を返すことができれば、プログラマーが想定している状態に製品がないため、その後のプログラムロジックが脆弱性につながる可能性があります。例えば、プログラムが特権を削除する関数を呼び出したが、特権が正常に削除されたことを確認するために戻りコードをチェックしなかった場合、プログラムはより高い特権で動作し続けることになる。

EN

The product does not check the return value from a method or function, which can prevent it from detecting unexpected states and conditions.

Two common programmer assumptions are "this function call can never fail" and "it doesn't matter if this function call fails". If an attacker can force the function to fail or otherwise return a value that is not expected, then the subsequent program logic could lead to a vulnerability, because the product is not in a state that the programmer assumes. For example, if the program calls a function to drop privileges but does not check the return code to ensure that privileges were successfully dropped, then the program will continue to operate with the higher privileges.

Scope: Availability, Integrity / Impact: Unexpected State; DoS: Crash, Exit, or Restart
Check the results of all functions that return a value and verify that the value is expected.
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].
Ensure that you account for all possible return values from the function.
When designing a function, make sure you return a value or throw an exception in case of an error.
MITRE公式ページ — CWE-252