New to Claude Skills? Learn how to install them →

getsentry on GitHub

GitHub Actions Security Review

Free

Identify vulnerabilities in GitHub Actions workflows.

by getsentry907 stars on getsentry/skills
2 views
Updated Aug 8, 2026
Get this skill

Free · Opens the source repo

What GitHub Actions Security Review does

The GitHub Actions Security Review skill is designed for developers and security professionals who need to assess the security of their CI/CD workflows in GitHub Actions. This skill focuses on identifying exploitable vulnerabilities that could be leveraged by external attackers, ensuring that workflows are robust against common attack vectors. By analyzing workflow files and associated configurations, it provides concrete exploitation scenarios for any identified issues, rather than theoretical concerns.

When using this skill, you will review various files, including workflow definitions and action configurations, to trace potential attack paths. The skill is built on real-world exploitation patterns, allowing users to understand how attackers might exploit specific vulnerabilities. Each finding must include a detailed exploitation scenario, ensuring that users can comprehend the risks and take appropriate action to mitigate them.

The skill encompasses a variety of checks for common vulnerability classes, such as pwn requests, expression injection, unauthorized command execution, and credential escalation. It emphasizes the importance of reporting only high and medium confidence findings, which are backed by thorough analysis and concrete evidence. This structured approach helps maintain focus on actionable insights that can enhance the security posture of GitHub Actions workflows.

Overall, this skill is essential for teams looking to strengthen their CI/CD security practices by providing a clear methodology for identifying and addressing vulnerabilities in their GitHub Actions implementations.

When to use it

Use this skill when you need to conduct a security review of GitHub Actions workflows, especially if you're concerned about exploitation risks.

When not to use it

This skill is not suitable for reviewing workflows in repositories outside your control or for assessing GitHub App installation permissions.

What you can build with it

Conducting a Security Audit

Use this skill to perform a thorough security audit of your GitHub Actions workflows, identifying potential vulnerabilities before they can be exploited.

Assessing CI/CD Security Practices

Integrate this skill into your CI/CD pipeline to regularly assess and improve the security of your GitHub Actions implementations.

Training Security Teams

Leverage the skill's structured approach to train security teams on identifying and mitigating vulnerabilities in CI/CD workflows.

How to install GitHub Actions Security Review

View source

1. Install with the skills CLI

npx skills add getsentry/skills/gha-security-review --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by getsentry
<!-- Attack patterns and real-world examples sourced from the HackerBot Claw campaign analysis by StepSecurity (2025): https://www.stepsecurity.io/blog/hackerbot-claw-github-actions-exploitation -->

GitHub Actions Security Review

Find exploitable vulnerabilities in GitHub Actions workflows. Every finding MUST include a concrete exploitation scenario — if you can't build the attack, don't report it.

This skill encodes attack patterns from real GitHub Actions exploits — not generic CI/CD theory.

Scope

Review the workflows provided (file, diff, or repo). Research the codebase as needed to trace complete attack paths before reporting.

Files to Review

  • .github/workflows/*.yml — all workflow definitions
  • action.yml / action.yaml — composite actions in the repo
  • .github/actions/*/action.yml — local reusable actions
  • Config files loaded by workflows: CLAUDE.md, AGENTS.md, Makefile, shell scripts under .github/

Out of Scope

  • Workflows in other repositories (only note the dependency)
  • GitHub App installation permissions (note if relevant)

Threat Model

Only report vulnerabilities exploitable by an external attacker — someone without write access to the repository. The attacker can open PRs from forks, create issues, and post comments. They cannot push to branches, trigger workflow_dispatch, or trigger manual workflows.

Do not flag vulnerabilities that require write access to exploit:

  • workflow_dispatch input injection — requires write access to trigger
  • Expression injection in push-only workflows on protected branches
  • workflow_call input injection where all callers are internal
  • Secrets in workflow_dispatch/schedule-only workflows

Confidence

Report only HIGH and MEDIUM confidence findings. Do not report theoretical issues.

ConfidenceCriteriaAction
HIGHTraced the full attack path, confirmed exploitableReport with exploitation scenario and fix
MEDIUMAttack path partially confirmed, uncertain linkReport as needs verification
LOWTheoretical or mitigated elsewhereDo not report

For each HIGH finding, provide all five elements:

  1. Entry point — How does the attacker get in? (fork PR, issue comment, branch name, etc.)
  2. Payload — What does the attacker send? (actual code/YAML/input)
  3. Execution mechanism — How does the payload run? (expression expansion, checkout + script, etc.)
  4. Impact — What does the attacker gain? (token theft, code execution, repo write access)
  5. PoC sketch — Concrete steps an attacker would follow

If you cannot construct all five, report as MEDIUM (needs verification).


Step 1: Classify Triggers and Load References

For each workflow, identify triggers and load the appropriate reference:

