Skip to content

Commit

Permalink
Merge pull request #146 from JimBugwadia/nginx-custom-snippets
Browse files Browse the repository at this point in the history
policy to check CM and Ingress for nginx custom snippets
  • Loading branch information
JimBugwadia authored Oct 21, 2021
2 parents 7d77236 + c138c43 commit ead3994
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 0 deletions.
40 changes: 40 additions & 0 deletions best-practices/nginx-custom-snippets/disallow-custom-snippets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: disallow-ingress-nginx-custom-snippets
annotations:
policies.kyverno.io/title: Disallow Custom Snippets
policies.kyverno.io/category: Best Practice

This comment has been minimized.

Copy link
@chipzoller

chipzoller Oct 22, 2021

Contributor

This should have been "Best Practices" because now it's created duplication in the filter.

image

policies.kyverno.io/subject: ConfigMap, Ingress
policies.kyverno.io/minversion: 1.4.3
policies.kyverno.io/description: >-
Users that can create or update ingress objects can use the custom snippets
feature to obtain all secrets in the cluster (CVE-2021-25742). This policy
disables allow-snippet-annotations in the ingress-nginx configuration and
blocks *-snippet annotations on an Ingress.
See: https://github.com/kubernetes/ingress-nginx/issues/7837
spec:
validationFailureAction: enforce
rules:
- name: check-config-map
message: "ingress-nginx allow-snippet-annotations must be set to false"
match:
resources:
kinds:
- ConfigMap
validate:
pattern:
data:
=(allow-snippet-annotations) : "false"
- name: check-ingress-annotations
message: "ingress-nginx custom snippets are not allowed"
match:
resources:
kinds:
- Ingress
validate:
pattern:
metadata:
=(annotations):
X(*-snippets): "?*"

69 changes: 69 additions & 0 deletions best-practices/nginx-custom-snippets/resources.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
apiVersion: v1
data:
allow-snippet-annotations: "false"
kind: ConfigMap
metadata:
name: config-map-false
---
apiVersion: v1
data:
allow-snippet-annotations: "true"
kind: ConfigMap
metadata:
name: config-map-true
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: cafe-ingress-with-snippets
annotations:
nginx.org/server-snippets: |
location / {
return 302 /coffee;
}
nginx.org/location-snippets: |
add_header my-test-header test-value;
spec:
rules:
- host: cafe.example.com
http:
paths:
- path: /tea
pathType: Prefix
backend:
service:
name: tea-svc
port:
number: 80
- path: /coffee
pathType: Prefix
backend:
service:
name: coffee-svc
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: cafe-ingress
spec:
rules:
- host: cafe.example.com
http:
paths:
- path: /tea
pathType: Prefix
backend:
service:
name: tea-svc
port:
number: 80
- path: /coffee
pathType: Prefix
backend:
service:
name: coffee-svc
port:
number: 80
26 changes: 26 additions & 0 deletions best-practices/nginx-custom-snippets/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: disallow_nginx_custom_snippets
policies:
- disallow-custom-snippets.yaml
resources:
- resources.yaml
results:
- policy: disallow-ingress-nginx-custom-snippets
rule: check-config-map
resource: config-map-true
kind: ConfigMap
result: fail
- policy: disallow-ingress-nginx-custom-snippets
rule: check-config-map
resource: config-map-false
kind: ConfigMap
result: pass
- policy: disallow-ingress-nginx-custom-snippets
rule: check-ingress-annotations
resource: cafe-ingress-with-snippets
kind: Ingress
result: fail
- policy: disallow-ingress-nginx-custom-snippets
rule: check-ingress-annotations
resource: cafe-ingress
kind: Ingress
result: pass

0 comments on commit ead3994

Please sign in to comment.