9 vulnerabilities classified as CWE-1299. AI Chinese analysis included.
CWE-1299 represents a critical architectural weakness where hardware assets lack adequate security controls on secondary access paths, such as shadow registers or external debugging interfaces. This vulnerability enables attackers to circumvent primary access controls by exploiting these unprotected alternate routes to read, modify, or execute privileged operations on sensitive data. Typically, exploitation occurs when adversaries leverage physical access or compromised debug tools to interact directly with these hidden hardware mechanisms, effectively bypassing software-enforced security boundaries. To mitigate this risk, developers must implement comprehensive hardware security measures across all potential access vectors, ensuring that alternate interfaces are rigorously authenticated and encrypted. Regular hardware audits and strict adherence to secure design principles are essential to eliminate these blind spots and protect critical assets from unauthorized hardware-level intrusion.
module foo_bar(data_out, data_in, incoming_id, address, clk, rst_n); output [31:0] data_out; input [31:0] data_in, incoming_id, address; input clk, rst_n; wire write_auth, addr_auth; reg [31:0] data_out, acl_oh_allowlist, q; assign write_auth = | (incoming_id & acl_oh_allowlist) ? 1 : 0; always @* acl_oh_allowlist <= 32'h8312; assign addr_auth = (address == 32'hF00) ? 1: 0; always @ (posedge clk or negedge rst_n) if (!rst_n) begin q <= 32'h0; data_out <= 32'h0; end else begin q <= (addr_auth & write_auth) ? data_in: q; data_out <= q; end end endmoduleassign addr_auth = (address == 32'hF00) ? 1: 0;| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2025-41697 | Shell access to UART Console — FL SWITCH 2005 | 6.8 | Medium | 2025-12-09 |
| CVE-2025-1073 | Panasonic IR Control Hub 安全漏洞 — IR Control Hub (IR Blaster) | 7.5 | High | 2025-04-10 |
| CVE-2025-26409 | Access to Bootloader and Shell Over Serial Interface — Wattsense Bridge | 6.8 | - | 2025-02-11 |
| CVE-2024-47944 | Missing Protection Mechanism for Alternate Hardware Interface — IoT Interface & CMC III Processing Unit | 6.8 | - | 2024-10-15 |
| CVE-2024-39723 | IBM FlashSystem denial of service — Storage Virtualize | 4.6 | Medium | 2024-07-08 |
| CVE-2023-29063 | Lack of DMA Access Protections — FACSChorus | 2.4 | Low | 2023-11-28 |
| CVE-2023-29060 | Lack of USB Whitelisting — FACSChorus | 5.4 | Medium | 2023-11-28 |
| CVE-2022-43557 | BD BodyGuard™ Pumps – RS-232 Interface Vulnerability — BodyGuard™ Pump | 5.3 | Medium | 2022-12-05 |
| CVE-2021-3788 | Binatone Motorola-branded Camera 授权问题漏洞 — Binatone Hubble Cameras | 6.8 | Medium | 2021-11-12 |
Vulnerabilities classified as CWE-1299 represent 9 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.