CVE-2026-52832
Published:July 16, 2026
Updated:August 27, 2026
Nuclio Dashboard exposes "POST /api/functions" without authentication by default (NOP auth mode). The "spec.handler" field (e.g., "mymodule:myfunction") is parsed by "functionconfig.ParseHandler()" which splits on ":" only — no path validation is applied to the module portion. During function build, "writeFunctionSourceCodeToTempFile()" passes the module name directly to "path.Join(tempDir, moduleFileName)". Go's "path.Join" internally calls "path.Clean", which resolves "../" sequences and allows the resolved path to escape "tempDir". The function then calls "os.WriteFile" at the attacker-controlled path with attacker-controlled content (base64-decoded "spec.build.functionSourceCode"). The write executes in the Dashboard container process running as "uid=0 (root)", allowing writes to any filesystem location the process can access: "/tmp", "/etc", "/usr/local/bin", "/etc/cron.d", and more. - CVSS 3.1: "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" — 7.5 (High) - CWE: CWE-22 (Improper Limitation of a Pathname to a Restricted Directory) - Affected versions: Nuclio <= 1.15.27 (latest at time of research, dynamically verified) ***
Affected Packages
https://github.com/nuclio/nuclio.git (GITHUB):
Affected version(s) >=1.0.0 <1.16.5Fix Suggestion:
Update to version 1.16.5Related Resources (5)
Do you need more information?
Contact UsCVSS v4
Base Score:
6.9
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
HIGH
User Interaction
NONE
Vulnerable System Confidentiality
NONE
Vulnerable System Integrity
HIGH
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
4.9
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
HIGH
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
NONE
Integrity
HIGH
Availability
NONE
Weakness Type (CWE)
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')