CWE一覧に戻る
CWE-431

ハンドラーの行方

Missing Handler
脆弱性 レビュー中
JA

ハンドラーがない、または実装されていない。

例外がスローされ、キャッチされなかった場合、プロセスは、与えられた失敗やイベントが実行を変更する価値があるかどうかを判断する機会を放棄したことになる。

EN

A handler is not available or implemented.

When an exception is thrown and not caught, the process has given up an opportunity to decide if a given failure or event is worth a change in execution.

Scope: Other / Impact: Varies by Context
Handle all possible situations (e.g. error condition).
If an operation can throw an Exception, implement a handler for that specific exception.
MITRE公式ページ — CWE-431