CWE一覧に戻る
CWE-925

放送受信者による不適切な意思確認

Improper Verification of Intent by Broadcast Receiver
脆弱性 作成中
JA

Android アプリケーションは、Intent を受信する Broadcast Receiver を使用しているが、Intent が許可されたソースから送信されたものであることを適切に検証していない。

アクション文字列で識別される特定のタイプのインテントは、サードパーティ・アプリケーションではなく、オペレーティング・システム自身によってのみブロードキャストされます。しかし、アプリケーションがこれらの暗黙的なシステムインテントを受信するように登録すると、明示的なインテントを受信するようにも登録されます。悪意のあるアプリケーションは暗黙的なシステムインテントを送信できな いが、ターゲットアプリケーションに明示的なインテントを送信できるため、ターゲッ トアプリケーションは、受信したインテントが他のアプリケーションからの 明示的なインテントではなく、有効な暗黙的なシステムインテントであると見な す可能性がある。これは意図しない動作につながる可能性がある。

EN

The Android application uses a Broadcast Receiver that receives an Intent but does not properly verify that the Intent came from an authorized source.

Certain types of Intents, identified by action string, can only be broadcast by the operating system itself, not by third-party applications. However, when an application registers to receive these implicit system intents, it is also registered to receive any explicit intents. While a malicious application cannot send an implicit system intent, it can send an explicit intent to the target application, which may assume that any received intent is a valid implicit system intent and not an explicit intent from another application. This may lead to unintended behavior.

Scope: Integrity / Impact: Gain Privileges or Assume Identity
Before acting on the Intent, check the Intent Action to make sure it matches the expected System action.
MITRE公式ページ — CWE-925