Security

AI GitHub Actions Secret Exposure in Claude Code

3 min read

Summary

Microsoft Threat Intelligence found that Anthropic’s Claude Code GitHub Action could expose CI/CD secrets when AI agents process untrusted GitHub content such as issues, pull requests, and comments. Anthropic fixed the issue in Claude Code 2.1.128, but the research highlights broader risks for any AI-enabled workflow with access to secrets, file reads, or outbound communication.

Need help with Security?Talk to an Expert

Introduction

AI-powered GitHub Actions can speed up issue triage, pull request reviews, and repository automation. But Microsoft’s latest research shows that when these workflows process untrusted content and also have access to secrets or powerful tools, they can become a new attack path inside CI/CD pipelines.

What Microsoft found

Microsoft Threat Intelligence discovered a flaw in Anthropic’s Claude Code GitHub Action that could allow secrets in the runner environment to be exposed.

Key findings include:

  • Untrusted GitHub content can influence the AI agent: issue bodies, PR descriptions, and comments may contain prompt injection payloads.
  • Sandboxing was inconsistent: Bash subprocesses used environment scrubbing protections, but the Read tool did not follow the same isolation model.
  • Sensitive files could be accessed: the agent could read /proc/self/environ, exposing values such as ANTHROPIC_API_KEY and potentially other credentials available to the workflow runner.
  • The issue is fixed: Anthropic mitigated the vulnerability in Claude Code version 2.1.128 by blocking access to sensitive /proc files.

Why this matters for defenders

This research is bigger than a single product bug. Microsoft also observed prompt injection attempts in public repositories using AI-assisted GitHub workflows from multiple vendors.

The core risk is the same across many implementations:

  • User-controlled GitHub content is embedded into an LLM prompt.
  • The model output is treated as actionable.
  • The agent runs in CI/CD with access to repository data, tokens, API keys, or file-read capabilities.

In one example, Microsoft described how an attacker could hide instructions in issue content to steer an AI bot into modifying documentation and creating a pull request containing malicious HTML. That creates potential for supply-chain compromise, XSS, or secret access depending on tool permissions.

Impact on IT and security teams

For administrators and security teams, this means AI-enabled workflow automation should be treated as a high-risk integration when it combines:

  • Untrusted external input
  • Secret access
  • File read/write tools
  • GitHub API permissions
  • External network communication

Traditional CI/CD workflows were designed for deterministic tasks. AI agents introduce a decision-making layer that expands the attack surface and shifts prompt construction, tool access, and runtime isolation into the security boundary.

  • Update Claude Code to version 2.1.128 or later.
  • Review GitHub Actions that process issues, PRs, or comments with AI agents.
  • Limit secret exposure in workflows triggered by untrusted users.
  • Restrict tool permissions for AI actions, especially file-read, write, shell, and PR creation capabilities.
  • Separate trust boundaries so public-facing automation does not share runners or credentials with sensitive deployment workflows.

Organizations adopting agentic DevOps workflows should assume prompt injection is a realistic threat and design controls accordingly.

Need help with Security?

Our experts can help you implement and optimize your Microsoft solutions.

Talk to an Expert

Stay updated on Microsoft technologies

GitHub ActionsCI/CDprompt injectionsecrets managementAI security

Related Posts

Security

Agentic AI Failure Modes Taxonomy Updated by Microsoft

Microsoft has updated its taxonomy of failure modes in agentic AI systems after a year of red teaming against real-world deployments. The v2.0 framework adds seven new risk categories and expanded mitigations, giving security teams a more practical model for assessing agentic AI threats such as MCP/plugin abuse, goal hijacking, and session context contamination.

Security

Red Hat npm Miasma Attack Hits CI/CD Supply Chains

Microsoft Threat Intelligence uncovered a large-scale npm supply chain attack involving trojanized packages under the @redhat-cloud-services scope. The campaign abused a compromised CI/CD publishing workflow to deliver credential-stealing malware targeting GitHub, npm, AWS, Azure, GCP, Kubernetes, and developer systems, making it especially relevant for security teams and DevOps administrators.

Security

Microsoft Build 2026 Security: Code, Agents, Models

At Microsoft Build 2026, Microsoft announced new security capabilities to protect code, AI agents, and models across the development lifecycle. Highlights include the expanded preview of MDASH for exploitability-focused vulnerability discovery and general availability of Microsoft Defender integration with GitHub Code Security to help teams prioritize and remediate real risks faster.

Security

npm Dependency Confusion Attack Targets Developer Environments

Microsoft Threat Intelligence uncovered 33 malicious npm packages that abused dependency confusion to impersonate internal corporate packages and silently profile developer systems during installation. The campaign matters because it targets developer workstations and CI/CD environments, creating a foothold for potential follow-on supply chain attacks.

Security

Microsoft Defender Named a 2026 Endpoint Leader

Microsoft says it has been named a Leader in the 2026 Gartner Magic Quadrant for Endpoint Protection for the seventh consecutive time. The announcement highlights recent Microsoft Defender for Endpoint enhancements, including attack disruption, custom telemetry, simplified onboarding, sovereign-ready deployment options, and protection for local AI agents.

Security

Typosquatted npm Packages Steal Cloud and CI/CD Secrets

Microsoft has uncovered an active npm supply chain attack in which 14 typosquatted packages stole AWS credentials, HashiCorp Vault tokens, GitHub Actions data, and npm publish tokens during installation. The campaign matters because it targets developer and build environments, creating risk of cloud lateral movement, CI/CD compromise, and downstream software supply chain attacks.