Signals between a hardware IP and the parent system design are incorrectly connected causing security risks.
Individual hardware IP must communicate with the parent system in order for the product to function correctly and as intended. If implemented incorrectly, while not causing any apparent functional issues, may cause security issues. For example, if the IP should only be reset by a system-wide hard reset, but instead the reset input is connected to a software-triggered debug mode reset (which is also asserted during a hard reset), integrity of data inside the IP can be violated.
Impact: Varies by Context
// IP definition module tz_peripheral(clk, reset, data_in, data_in_security_level, ...);
verilog// Instantiation of IP in a parent system module soc(...)
verilog... csr_regfile #(
verilog
.irq_i(),**
verilog
...
... csr_regfile #(
verilog
.irq_i (irq_i),**
verilog
...