CWE一覧に戻る
CWE-784

セキュリティ上の判断において、検証や完全性チェックを行わないクッキーへの依存

Reliance on Cookies without Validation and Integrity Checking in a Security Decision
脆弱性 レビュー中
JA

この製品は、クッキーの存在または値に依存する保護メカニズムを使用していますが、関連するユーザーに対してクッキーが有効であることを適切に保証していません。

攻撃者は、ブラウザの内部で、あるいはブラウザの外部でクライアント側のコードを実装することによって、クッキーを 簡単に修正することができます。攻撃者は、期待される値を含むようにクッキーを修正することで、認可や認証のような保護機構を迂回することができます。

EN

The product uses a protection mechanism that relies on the existence or values of a cookie, but it does not properly ensure that the cookie is valid for the associated user.

Attackers can easily modify cookies, within the browser or by implementing the client-side code outside of the browser. Attackers can bypass protection mechanisms such as authorization and authentication by modifying the cookie to contain an expected value.

Scope: Access Control / Impact: Bypass Protection Mechanism; Gain Privileges or Assume Identity
Avoid using cookie data for a security-related decision.
Perform thorough input validation (i.e.: server side validation) on the cookie data if you're going to use it for a security related decision.
Add integrity checks to detect tampering.
Protect critical cookies from replay attacks, since cross-site scripting or other attacks may allow attackers to steal a strongly-encrypted cookie that also passes integrity checks. This mitigation applies to cookies that should only be valid during a single transaction or session. By enforcing timeouts, you may limit the scope of an attack. As part of your integrity check, use an unpredictable, server-side value that is not exposed to the client.
MITRE公式ページ — CWE-784