GHSA-5jpj-293f-rhvj
KubeEdge: Command Injection in NodeUpgradeJob - RCE on edge nodes via v1alpha2 API
Quick fix
GHSA-5jpj-293f-rhvj — github.com/kubeedge/kubeedge: upgrade to the fixed version with the command below.
go get github.com/kubeedge/kubeedge@v1.21.2Details
## Impact
The KubeEdge NodeUpgradeJob handler constructed the `keadm upgrade edge` command by concatenating the user-controlled `spec.version` and `spec.image` fields into a shell command.
An authenticated user with permission to create or update `NodeUpgradeJob` resources through the v1alpha2 API could include shell metacharacters in either field. When the upgrade job was processed, the injected command could be executed on the targeted edge node with the privileges available to the upgrade process.
Successful exploitation could result in arbitrary command execution and compromise the confidentiality, integrity, and availability of the affected edge node.
## Patches
The fix removes shell-based command construction and invokes `keadm` using a structured argument list through `exec.Command`.
The version and image values are passed as separate literal arguments and are no longer interpreted by a command shell.
The fixed versions:
* KubeEdge v1.23.1 * KubeEdge v1.22.2 * KubeEdge v1.21.2
## Workarounds
Until a patched version is available:
* restrict permission to create or update `NodeUpgradeJob` resources to trusted administrators; * do not allow untrusted users or tenants to control the `spec.version` or `spec.image` fields; * avoid using NodeUpgradeJob-based edge upgrades in environments where these fields may be influenced by untrusted users.
## Credits
KubeEdge thanks Sang-Hoon Choi ([KoreaSecurity](https://github.com/KoreaSecurity), Sejong University) for responsibly reporting this issue and for coordinating with the KubeEdge maintainers through the security disclosure process.
Are you affected?
Enter the version of the package you're using.
Affected packages
1.12.0Fixed in: 1.21.2go get github.com/kubeedge/kubeedge@v1.21.21.22.0Fixed in: 1.22.2go get github.com/kubeedge/kubeedge@v1.22.21.23.0Fixed in: 1.23.1go get github.com/kubeedge/kubeedge@v1.23.1References
- https://github.com/kubeedge/kubeedge/security/advisories/GHSA-5jpj-293f-rhvj[WEB]
- https://nvd.nist.gov/vuln/detail/CVE-2026-62371[ADVISORY]
- https://github.com/kubeedge/kubeedge/pull/7028[WEB]
- https://github.com/kubeedge/kubeedge/pull/7029[WEB]
- https://github.com/kubeedge/kubeedge/pull/7030[WEB]
- https://github.com/kubeedge/kubeedge/commit/552af457a4c7ce80ea1678ab5889f475b36ea103[WEB]
- https://github.com/kubeedge/kubeedge/commit/657b745bebcdd7a221eb34c0aac13231ef12c37f[WEB]
- https://github.com/kubeedge/kubeedge/commit/b72db7f8a0f7be23261b4349eab33024b2007df0[WEB]
- https://github.com/kubeedge/kubeedge[PACKAGE]
- https://github.com/kubeedge/kubeedge/blob/master/CHANGELOG/CHANGELOG-1.21.md[WEB]
- https://github.com/kubeedge/kubeedge/blob/master/CHANGELOG/CHANGELOG-1.22.md[WEB]
- https://github.com/kubeedge/kubeedge/blob/master/CHANGELOG/CHANGELOG-1.23.md[WEB]
- https://github.com/kubeedge/kubeedge/releases/tag/v1.21.2[WEB]
- https://github.com/kubeedge/kubeedge/releases/tag/v1.22.2[WEB]
- https://github.com/kubeedge/kubeedge/releases/tag/v1.23.1[WEB]