Research
Cloud Token Drift After Service Decommission

Cloud Token Drift After Service Decommission

XENOPS Research XENOPS Research Sep 14, 2025

Tracking long-lived tokens that persist after service teardown.

Observation

Service decommissioning rarely removes embedded tokens in automation or vendor integrations.

Approach

We diff project IAM policy snapshots against a list of active services and flag credentials with no owning workload.

SELECT token_id, last_used
FROM token_audit
WHERE owning_service IS NULL
ORDER BY last_used DESC;

Outcome

The audit surfaced 12% of tokens with no active service, including two with write permissions.

Table of contents