| Home > CWE List > CWE-1431: Driving Intermediate Cryptographic State/Results to Hardware Module Outputs (4.18) |
|
CWE-1431: Driving Intermediate Cryptographic State/Results to Hardware Module Outputs
View customized information:
For users who are interested in more notional aspects of a weakness. Example: educators, technical writers, and project/program managers.
For users who are concerned with the practical application and details about the nature of a weakness and how to prevent it from happening. Example: tool developers, security researchers, pen-testers, incident response analysts.
For users who are mapping an issue to CWE/CAPEC IDs, i.e., finding the most appropriate CWE for a specific issue (e.g., a CVE record). Example: tool developers, security researchers.
For users who wish to see all available information for the CWE/CAPEC entry.
For users who want to customize what details are displayed.
×
Edit Custom FilterThe product uses a hardware module implementing a cryptographic
algorithm that writes sensitive information about the intermediate
state or results of its cryptographic operations via one of its output
wires (typically the output port containing the final result).
This table specifies different individual consequences
associated with the weakness. The Scope identifies the application security area that is
violated, while the Impact describes the negative technical impact that arises if an
adversary succeeds in exploiting this weakness. The Likelihood provides information about
how likely the specific consequence is expected to be seen relative to the other
consequences in the list. For example, there may be high likelihood that a weakness will be
exploited to achieve a certain impact, but a low likelihood that it will be exploited to
achieve a different impact.
This table shows the weaknesses and high level categories that are related to this
weakness. These relationships are defined as ChildOf, ParentOf, MemberOf and give insight to
similar items that may exist at higher and lower levels of abstraction. In addition,
relationships such as PeerOf and CanAlsoBe are defined to show similar weaknesses that the user
may want to explore.
Relevant to the view "Research Concepts" (View-1000)
Relevant to the view "Hardware Design" (View-1194)
The different Modes of Introduction provide information
about how and when this
weakness may be introduced. The Phase identifies a point in the life cycle at which
introduction
may occur, while the Note provides a typical scenario related to introduction during the
given
phase.
This listing shows possible areas for which the given
weakness could appear. These
may be for specific named Languages, Operating Systems, Architectures, Paradigms,
Technologies,
or a class of such platforms. The platform is listed along with how frequently the given
weakness appears for that instance.
Example 1 The following SystemVerilog code is a crypto module that takes input data and encrypts it by processing the data through multiple encryption rounds. Note: this example is derived from [REF-1469]. (bad code)
Example Language: Verilog
01 | module crypto_core_with_leakage
02 | (
03 | input clk,
08 | );04 | input rst, 05 | input [127:0] data_i, 06 | output [127:0] data_o, 07 | output valid 09 | 10 | localparam int total_rounds = 10; 11 | logic [3:0] round_id_q; 12 | logic [127:0] data_state_q, data_state_d; 13 | logic [127:0] key_state_q, key_state_d; 14 | 15 | crypto_algo_round u_algo_round (
16 | .clk (clk),
23 | );17 | .rst (rst), 18 | .round_i (round_id_q ), 19 | .key_i (key_state_q ), 20 | .data_i (data_state_q), 21 | .key_o (key_state_d ), 22 | .data_o (data_state_d) 24 | 25 | always @(posedge clk) begin
26 | if (rst) begin
46 | end
27 | data_state_q <= 0;
30 | end28 | key_state_q <= 0; 29 | round_id_q <= 0; 31 | else begin
32 | case (round_id_q)
45 | end
33 | total_rounds: begin
44 | endcase
34 | data_state_q <= 0;
37 | end35 | key_state_q <= 0; 36 | round_id_q <= 0; 38 | 39 | default: begin
40 | data_state_q <= data_state_d;
43 | end41 | key_state_q <= key_state_d; 42 | round_id_q <= round_id_q + 1; 47 | 48 | assign valid = (round_id_q == total_rounds) ? 1'b1 : 1'b0; 49 | 50 | assign data_o = data_state_q; 51 | 52 | endmodule In line 50 above, data_state_q is assigned to data_o. Since data_state_q contains intermediate state/results, this allows an attacker to obtain these results through data_o.
In line 50 of the fixed logic below, while "data_state_q" does not contain the final result, a "sanitizing" mechanism drives a safe default value (i.e., 0) to "data_o" instead of the value of "data_state_q". In doing so, the mechanism prevents the exposure of intermediate state/results which could be used to break soundness of the cryptographic operation being performed. A real-world example of this weakness and mitigation can be seen in a pull request that was submitted to the OpenTitan Github repository [REF-1469]. (good code)
Example Language: Verilog
01 | module crypto_core_without_leakage
02 | (
03 | input clk,
09 |04 | input rst, 05 | input [127:0] data_i, 06 | output [127:0] data_o, 07 | output valid 08 | ); 10 | localparam int total_rounds = 10; 11 | logic [3:0] round_id_q; 12 | logic [127:0] data_state_q, data_state_d; 13 | logic [127:0] key_state_q, key_state_d; 14 | 15 | crypto_algo_round u_algo_round (
16 | .clk (clk),
23 | );17 | .rst (rst), 18 | .round_i (round_id_q ), 19 | .key_i (key_state_q ), 20 | .data_i (data_state_q), 21 | .key_o (key_state_d ), 22 | .data_o (data_state_d) 24 | 25 | always @(posedge clk) begin
26 | if (rst) begin
46 | end
27 | data_state_q <= 0;
30 | end28 | key_state_q <= 0; 29 | round_id_q <= 0; 31 | else begin
32 | case (round_id_q)
45 | end
33 | total_rounds: begin
44 | endcase
34 | data_state_q <= 0;
37 | end35 | key_state_q <= 0; 36 | round_id_q <= 0; 38 | 39 | default: begin
40 | data_state_q <= data_state_d;
43 | end41 | key_state_q <= key_state_d; 42 | round_id_q <= round_id_q + 1; 47 | 48 | assign valid = (round_id_q == total_rounds) ? 1'b1 : 1'b0; 49 | 50 | assign data_o = (valid) ? data_state_q : 0; 51 | 52 | endmodule
This MemberOf Relationships table shows additional CWE Categories and Views that
reference this weakness as a member. This information is often useful in understanding where a
weakness fits within the context of external information sources.
More information is available — Please edit the custom filter or select a different filter. |
|
Use of the Common Weakness Enumeration (CWE™) and the associated references from this website are subject to the Terms of Use. CWE is sponsored by the U.S. Department of Homeland Security (DHS) Cybersecurity and Infrastructure Security Agency (CISA) and managed by the Homeland Security Systems Engineering and Development Institute (HSSEDI) which is operated by The MITRE Corporation (MITRE). Copyright © 2006–2025, The MITRE Corporation. CWE, CWSS, CWRAF, and the CWE logo are trademarks of The MITRE Corporation. |
||

