CVE-2026-43946
Published:May 27, 2026
Updated:June 13, 2026
Summary An authorization bypass in the /api/getTagValue endpoint allows unauthenticated access to tag values when the referenced script does not exist. Details The issue is caused by the combination of these code paths: - "server/api/apikeys/verify-api-or-token.js:45" sends requests without "x-api-key" to "authJwt.verifyToken(req, res, next)". - "server/api/jwt-helper.js:46-64" creates a signed guest token when no "x-access-token" is provided: "if (!token) { token = getGuestToken(); }" and then populates "req.userId" / "req.userGroups" from that guest token. - "server/api/command/index.js:76-105" exposes "/api/getTagValue". - "server/runtime/scripts/index.js:106-111" returns "true" when the referenced script does not exist: "if (!script) { return true; }" As a result, an unauthenticated request reaches "/api/getTagValue" as "guest", and the authorization check is bypassed because "isAuthorisedByScriptName()" returns "true" when "sourceScriptName" is omitted or does not match a real script. The endpoint then returns arbitrary tag values by ID. PoC Requests to /api/getTagValue without authentication could succeed when the authorization logic evaluated a non-existent sourceScriptName as authorized.
Affected Packages
https://github.com/frangoteam/FUXA.git (GITHUB):
Affected version(s) >=v1.0.0 <v1.3.1Fix Suggestion:
Update to version v1.3.1Related Resources (5)
Do you need more information?
Contact UsCVSS v4
Base Score:
7.7
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
Exploit Maturity
POC
CVSS v3
Base Score:
7.5
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
HIGH
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Incorrect Authorization
EPSS
Base Score:
0.11