Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
briiirussell avatar

Incident Triage

  • 138 installs
  • 341 repo stars
  • Updated May 27, 2026
  • briiirussell/cybersecurity-skills

Incident Triage is a Claude skill that guides rapid triage and initial response to security incidents following NIST SP 800-61 methodology.

About

This skill guides rapid triage and initial response to security incidents using NIST SP 800-61 methodology. A developer or responder uses it to classify an incident's type and severity, contain it without destroying volatile evidence, preserve artifacts in volatility order, and extract indicators of compromise. It outputs a structured triage report with a timeline, IOCs, containment actions, and an escalation checklist.

  • Guides rapid triage and containment of security incidents following NIST SP 800-61
  • Classifies incident type and severity, then preserves evidence by order of volatility
  • Extracts indicators of compromise and produces an escalation-ready triage report

Incident Triage by the numbers

  • 138 all-time installs (skills.sh)
  • Ranked #922 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

incident-triage capabilities & compatibility

Capabilities
disk forensics · recon
Use cases
security audit · debugging
Platforms
Linux · Windows
From the docs

What incident-triage says it does

Guide rapid triage and initial response to security incidents. Follow NIST SP 800-61 methodology.
SKILL.md
**Critical: Do NOT power off systems.** Volatile memory contains evidence.
SKILL.md
npx skills add https://github.com/briiirussell/cybersecurity-skills --skill incident-triage

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs138
repo stars341
Last updatedMay 27, 2026
Repositorybriiirussell/cybersecurity-skills

What it does

Triage and contain a live security incident, preserve evidence, and extract IOCs following NIST SP 800-61.

Who is it for?

Responders handling a live security incident who need to classify, contain, and preserve evidence quickly.

Skip if: Deep post-containment disk or memory analysis (use disk-forensics) or counter-attacking an adversary.

When should I use this skill?

The user mentions incident response, security incident, breach, compromised, malware detected, suspicious activity, IOC, or 'we've been hacked'.

What you get

A contained incident with preserved evidence, extracted IOCs, and an escalation-ready triage report.

  • Incident triage report
  • IOC list
  • Containment actions and escalation checklist

By the numbers

  • 5-step triage methodology
  • 5-priority response order
  • 4 severity tiers (Critical/High/Medium/Low)

Files

SKILL.mdMarkdownGitHub ↗

Incident Triage — Security Incident Response

Guide rapid triage and initial response to security incidents. Follow NIST SP 800-61 methodology.

Cross-references: siem-detection for the rules that produced the alert this triage is responding to, disk-forensics for deeper disk and memory analysis once a host is contained, breach-patterns for the post-incident pattern extraction that hardens against recurrence, soc-operations for the operational layer above this skill (runbooks, escalation, handoff), security-comms for the stakeholder / customer notifications the response generates, privacy-engineering / hipaa-audit / pci-audit for the regulatory-clock determination when personal data, PHI, or cardholder data is involved, ai-risk-management for AI-specific incident classes (model failure, fairness drift, jailbreak exploitation in production).

Priorities (in order)

1. Preserve human safety 2. Contain the incident to prevent further damage 3. Preserve evidence for investigation 4. Identify root cause and scope 5. Document everything

Step 1: Classification

Determine incident type:

  • Malware: ransomware, trojan, worm, cryptominer
  • Unauthorized access: compromised credentials, exploitation
  • Data exfiltration: data theft, insider threat
  • Denial of service
  • Web compromise: defacement, skimming, backdoor
  • Phishing / social engineering

Determine severity:

  • Critical: active data exfiltration, ransomware spreading, critical system compromise
  • High: confirmed compromise, malware detected, unauthorized access
  • Medium: suspicious activity, potential indicators, failed attacks
  • Low: policy violation, reconnaissance detected, likely false positive

Step 2: Initial Containment

Based on type and severity:

  • Network: block suspicious IPs/domains at firewall
  • Host: isolate affected system (network disconnect, NOT power off — volatile memory is evidence)
  • Account: disable compromised accounts, force password resets
  • Application: disable affected service if safe to do so

Critical: Do NOT power off systems. Volatile memory contains evidence.

Step 3: Evidence Preservation

Capture in order of volatility (most volatile first):

# 1. Running processes
ps auxf                         # Linux
tasklist /v                     # Windows

# 2. Network connections
ss -tupn                        # Linux
netstat -anob                   # Windows

# 3. Logged-in users
who -a                          # Linux
query user                      # Windows

# 4. Open files
lsof -nP                        # Linux

# 5. System logs
journalctl --since "1 hour ago" # Linux/systemd

If memory forensics tools are available (LiME, WinPmem), capture a memory dump before anything else.

Step 4: Initial Analysis

For each suspicious indicator, document:

  • What: describe the artifact
  • When: timestamps in UTC
  • Where: affected system(s)
  • How: how it was detected

Common analysis:

  • Process tree: look for unusual process names, paths, or parent-child relationships
  • Network indicators: unusual outbound connections, DNS queries to suspicious domains, beaconing patterns (regular intervals)
  • File indicators: recently modified files in unusual locations, hidden files, new executables
  • Log analysis: authentication failures, privilege escalation, service changes, cleared logs
  • Persistence: crontab, systemd units, registry Run keys, scheduled tasks, startup items

Step 5: IOC Extraction

Extract and document all indicators of compromise:

TypeExamples
IP addressesSource and destination IPs
DomainsC2 domains, phishing domains
File hashesMD5 and SHA256 of suspicious files
File pathsMalware locations, dropped files
Email addressesPhishing sender addresses
URLsMalicious URLs, C2 endpoints
User agentsUnusual or known-malicious user agents

Output Format

# Incident Triage Report
## Incident ID: [ID]
## Date/Time: [UTC]
## Severity: [Critical/High/Medium/Low]
## Classification: [incident type]
## Status: [Triage/Contained/Analyzing/Resolved]

### Summary
[2-3 sentence overview]

### Affected Systems
| Hostname | IP | Role | Status |
|----------|-----|------|--------|

### Timeline
| Time (UTC) | Event | Source | Notes |
|------------|-------|--------|-------|

### Indicators of Compromise
| Type | Value | Context | Confidence |
|------|-------|---------|------------|

### Containment Actions Taken
- [ ] [Action and result]

### Evidence Preserved
| Type | Location | Hash | Notes |
|------|----------|------|-------|

### Recommended Next Steps
1. [Immediate priority]
2. [Short-term action]
3. [Follow-up investigation]

### Escalation Checklist
- [ ] Management notified
- [ ] Legal notified (if data breach)
- [ ] Law enforcement (if applicable)
- [ ] Affected parties notified (if data breach)

Boundaries

  • Focus on defense and containment, not counter-attack
  • Preserve evidence — never modify logs or timestamps
  • Recommend legal/management escalation for confirmed breaches
  • If unsure about a containment action's impact, advise caution and ask
  • Never recommend "hacking back" or retaliatory actions
  • Refuse requests to cover up incidents or tamper with evidence

References

  • NIST SP 800-61r2: Computer Security Incident Handling Guide
  • SANS Incident Handler's Handbook
  • MITRE ATT&CK Framework

Related skills

FAQ

Should I power off a compromised host?

No. The skill is explicit that you must not power off systems because volatile memory contains evidence; isolate the host by disconnecting the network instead.

What methodology does it follow?

NIST SP 800-61, running classification, initial containment, evidence preservation in order of volatility, initial analysis, and IOC extraction.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.