GKE Secret Access from Node or Denied Service Account

Last updated 16 days ago on 2026-07-17
Created 16 days ago on 2026-07-17

About

Detects GKE Secrets API activity that should not occur in normal cluster operation: a node identity (system:node:*) performing secrets get or list, or a pod service account failing a secrets get. Kubelet and node credentials are not expected to call the Secrets API for enumeration or direct reads, and a denied service-account secret get could indicate stolen-token probing or over-privileged tooling reaching beyond its RBAC.
Tags
Domain: CloudDomain: KubernetesData Source: GCPData Source: Google Cloud PlatformUse Case: Threat DetectionTactic: Credential AccessLanguage: kuery
Severity
medium
Risk Score
47
MITRE ATT&CK™

Credential Access (TA0006)(external, opens in a new tab or window)

False Positive Examples
Rare node maintenance or diagnostic tooling may touch the Secrets API; validate against change windows and approved node management paths. Misconfigured workloads can generate repeated denied secret gets during startup; confirm RBAC intent before treating as compromise.
License
Elastic License v2(external, opens in a new tab or window)

Definition

Rule Type
Query (Kibana Query Language)
Integration Pack
Prebuilt Security Detection Rules
Index Patterns
logs-gcp.audit-*
Related Integrations

gcp(external, opens in a new tab or window)

Query
text code block:
data_stream.dataset:gcp.audit and service.name:k8s.io and source.ip:(* and not (127.0.0.1 or "::1")) and ( ( client.user.email:system\:node\:* and event.action:(io.k8s.core.v1.secrets.get or io.k8s.core.v1.secrets.list) ) or ( client.user.email:system\:serviceaccount\:* and event.action:io.k8s.core.v1.secrets.get and event.outcome:failure ) )

Install detection rules in Elastic Security

Detect GKE Secret Access from Node or Denied Service Account in the Elastic Security detection engine by installing this rule into your Elastic Stack.

To setup this rule, check out the installation guide for Prebuilt Security Detection Rules(external, opens in a new tab or window).