CWE一覧に戻る
CWE-1209

予約ビットの無効化の失敗

Failure to Disable Reserved Bits
脆弱性 作成中
JA

ハードウェア・デザインの予約ビットは、製造前に無効化されることはない。通常、予約ビットは将来の機能のために使用され、デザイン内のいかなる機能ロジックもサポートすべきではありません。 しかし、設計者はこれらのビットを密かに使用して、量産ハードウェアの新機能をデバッグしたり、さらに開発したりするかもしれません。これらのビットにアクセスできる攻撃者は、ハードウェアの状態を危うくすることを目的として、これらのビットに書き込みを行います。

予約ビットは、後の目的のために割り当てることができるように、そのようにラベル付けされている。これらのビットは、現在の設計では何もしない。 しかし、設計者はこれらのビットをデバッグや将来の機能の制御/設定に使用することで、TTM(Time to Market:製品化までの時間)を短縮したいと考えるかもしれません。これらのビットによって制御されるロジックが生産時に有効になっている場合、敵はそのロジックを使用してハードウェアに望ましくない/サポートされていない動作を引き起こす可能性があります。

EN

The reserved bits in a hardware design are not disabled prior to production. Typically, reserved bits are used for future capabilities and should not support any functional logic in the design. However, designers might covertly use these bits to debug or further develop new capabilities in production hardware. Adversaries with access to these bits will write to them in hopes of compromising hardware state.

Reserved bits are labeled as such so they can be allocated for a later purpose. They are not to do anything in the current design. However, designers might want to use these bits to debug or control/configure a future capability to help minimize time to market (TTM). If the logic being controlled by these bits is still enabled in production, an adversary could use the logic to induce unwanted/unsupported behavior in the hardware.

Scope: Confidentiality, Integrity, Availability, Access Control, Accountability, Authentication, Authorization, Non-Repudiation / Impact: Varies by Context
Include a feature to disable reserved bits.
Any writes to these reserve bits are blocked (e.g., ignored, access-protected, etc.), or an exception can be asserted.
MITRE公式ページ — CWE-1209