Trigger / PatternLoad Reference
pull_request_targetreferences/pwn-request.md
issue_comment with command parsingreferences/comment-triggered-commands.md
${{ }} in run: blocksreferences/expression-injection.md
PATs / deploy keys / elevated credentialsreferences/credential-escalation.md
Checkout PR code + config file loadingreferences/ai-prompt-injection-via-ci.md
Third-party actions (especially unpinned)references/supply-chain.md
permissions: block or secrets usagereferences/permissions-and-secrets.md
Self-hosted runners, cache/artifact usagereferences/runner-infrastructure.md
Any confirmed findingreferences/real-world-attacks.md

Load references selectively — only what's relevant to the triggers found.

Step 2: Check for Vulnerability Classes

Check 1: Pwn Request

Does the workflow use pull_request_target AND check out fork code?

  • Look for actions/checkout with ref: pointing to PR head
  • Look for local actions (./.github/actions/) that would come from the fork
  • Check if any run: step executes code from the checked-out PR

Check 2: Expression Injection

Are ${{ }} expressions used inside run: blocks in externally-triggerable workflows?

  • Map every ${{ }} expression in every run: step
  • Confirm the value is attacker-controlled (PR title, branch name, comment body — not numeric IDs, SHAs, or repository names)
  • Confirm the expression is in a run: block, not if:, with:, or job-level env:

Check 3: Unauthorized Command Execution

Does an issue_comment-triggered workflow execute commands without authorization?

  • Is there an author_association check?
  • Can any GitHub user trigger the command?
  • Does the command handler also use injectable expressions?

Check 4: Credential Escalation

Are elevated credentials (PATs, deploy keys) accessible to untrusted code?

  • What's the blast radius of each secret?
  • Could a compromised workflow steal long-lived tokens?

Check 5: Config File Poisoning

Does the workflow load configuration from PR-supplied files?

  • AI agent instructions: CLAUDE.md, AGENTS.md, .cursorrules
  • Build configuration: Makefile, shell scripts

Check 6: Supply Chain

Are third-party actions securely pinned to full SHAs?

  • Pin third-party / external actions and reusable workflows only
  • Do not flag first-party actions/* or github/* on version tags
  • Do not flag same-repo / vendored (./.github/actions/...) as supply-chain pinning issues
  • Only report when the job has secrets, OIDC, write token, release, deploy, package, or signing power — unprivileged read-only CI is not a finding

Check 7: Permissions and Secrets

Are workflow permissions minimal? Are secrets properly scoped?

Check 8: Runner Infrastructure

Are self-hosted runners, caches, or artifacts used securely?

Safe Patterns (Do Not Flag)

Before reporting, check if the pattern is actually safe:

PatternWhy Safe
pull_request_target WITHOUT checkout of fork codeNever executes attacker code
${{ github.event.pull_request.number }} in run:Numeric only — not injectable
${{ github.repository }} / github.repository_ownerRepo owner controls this
${{ secrets.* }}Not an expression injection vector
${{ }} in if: conditionsEvaluated by Actions runtime, not shell
${{ }} in with: inputsPassed as string parameters, not shell-evaluated
Third-party actions pinned to full SHAImmutable reference
First-party actions/* / github/* on version tagsOutside third-party pinning policy — do not flag
Same-repo / vendored local actionsNot third-party supply chain (review pwn-request separately)
pull_request trigger (not _target)Runs in fork context with read-only token
Any expression in workflow_dispatch/schedule/push to protected branchesRequires write access — outside threat model

Key distinction: ${{ }} is dangerous in run: blocks (shell expansion) but safe in if:, with:, and env: at the job/step level (Actions runtime evaluation).

Step 3: Validate Before Reporting

Before including any finding, read the actual workflow YAML and trace the complete attack path:

  1. Read the full workflow — don't rely on grep output alone
  2. Trace the trigger — confirm the event and check if: conditions that gate execution
  3. Trace the expression/checkout — confirm it's in a run: block or actually references fork code
  4. Confirm attacker control — verify the value maps to something an external attacker sets
  5. Check existing mitigations — env var wrapping, author_association checks, restricted permissions, SHA pinning

If any link is broken, mark MEDIUM (needs verification) or drop the finding.

If no checks produced a finding, report zero findings. Do not invent issues.

Step 4: Report Findings

## GitHub Actions Security Review

### Findings

#### [GHA-001] [Title] (Severity: Critical/High/Medium)
- **Workflow**: `.github/workflows/release.yml:15`
- **Trigger**: `pull_request_target`
- **Confidence**: HIGH — confirmed through attack path tracing
- **Exploitation Scenario**:
  1. [Step-by-step attack]
- **Impact**: [What attacker gains]
- **Fix**: [Code that fixes the issue]

### Needs Verification
[MEDIUM confidence items with explanation of what to verify]

### Reviewed and Cleared
[Workflows reviewed and confirmed safe]

If no findings: "No exploitable vulnerabilities identified. All workflows reviewed and cleared."

Frequently asked questions about GitHub Actions Security Review

Similar skills