orca-cve-blast-radius

orca-cve-blast-radius is a skill for Claude Code from orcasecurity/orca-skills. It costs 111 tokens per session (3,158 once invoked), scanned A, original, MIT.

A security review for a CVE, which is a published identifier for a known software vulnerability. It finds affected cloud assets and ranks them by real exposure, such as internet access, attack paths, or importance to the business.

In plain words
What is it for?
Checking where a specific CVE affects cloud assets, across accounts or selected environments, and prioritising the systems that need attention first.
Why use it?
A CVSS score describes general severity but does not show which systems in your environment matter most. This review focuses attention on the assets with the greatest practical risk.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the orca-skills plugin — 19 skills shipped together

Good fit Checking where a specific CVE affects cloud assets, across accounts or selected environments, and prioritising the systems that need attention first.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orcasecurity/orca-skills/orca-cve-blast-radius
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add orcasecurity/orca-skills --skill orca-cve-blast-radius
Clone the repo
git clone --depth 1 https://github.com/orcasecurity/orca-skills

Made for: Claude Code.

Or install orca-skills, the plugin that ships this one along with the rest of its 19 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orca-cve-blast-radius

README.md
[![agentmods](https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-cve-blast-radius/github.svg)](https://agentmods.dev/skills/orcasecurity/orca-skills/orca-cve-blast-radius)
Your own site
<a href="https://agentmods.dev/skills/orcasecurity/orca-skills/orca-cve-blast-radius"><img src="https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-cve-blast-radius/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orca-cve-blast-radius

Your own site · 80×15
<a href="https://agentmods.dev/skills/orcasecurity/orca-skills/orca-cve-blast-radius"><img src="https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-cve-blast-radius.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,158 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00111 $0.03158
Opus 5 $0.00056 $0.01579
Sonnet 5 $0.00022 $0.00632
Haiku 4.5 $0.00011 $0.00316

Measured 12d ago against content hash b4cfdbd9422e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

orca-cve-blast-radius scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/orca-cve-blast-radius/SKILL.md · 323 lines

How it starts

The opening of the file, as written. The whole thing — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orca CVE Blast-Radius Skill

Answers the question: "This CVE just dropped — which of our assets are actually at risk, ranked by real exposure?"

Static CVSS doesn't tell you which workloads matter. This skill takes a CVE-ID, finds every affected asset across all accounts, and ranks them by runtime exposure context — internet-facing, attack-path participation, crown jewel status, and existing related alerts.

Usage

/orca-cve-blast-radius CVE-2021-44228
/orca-cve-blast-radius CVE-2024-1234
/orca-cve-blast-radius CVE-2024-3094 prod

Or natural language:

  • "blast radius of CVE-2024-1234"
  • "where are we affected by Log4Shell?"
  • "which assets have CVE-2021-44228?"
  • "show me CVE-2024-3094 across all accounts"

Processing Logic

Step 1: Parse the CVE-ID

Extract a single CVE-ID in CVE-YYYY-NNNNN form. If the user provided a name (e.g. "Log4Shell", "xz backdoor", "Spring4Shell"), map to the canonical CVE-ID first using a discovery_search query like "<name> CVE". If the mapping is ambiguous, list candidates and ask the user to pick.

Optional scope arg: prod, staging, account <id>. Default: all accounts.

Step 2: Find every affected asset (parallel)

Run all three queries in parallel:

Query 1: Asset hits by CVE-ID

discovery_search:
  search_phrase: "assets with <CVE-ID>"
  limit: 50

Query 2: Critical exposure hits

discovery_search:
  search_phrase: "internet facing assets with <CVE-ID>"
  limit: 50

Query 3: Active alert hits (catches assets where Orca raised the CVE as an alert)

discovery_search:
  search_phrase: "open alerts for <CVE-ID>"
  limit: 50

De-duplicate by asset_id / group_unique_id after the three queries return. The intersection (assets in all three sets) is the highest priority.

Step 3: Enrich top affected assets (parallel)

Take the top 10 affected assets (prioritized by: internet-facing first → then by alert count → then by asset name). Per asset, in parallel:

get_asset_by_id:
  asset_id: <UUID>
get_asset_related_alerts_summary:
  asset_id: <UUID>
get_asset_related_attack_paths_summary:
  asset_id: <UUID>
get_asset_crown_jewel_info:
  group_unique_id: <group_unique_id>

Read the full file on GitHub · 323 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 323 lines · 111 tokens per session scan A b4cfdbd9422e

Subscribe to this mod's changes

orca-cve-blast-radius is a skill published in the GitHub repository orcasecurity/orca-skills (50 stars, last pushed 6d ago), licensed MIT. It adds 111 tokens to every session and 3,158 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

happiness-skill

A Chinese-language guide to happiness based on reducing unmet wants, focusing on the present, and treating happiness as a trainable skill.

kangarooking/cangjie-skill · 136 tokens

docx-comment-reply

Reply to comments (批注) in Word .docx/.doc files: extract comment context, draft replies, write threaded replies back, and validate OOXML.

foryourhealth111-pixel/Vibe-Skills · 39 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

influence-psychology

Apply the seven principles of ethical persuasion (reciprocity, commitment, social proof, authority, liking, scarcity, unity) to product design, copy, and sales. Use when the user mentions "social proof", "persuasive copy", "why users dont convert", "ethical persuasion", "reciprocity", "scarcity tactics", "commitment…

wondelai/skills · 156 tokens

jobs-to-be-done

Discover what customers truly need by analyzing the "job" they hire your product to do. Use when the user mentions "customer discovery", "why customers churn", "what job does this solve", "competing against luck", "product-market fit", "switching behavior", "milkshake moment", or "functional vs emotional jobs". Also…

wondelai/skills · 137 tokens

refactoring-ui

Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions "my UI looks off" (or amateur/unprofessional), "fix the design", "Tailwind styling", "color palette", "visual hierarchy", "design system", "spacing scale", or "component styling". Also trigger when building consistent…

wondelai/skills · 132 tokens