Elastic medium stable eql
Kubernetes Sensitive RBAC Change Followed by Workload Modification
Detects a sequence where a principal creates or modifies a Role/ClusterRole to include high-risk permissions (e.g., wildcard access or escalation verbs) and then creates or patches a workload resource (DaemonSet, Deployment, or CronJob) shortly after, which may indicate RBAC-based privilege escalation followed by payload deployment. This pattern is often used by adversaries to gain unauthorized access to sensitive resources and deploy malicious payloads.
Detection Logic
sequence by user.name with maxspan=5m
[any where data_stream.dataset == "kubernetes.audit_logs" and
`kubernetes.audit.annotations.authorization_k8s_io/decision` == "allow" and
kubernetes.audit.objectRef.resource in ("roles", "clusterroles") and
kubernetes.audit.verb in ("create", "update", "patch") and
/* GitOps controllers reconcile RBAC then workloads in the same window */
not user.name in (
"system:serviceaccount:flux-system:kustomize-controller",
"system:serviceaccount:flux-system:helm-controller",
"system:serviceaccount:flux-system:source-controller"
)]
[any where data_stream.dataset == "kubernetes.audit_logs" and
`kubernetes.audit.annotations.authorization_k8s_io/decision` == "allow" and
kubernetes.audit.objectRef.resource in ("daemonsets", "deployments", "cronjobs") and
kubernetes.audit.verb in ("create", "patch") and
/* reduce control-plane / bootstrap noise */
not kubernetes.audit.user.groups == "system:masters"
] Field Validations
Loading…
Comments (0)
Loading comments...