orca-cve-blast-radius

Solid

CVE blast-radius analysis — given a single CVE-ID, find every affected asset across all accounts, rank by real exposure (internet-facing, attack-path participant, crown jewel) instead of static CVSS. Use when user asks about a specific CVE's environmental impact (e.g., "blast radius of CVE-2024-1234", "where are we affected by Log4Shell", "which assets have CVE-2021-44228", "who is exposed to CVE-XXXX").

AI & Automation 50 stars 9 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
57
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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: Ac...

Details

Author
orcasecurity
Repository
orcasecurity/orca-skills
Created
4 months ago
Last Updated
5 days ago
Language
N/A
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category