Your K8s Tokens Are Being Stolen by Everyone — and AI Deployment Tools Are the New Open Door
The Convergent Attack Path You're Probably Exposed To
Unit 42 documented a 282% year-over-year increase in Kubernetes service account token theft operations, with 78% targeting IT sector organizations. The critical finding isn't the percentage — it's the convergence. Both Lazarus Group (operating as Slow Pisces, targeting crypto exchange infrastructure via overprivileged CI/CD service account tokens) and opportunistic attackers exploiting React2Shell (CVE-2025-55182, weaponized within 48 hours of disclosure) are executing the identical post-exploitation workflow:
- Compromise a workload (via deserialization, SSRF, or supply chain)
- Enumerate the runtime environment
- Extract the token at
/var/run/secrets/kubernetes.io/serviceaccount/token - Test RBAC scope
- Pivot to the cloud control plane
When a North Korean APT and script kiddies running public exploits converge on the same attack path, that path is your highest-priority hardening target.
Dgraph's CVSS 10.0: One Missed Route, Full Compromise
Dgraph CVE-2026-34976 (CVSS 10.0, no patch available through v25.3.0) exists because the restoreTenant admin mutation was accidentally omitted from the authentication middleware mapping. One missed route. The exploitation paths are devastating: database overwrite via malicious backup injection, SSRF against internal services, local file probing, and — completing the circle — theft of Kubernetes service account tokens. The instructive lesson applies to every API server using middleware-based auth: if you don't have a test that enumerates all registered routes and asserts admin endpoints reject unauthenticated requests, you have the same class of exposure.
AI Infrastructure Is the New Soft Underbelly
This is a separate firefight but the same theme: Flowise CVE-2025-59528 (severity 10, unauthenticated RCE) is under active exploitation right now. Patched last September — any unpatched instance is compromised. Blink found 63% of 135,000 internet-exposed OpenClaw instances running without authentication. ComfyUI backends are being hijacked for cryptomining. These tools were built for developer experimentation and shipped without auth by default.
Meanwhile, Horizon3 reports that Claude found CVE-2026-34197 in Apache ActiveMQ — an authenticated RCE affecting every version released in the past 13 years — in approximately 10 minutes. The AI-accelerated discovery rate means your patch queue is about to spike, and AI deployment tools are the softest targets.
If your ML platform team has been spinning up orchestration tools without running them through the same security review as your production services, that gap is now being actively exploited.
What to do
Set automountServiceAccountToken: false on every K8s pod that doesn't need API server access. Migrate remaining workloads to projected volume tokens with <1h TTL and explicit audience binding.
Audit all Flowise deployments and upgrade to 3.0.6 immediately. Rotate all API keys and credentials Flowise had access to during the vulnerability window.
Add an integration test to CI that enumerates all registered API routes and verifies admin/privileged endpoints return 401/403 without authentication.
Place all AI deployment tools (ComfyUI, Flowise, any LLM orchestration) behind authentication proxies and restrict to internal networks.