Summary
CVE-2026-43945 is a pre-authentication remote code execution vulnerability in FUXA, an open-source web-based SCADA/HMI/Dashboard software developed by frangoteam. The flaw stems from a path confusion bug in the server’s authentication middleware, allowing an unauthenticated remote attacker to bypass all access controls and achieve full RCE as root — even when the platform is running in its most secure configuration (Secure Mode Enabled and Node-RED Secure Authentication Enabled). The vulnerability carries a CVSS 4.0 base score of 8.9 (HIGH) and affects FUXA versions 1.2.11 through 1.3.0, with a fix available in 1.3.1.
Technical details
- Root cause: The authentication middleware evaluates the full request URL — including query parameters — using a substring match:
url.includes('/socket.io'). Any request whose URL contains this string is unconditionally passed through without authentication checks, as the server treats it as a public WebSocket handshake. - Trigger condition: An attacker appends
?x=/socket.ioto any protected administrative HTTP endpoint. The flawed substring check matches the injected query parameter, causing the middleware to skip all authentication enforcement for that request. - Attack vector: Exploitable entirely over the network via HTTP/HTTPS. No credentials, local access, or user interaction are required. The bypass succeeds regardless of whether Secure Mode or Node-RED Secure Authentication is enabled, negating the platform’s built-in hardening controls.
- Impact: Full remote code execution as root on the host running FUXA, resulting in complete compromise of confidentiality, integrity, and availability. A proof-of-concept exploit is publicly available (CVSS 4.0
E:P).
Affected software
- FUXA >= 1.2.11 and < 1.3.1 (all releases from 1.2.11 through 1.3.0 inclusive)
Severity
CVSS 4.0 Base Score: 8.9 (HIGH)
Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P
Associated weaknesses: CWE-288 (Authentication Bypass Using an Alternate Path or Channel), CWE-94 (Code Injection), CWE-284 (Improper Access Control), CWE-863 (Incorrect Authorization).
Mitigation and recommended actions
- Immediate: Upgrade to FUXA version 1.3.1, which resolves the bypass by replacing the vulnerable full-URL substring check with
req.path-based evaluation that strips query parameters before applying authentication decisions. - If immediate patching is not possible: Restrict network access to all FUXA instances at the firewall or network perimeter. FUXA should never be directly exposed to the public internet; place it behind a VPN or strict network controls until the patch is applied.
IONIX Status
The IONIX research team is tracking ongoing exploitation attempts and recommends immediate patching. Potentially affected assets are outlined in this post.

