Summary
CVE-2026-47719 is a high-severity (CVSS 8.2) Server-Side Request Forgery (SSRF) vulnerability in FUXA, an open-source web-based SCADA/HMI/Dashboard platform. Unauthenticated attackers can abuse two Socket.IO event handlers to force the FUXA server to make arbitrary outbound HTTP requests and connect to internal industrial protocol endpoints, then have the responses relayed back to them.
Technical details
- Root cause: the
DEVICE_WEBAPI_REQUESTandDEVICE_PROPERTYSocket.IO event handlers (server/runtime/index.js, around lines 153–171 and 296–316) do not call theisSocketWriteAuthorized()check that other write-capable Socket.IO events enforce. - Trigger: an attacker connects to the FUXA Socket.IO endpoint without any credentials and emits a
device-webapi-requestevent, supplying an arbitrary destination in theproperty.addressfield. - Attack vector: the server executes
axios.get(address)against the attacker-supplied URL, and theDEVICE_PROPERTYhandler similarly performs unauthenticated operations against configured OPC UA and ODBC endpoints; the full response is then broadcast back to the client over the same Socket.IO event. - Impact: exposure of cloud instance metadata, unauthorized scanning/access to internal network services, and interaction with backend OPC UA servers or ODBC databases reachable from the FUXA host, without any authentication.
Affected software
- FUXA (frangoteam/FUXA) — all versions up to and including 1.3.1
Severity
- CVSS v3.1 Base Score: 8.2 (High)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
Mitigation and recommended actions
- Immediate: Upgrade to FUXA version 1.3.2 or later, which adds the missing authorization check to these handlers.
- If patching is not immediately possible: restrict network access to the FUXA Socket.IO endpoint to trusted hosts only, place the application behind a properly authenticated reverse proxy, and monitor/restrict outbound connections from the FUXA host to prevent it from reaching sensitive internal services (cloud metadata endpoints, OPC UA servers, ODBC databases, admin interfaces).

