CVE-2026-11769 PUBLISHED

Operator - Namespaced User Path Traversal

Assigner: GRAFANA
Reserved: 09.06.2026 Published: 13.06.2026 Updated: 13.06.2026

We have released version 5.24.0 of the Grafana Operator. This patch includes a CRITICAL severity security fix for a path traversal/privilege escalation vulnerability in the Grafana Operator.

<h3>Summary</h3>

The Grafana Operator supports loading dashboards & library panels using the jsonnet data templating language. The jsonnet expression is evaluated in the context of the operator manager pod.

<h3>Impact</h3>

It is possible for a malicious user who can create Dashboard or LibraryPanel resources for a Grafana instance to obtain the Kubernetes service account token of the Grafana Operator manager.

<h3>Affected versions</h3>

All Grafana Operator versions <= 5.23

<h3>Solutions and mitigations</h3>

All installations should be upgraded as soon as possible.

As a workaround, the following ValidatingAdmissionPolicy prevent the creation or modification of jsonnet based resources:

apiVersion: admissionregistration.k8s.io/v1

kind: ValidatingAdmissionPolicy

metadata:

name: "prevent-jsonnet-dashboards"

spec:

failurePolicy: Fail matchConstraints: resourceRules: - apiGroups: ["grafana.integreatly.org"] apiVersions: ["v1beta1"] operations: ["CREATE", "UPDATE"] resources: ["grafanadashboards", "grafanalibrarypanels"] validations: - expression: "!has(object.spec.jsonnetLib)"

<hr />

apiVersion: admissionregistration.k8s.io/v1

kind: ValidatingAdmissionPolicyBinding

metadata:

name: "prevent-jsonnet-dashboards-clusterwide"

spec:

policyName: "prevent-jsonnet-dashboards" validationActions: [Deny]

<h3>Acknowledgement</h3>

We would like to thank Artem Cherezov for responsibly disclosing the vulnerability.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:N/SC:H/SI:H/SA:N
CVSS Score: 6.4

Product Status

Vendor Grafana
Product Grafana Operator
Versions Default: unaffected
  • affected from 0 to 5.23.0 (incl.)

Credits

  • cherez0ff finder

References