-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21441f0
commit 00e7d24
Showing
5 changed files
with
136 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "Symlink Exchange Can Allow Host Filesystem Access (CVE-2021-25741)", | ||
"attributes": { | ||
"armoBuiltin": true | ||
}, | ||
"description": "A security issue was discovered in Kubernetes where a user may be able to create a container with subPath volume mounts to access files & directories outside of the volume, including on the host filesystem. This was affected at the following versions: v1.22.0 - v1.22.1, v1.21.0 - v1.21.4, v1.20.0 - v1.20.10, version v1.19.14 and lower.", | ||
"remediation": "To mitigate this vulnerability without upgrading kubelet, you can disable the VolumeSubpath feature gate on kubelet and kube-apiserver, and remove any existing Pods making use of the feature.", | ||
"rulesNames": [ | ||
"Symlink-Exchange-Can-Allow-Host-Filesystem-Access" | ||
], | ||
"id": "C-0058" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
package armo_builtins | ||
|
||
|
||
deny[msga] { | ||
nodes := input[_] | ||
current_version := nodes.status.nodeInfo.kubeletVersion | ||
isVulnerableVersion(current_version) | ||
pod := input[_] | ||
pod.kind == "Pod" | ||
container := pod.spec.containers[_] | ||
isSubPathContainer(container) | ||
|
||
msga := { | ||
"alertMessage": sprintf("You may be vulnerable to CVE-2021-25741. You have a Node with version: %v and the following container : %v in pod : %v with subPath/subPathExpr", [current_version, container.name, pod.metadata.name]), | ||
"alertObject": {"k8SApiObjects": [nodes, pod]}, | ||
} | ||
} | ||
|
||
|
||
deny[msga] { | ||
nodes := input[_] | ||
current_version := nodes.status.nodeInfo.kubeletVersion | ||
isVulnerableVersion(current_version) | ||
wl := input[_] | ||
spec_template_spec_patterns := {"Deployment","ReplicaSet","DaemonSet","StatefulSet","Job"} | ||
spec_template_spec_patterns[wl.kind] | ||
container := wl.spec.template.spec.containers[_] | ||
isSubPathContainer(container) | ||
|
||
msga := { | ||
"alertMessage": sprintf("You may be vulnerable to CVE-2021-25741. You have a Node with version: %v and the following container : %v in %v : %v with subPath/subPathExpr", [current_version, container.name, wl.kind, wl.metadata.name]), | ||
"alertObject": {"k8SApiObjects": [nodes, wl]}, | ||
} | ||
} | ||
|
||
|
||
|
||
deny[msga] { | ||
nodes := input[_] | ||
current_version := nodes.status.nodeInfo.kubeletVersion | ||
isVulnerableVersion(current_version) | ||
wl := input[_] | ||
wl.kind == "CronJob" | ||
container = wl.spec.jobTemplate.spec.template.spec.containers[_] | ||
isSubPathContainer(container) | ||
|
||
msga := { | ||
"alertMessage": sprintf("You may be vulnerable to CVE-2021-25741. You have a Node with version: %v and the following container : %v in %v : %v with subPath/subPathExpr", [current_version, container.name, wl.kind, wl.metadata.name]), | ||
"alertObject": {"k8SApiObjects": [nodes, wl]}, | ||
} | ||
} | ||
|
||
|
||
|
||
isSubPathContainer(container){ | ||
container.volumeMounts[_].subPath | ||
} | ||
|
||
isSubPathContainer(container){ | ||
container.volumeMounts[_].subPathExpr | ||
} | ||
|
||
isVulnerableVersion(version){ | ||
version <= "v1.19.14" | ||
} | ||
|
||
isVulnerableVersion(version){ | ||
version >= "v1.22.0" | ||
version <= "v1.22.1" | ||
} | ||
|
||
|
||
isVulnerableVersion(version){ | ||
version >= "v1.21.0" | ||
version <= "v1.21.4" | ||
} | ||
|
||
|
||
isVulnerableVersion(version){ | ||
version >= "v1.20.0" | ||
version <= "v1.20.9" | ||
} | ||
|
||
isVulnerableVersion(version){ | ||
version == "v1.20.10" | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "Symlink-Exchange-Can-Allow-Host-Filesystem-Access", | ||
"attributes": { | ||
"armoBuiltin": true | ||
}, | ||
"ruleLanguage": "Rego", | ||
"match": [ | ||
{ | ||
"apiGroups": [ | ||
"*" | ||
], | ||
"apiVersions": [ | ||
"*" | ||
], | ||
"resources": [ | ||
"Deployment", | ||
"ReplicaSet", | ||
"DaemonSet", | ||
"StatefulSet", | ||
"Job", | ||
"Pod", | ||
"CronJob", | ||
"Node" | ||
] | ||
} | ||
], | ||
"ruleDependencies": [ | ||
], | ||
"description": "A security issue was discovered in Kubernetes where a user may be able to create a container with subPath volume mounts to access files & directories outside of the volume, including on the host filesystem. This was affected at the following versions: v1.22.0 - v1.22.1, v1.21.0 - v1.21.4, v1.20.0 - v1.20.10, version v1.19.14 and lower.", | ||
"remediation": "To mitigate this vulnerability without upgrading kubelet, you can disable the VolumeSubpath feature gate on kubelet and kube-apiserver, and remove any existing Pods making use of the feature.", | ||
"ruleQuery": "armo_builtins" | ||
} |