Medium severity6.5GHSA Advisory· Published Apr 17, 2026· Updated Apr 20, 2026
CVE-2026-6437
CVE-2026-6437
Description
Improper neutralization of argument delimiters in the volume handling component in AWS EFS CSI Driver (aws-efs-csi-driver) before v3.0.1 allows remote authenticated users with PersistentVolume creation permissions to inject arbitrary mount options via comma injection.
To remediate this issue, users should upgrade to version v3.0.1
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
github.com/kubernetes-sigs/aws-efs-csi-driverGo | < 1.7.8-0.20260416142831-51806c22c575 | 1.7.8-0.20260416142831-51806c22c575 |
Affected products
1- Range: < 1.7.8-0.20260416142831-51806c22c575
Patches
151806c22c575Validate mountTargetIp as a valid IP address in NodePublishVolume
1 file changed · +5 −2
pkg/driver/node.go+5 −2 modified@@ -20,6 +20,7 @@ import ( "context" "encoding/json" "fmt" + "net" "os" "path" "regexp" @@ -112,8 +113,10 @@ func (d *Driver) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolu return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("Volume context property %q must be a boolean value: %v", k, err)) } case MountTargetIp: - ipAddr := volContext[MountTargetIp] - mountOptions = append(mountOptions, MountTargetIp+"="+ipAddr) + if net.ParseIP(v) == nil { + return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("Volume context property %q=%q is not a valid IP address", k, v)) + } + mountOptions = append(mountOptions, MountTargetIp+"="+v) case CrossAccount: var err error crossAccountDNSEnabled, err = strconv.ParseBool(v)
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
7- github.com/advisories/GHSA-mph4-q2vm-w2pwghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2026-6437ghsaADVISORY
- aws.amazon.com/security/security-bulletins/2026-016-awsghsaWEB
- github.com/kubernetes-sigs/aws-efs-csi-driver/commit/51806c22c5754bfbdeca6910f15571a07921b784ghsaWEB
- github.com/kubernetes-sigs/aws-efs-csi-driver/releases/tag/v3.0.1nvdWEB
- github.com/kubernetes-sigs/aws-efs-csi-driver/security/advisories/GHSA-mph4-q2vm-w2pwnvdWEB
- aws.amazon.com/security/security-bulletins/2026-016-aws/nvd
News mentions
0No linked articles in our index yet.