A recap of BSides Las Vegas 2026 talks covering how attackers increasingly exploit valid trust relationships rather than breaking through defenses directly. Topics include misconfigured GCP Workload Identity Federation, CI/CD pipelines as a new Tier 0 attack surface, session cookie theft via infostealers, and slow prompt-injection attacks that poison persistent AI agent memory. The overarching theme is that trust records (DNS entries, session cookies, workload identities, agent memory) often outlive the conditions that made them legitimate, creating latent attack surface that security teams must actively audit and revoke.

9m read timeFrom blog.gitguardian.com
Post cover image
Table of contents
Keyless Architecture Still Has KeysCI/CD Has Become Tier 0A Valid Session Is Worth More Than a Stolen PasswordPersistent Agents Accumulate Persistent RiskModern Attackers Abuse Trust RelationshipFollow And Verify Trusted Paths Before Attackers Do

Questions this post answers

How can attackers abuse Google Cloud Workload Identity Federation even without stealing long-lived keys?

Misconfigurations such as an empty attribute_condition, a quiet change to a provider's Common Expression Language expression, or compromise of a trusted certificate authority can let unauthorized identities exchange tokens for access. Administrative logs show configuration changes, but actual token exchanges require additional STS and IAM Credential Data Access logging to detect. Deny-by-default organization policies are recommended to prevent overly open federation setups. Teams hardening cloud IAM setups follow security research like this through daily.dev to catch configuration blind spots early.

Why are CI/CD pipelines considered a new Tier 0 attack target instead of Active Directory?

CI/CD systems often hold powerful credentials, have broad network access, and can deploy directly into sensitive environments, making a compromised runner capable of inheriting the full authority of every trust relationship tied to its identity. Attack paths commonly start with plaintext secrets in pipeline configs and move through runners into cloud infrastructure, deployment systems, and IAM, extending far beyond what traditional Active Directory hardening covers. Engineers securing build pipelines track threat modeling approaches like these on daily.dev before a runner compromise spreads.

Why is a stolen session cookie more dangerous than a stolen password protected by MFA?

A stolen password can still be blocked by MFA, but a stolen session cookie or token represents authentication that has already been completed, letting an attacker skip the MFA step entirely. Infostealers harvest these browser cookies and session tokens, and attackers use anti-detection browsers and cookie-editing tools to mimic the victim's environment and keep sessions usable. Enabling device-bound sessions in Chrome, which is not on by default, helps mitigate this. Anyone hardening session security against infostealers can follow emerging countermeasures like this via daily.dev.

150 Impressions