CWE一覧に戻る
CWE-642

クリティカル・ステート・データの外部制御

External Control of Critical State Data
脆弱性 レビュー中
JA

不正な行為者がアクセス可能な場所に、ユーザーまたは製品自体に関するセキュリティ上重要な状態情報を格納している。

もし攻撃者が検出されずに状態情報を変更することができれば、アプリケーションのプログラマーは状態が変更されることを予期していないため、不正なアクションの実行や予期しないリソースへのアクセスに使用される可能性があります。

状態情報は、クッキー、隠されたウェブ・フォーム・フィールド、入力パラメータや引数、環境変数、データベース・レコード、 設定ファイルなど、様々な場所に格納できます。これらの場所はすべて攻撃者によって変更される可能性があります。このような状態情報が、セキュリティの制御やリソースの利用を決定するために利用されると、脆弱性が 生じる可能性があります。例えば、アプリケーションは認証を実行し、その状態を「authenticated=true」クッキーに保存するかもしれません。攻撃者は認証を迂回するために、単純にこのクッキーを作成するかもしれません。

EN

The product stores security-critical state information about its users, or the product itself, in a location that is accessible to unauthorized actors.

If an attacker can modify the state information without detection, then it could be used to perform unauthorized actions or access unexpected resources, since the application programmer does not expect that the state can be changed.

State information can be stored in various locations such as a cookie, in a hidden web form field, input parameter or argument, an environment variable, a database record, within a settings file, etc. All of these locations have the potential to be modified by an attacker. When this state information is used to control security or determine resource usage, then it may create a vulnerability. For example, an application may perform authentication, then save the state in an "authenticated=true" cookie. An attacker may simply create this cookie in order to bypass the authentication.

Scope: Access Control / Impact: Bypass Protection Mechanism; Gain Privileges or Assume Identity
Scope: Confidentiality / Impact: Read Application Data
Scope: Availability / Impact: DoS: Crash, Exit, or Restart
Understand all the potential locations that are accessible to attackers. For example, some programmers assume that cookies and hidden form fields cannot be modified by an attacker, or they may not consider that environment variables can be modified before a privileged program is invoked.
Store state information and sensitive data on the server side only.

Ensure that the system definitively and unambiguously keeps track of its own state and user state and has rules defined for legitimate state transitions. Do not allow any application user to affect state directly in any way other than through legitimate actions leading to state transitions.

If information must be stored on the client, do not do so without encryption and integrity checking, or otherwise having a mechanism on the server side to catch tampering. Use a message authentication code (MAC) algorithm, such as Hash Message Authentication Code (HMAC) [REF-529]. Apply this against the state or sensitive data that has to be exposed, which can guarantee the integrity of the data - i.e., that the data has not been modified. Ensure that a strong hash function is used (CWE-328).
Store state information on the server side only. Ensure that the system definitively and unambiguously keeps track of its own state and user state and has rules defined for legitimate state transitions. Do not allow any application user to affect state directly in any way other than through legitimate actions leading to state transitions.
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].

With a stateless protocol such as HTTP, use some frameworks can maintain the state for you.

Examples include ASP.NET View State and the OWASP ESAPI Session Management feature.

Be careful of language features that provide state support, since these might be provided as a convenience to the programmer and may not be considering security.
For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
When using PHP, configure the application so that it does not use register_globals. During implementation, develop the application so that it does not rely on this feature, but be wary of implementing a register_globals emulation that is subject to weaknesses such as CWE-95, CWE-621, and similar issues.
Use tools and techniques that require manual (human) analysis, such as penetration testing, threat modeling, and interactive tools that allow the tester to record and modify an active session. These may be more effective than strictly automated techniques. This is especially the case with weaknesses that are related to design and business rules.
MITRE公式ページ — CWE-642