CVE-2026-32769
NetworkPolicy Misconfiguration in Fullchain Enables Lateral Movement
Publication date: 2026-03-20
Last updated on: 2026-04-16
Assigner: GitHub, Inc.
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| ctfer | fullchain | to 0.1.1 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-284 | The product does not restrict or incorrectly restricts access to a resource from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': 'CVE-2026-32769 is a vulnerability in the Fullchain project, which is a platform for deploying Capture The Flag (CTF) environments. In versions prior to 0.1.1, a misconfigured Kubernetes NetworkPolicy allowed a malicious actor who compromised an application within one namespace to pivot and access Pods in other namespaces. This misconfiguration breaks the expected security-by-default isolation between namespaces, enabling lateral movement across the cluster.'}, {'type': 'paragraph', 'content': 'The issue stems from an invalid NetworkPolicy prefixed with "inter-ns-" that failed to restrict cross-namespace Pod communication properly. This flaw allows attackers to bypass intended network segmentation controls within Kubernetes clusters.'}] [2]
How can this vulnerability impact me? :
[{'type': 'paragraph', 'content': 'This vulnerability can have a significant impact by allowing an attacker who has compromised an application in one namespace to move laterally to other namespaces within the Kubernetes cluster. Although the initial compromise requires no privileges or user interaction and has low attack complexity, the subsequent impact on confidentiality, integrity, and availability is high.'}, {'type': 'list_item', 'content': 'Lateral movement across namespaces, potentially compromising other Pods and services.'}, {'type': 'list_item', 'content': 'Bypassing network segmentation and isolation controls, increasing the attack surface.'}, {'type': 'list_item', 'content': "Potential widespread compromise of the cluster's resources and data."}] [2]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability can be detected by checking for the presence of Kubernetes NetworkPolicies in your namespaces that have names prefixed with "inter-ns-". These policies are misconfigured and allow cross-namespace Pod communication, which should be restricted.'}, {'type': 'paragraph', 'content': 'You can use kubectl commands to list and inspect these NetworkPolicies to identify if the vulnerable policy exists.'}, {'type': 'list_item', 'content': 'kubectl get networkpolicies --all-namespaces | grep inter-ns-'}, {'type': 'list_item', 'content': 'kubectl describe networkpolicy inter-ns-<policy-name> -n <namespace>'}] [2]
What immediate steps should I take to mitigate this vulnerability?
[{'type': 'paragraph', 'content': 'The immediate mitigation step is to delete any NetworkPolicies in your namespaces that have names prefixed with "inter-ns-", as these are the misconfigured policies allowing lateral movement.'}, {'type': 'paragraph', 'content': 'If possible, update the fullchain project to version 0.1.1 or later, where the problematic NetworkPolicy has been removed.'}, {'type': 'list_item', 'content': 'kubectl delete networkpolicy -n <namespace> -l name=inter-ns-'}, {'type': 'list_item', 'content': 'Upgrade fullchain to version 0.1.1 or later.'}] [2]