CWE一覧に戻る
CWE-201

送信データへの機密情報の挿入

Insertion of Sensitive Information Into Sent Data
脆弱性 レビュー中
JA

コードは別の行為者にデータを送信するが、データの一部にはその行為者がアクセスすべきでない機密情報が含まれている。

EN

The code transmits data to another actor, but a portion of the data includes sensitive information that should not be accessible to that actor.

Scope: Confidentiality / Impact: Read Files or Directories; Read Memory; Read Application Data
Specify which data in the software should be regarded as sensitive. Consider which types of users should have access to which types of data.
Ensure that any possibly sensitive data specified in the requirements is verified with designers to ensure that it is either a calculated risk or mitigated elsewhere. Any information that is not necessary to the functionality should be removed in order to lower both the overhead and the possibility of security sensitive data being sent.
Setup default error messages so that unexpected errors do not disclose sensitive information.
Compartmentalize the system to have "safe" areas where trust boundaries can be unambiguously drawn. Do not allow sensitive data to go outside of the trust boundary and always be careful when interfacing with a compartment outside of the safe area.

Ensure that appropriate compartmentalization is built into the system design, and the compartmentalization allows for and reinforces privilege separation functionality. Architects and designers should rely on the principle of least privilege to decide the appropriate time to use privileges and the time to drop privileges.
MITRE公式ページ — CWE-201