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

Threat Detection

  • 605 installs
  • 23.5k repo stars
  • Updated July 17, 2026
  • alirezarezvani/claude-skills

threat-detection is a Claude Code security skill that hunts threats, analyzes IOCs, and detects behavioral anomalies in production telemetry for developers and security engineers who need proactive discovery beyond autom

About

threat-detection is a security operations skill from alirezarezvani/claude-skills focused on proactive threat discovery—not incident response or red-team exercises. The skill covers hypothesis-driven threat hunting, IOC sweep generation, z-score behavioral anomaly detection, and MITRE ATT&CK-mapped signal prioritization across production logs and telemetry. Security and platform engineers reach for threat-detection when automated controls may have missed lateral movement, C2 beacons, or subtle credential abuse. Outputs include prioritized hunt hypotheses, IOC query batches, and anomaly-ranked signals mapped to ATT&CK techniques for further investigation.

  • Hypothesis-driven threat hunting methodology
  • IOC sweep generation and analysis
  • Z-score based anomaly detection on telemetry
  • MITRE ATT&CK-mapped signal prioritization
  • Deception and honeypot integration patterns

Threat Detection by the numbers

  • 605 all-time installs (skills.sh)
  • Ranked #478 of 2,203 Security skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/alirezarezvani/claude-skills --skill threat-detection

Add your badge

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

Listed on Skillselion
Installs605
repo stars23.5k
Security audit2 / 3 scanners passed
Last updatedJuly 17, 2026
Repositoryalirezarezvani/claude-skills

How do you hunt threats in production telemetry?

Proactively hunt for threats, analyze IOCs, and detect behavioral anomalies in their production systems and telemetry.

Who is it for?

Security and platform engineers with production log access who need structured hunts for IOCs and behavioral anomalies evading automated controls.

Skip if: Developers needing incident-response playbooks, penetration-test exploitation steps, or compliance policy authoring without telemetry data.

When should I use this skill?

A developer or security engineer asks to hunt threats, analyze IOCs, detect telemetry anomalies, or prioritize signals using MITRE ATT&CK.

What you get

Threat hunt hypotheses, IOC sweep queries, z-score anomaly reports, and MITRE ATT&CK-prioritized signal lists.

  • IOC sweep queries
  • prioritized threat signals

Files

SKILL.mdMarkdownGitHub ↗

Threat Detection

Threat detection skill for proactive discovery of attacker activity through hypothesis-driven hunting, IOC analysis, and behavioral anomaly detection. This is NOT incident response (see incident-response) or red team operations (see red-team) — this is about finding threats that have evaded automated controls.

---

Table of Contents

---

Overview

What This Skill Does

This skill provides the methodology and tooling for proactive threat detection — finding attacker activity through structured hunting hypotheses, IOC analysis, and statistical anomaly detection before alerts fire.

Distinction from Other Security Skills

SkillFocusApproach
threat-detection (this)Finding hidden threatsProactive — hunt before alerts
incident-responseActive incidentsReactive — contain and investigate declared incidents
red-teamOffensive simulationOffensive — test defenses from attacker perspective
cloud-securityCloud misconfigurationsPosture — IAM, S3, network exposure

Prerequisites

Read access to SIEM/EDR telemetry, endpoint logs, and network flow data. IOC feeds require freshness within 30 days to avoid false positives. Hunting hypotheses must be scoped to the environment before execution.

---

Threat Signal Analyzer

The threat_signal_analyzer.py tool supports three modes: hunt (hypothesis scoring), ioc (sweep generation), and anomaly (statistical detection).

# Hunt mode: score a hypothesis against MITRE ATT&CK coverage
python3 scripts/threat_signal_analyzer.py --mode hunt \
  --hypothesis "Lateral movement via PtH using compromised service account" \
  --actor-relevance 3 --control-gap 2 --data-availability 2 --json

# IOC mode: generate sweep targets from an IOC feed file
python3 scripts/threat_signal_analyzer.py --mode ioc \
  --ioc-file iocs.json --json

# Anomaly mode: detect statistical outliers in telemetry events
python3 scripts/threat_signal_analyzer.py --mode anomaly \
  --events-file telemetry.json \
  --baseline-mean 100 --baseline-std 25 --json

# List all supported MITRE ATT&CK techniques
python3 scripts/threat_signal_analyzer.py --list-techniques

IOC file format

{
  "ips": ["1.2.3.4", "5.6.7.8"],
  "domains": ["malicious.example.com"],
  "hashes": ["abc123def456..."]
}

Telemetry events file format

[
  {"timestamp": "2024-01-15T14:32:00Z", "entity": "host-01", "action": "dns_query", "volume": 450},
  {"timestamp": "2024-01-15T14:33:00Z", "entity": "host-02", "action": "dns_query", "volume": 95}
]

Exit codes

CodeMeaning
0No high-priority findings
1Medium-priority signals detected
2High-priority confirmed findings

---

Threat Hunting Methodology

Structured threat hunting follows a five-step loop: hypothesis → data source identification → query execution → finding triage → feedback to detection engineering.

Hypothesis Scoring

FactorWeightDescription
Actor relevance×3How closely does this TTP match known threat actors in your sector?
Control gap×2How many of your existing controls would miss this behavior?
Data availability×1Do you have the telemetry data needed to test this hypothesis?

Priority score = (actor_relevance × 3) + (control_gap × 2) + (data_availability × 1)

High-Value Hunt Hypotheses by Tactic

HypothesisMITRE IDData SourcesPriority Signal
WMI lateral movement via remote executionT1047WMI logs, EDR process telemetryWMI process spawned from WINRM, unusual parent-child chain
LOLBin execution for defense evasionT1218Process creation, command-line argscertutil.exe, regsvr32.exe, mshta.exe with network activity
Beaconing C2 via jitter-heavy intervalsT1071.001Proxy logs, DNS logsRegular interval outbound connections ±10% jitter
Pass-the-Hash lateral movementT1550.002Windows security event 4624 type 3NTLM auth from unexpected source host to admin share
LSASS memory accessT1003.001EDR memory access eventsOpenProcess on lsass.exe from non-system process
KerberoastingT1558.003Windows event 4769High volume TGS requests for service accounts
Scheduled task persistenceT1053.005Sysmon Event 1/11, Windows 4698Scheduled task created in non-standard directory

---

IOC Analysis

IOC analysis determines whether indicators are fresh, maps them to required sweep targets, and filters stale data that generates false positives.

IOC Types and Sweep Priority

IOC TypeStaleness ThresholdSweep TargetMITRE Coverage
IP addresses30 daysFirewall logs, NetFlow, proxy logsT1071, T1105
Domains30 daysDNS resolver logs, proxy logsT1568, T1583
File hashes90 daysEDR file creation, AV scan logsT1105, T1027
URLs14 daysProxy access logs, browser historyT1566.002
Mutex names180 daysEDR runtime artifactsT1055

IOC Staleness Handling

IOCs older than their threshold are flagged as stale and excluded from sweep target generation. Running sweeps against stale IOCs inflates false positive rates and reduces SOC credibility. Refresh IOC feeds from threat intelligence platforms (MISP, OpenCTI, commercial TI) before every hunt cycle.

---

Anomaly Detection

Statistical anomaly detection identifies behavior that deviates from established baselines without relying on known-bad signatures.

Z-Score Thresholds

Z-ScoreClassificationResponse
< 2.0NormalNo action required
2.0–2.9Soft anomalyLog and monitor — increase sampling
≥ 3.0Hard anomalyEscalate to hunt analyst — investigate entity

Baseline Requirements

Effective anomaly detection requires at least 14 days of historical telemetry to establish a valid baseline. Baselines must be recomputed after:

  • Security incidents (post-incident behavior change)
  • Major infrastructure changes (cloud migrations, new SaaS deployments)
  • Seasonal usage pattern changes (end of quarter, holiday periods)

High-Value Anomaly Targets

Entity TypeMetricAnomaly Indicator
DNS resolverQueries per hour per hostBeaconing, tunneling, DGA
EndpointUnique process executions per dayMalware installation, LOLBin abuse
Service accountAuth events per hourCredential stuffing, lateral movement
Email gatewayAttachment types per hourPhishing campaign spike
Cloud IAMAPI calls per identity per hourCredential compromise, exfiltration

---

MITRE ATT&CK Signal Prioritization

Each hunting hypothesis maps to one or more ATT&CK techniques. Techniques with multiple confirmed signals in your environment are higher priority.

Tactic Coverage Matrix

| Tactic | Key Techniques | Primary Data Source | |--------|---------------|--------------------|-| | Initial Access | T1190, T1566, T1078 | Web access logs, email gateway, auth logs | | Execution | T1059, T1047, T1218 | Process creation, command-line, script execution | | Persistence | T1053, T1543, T1098 | Scheduled tasks, services, account changes | | Defense Evasion | T1027, T1562, T1070 | Process hollowing, log clearing, encoding | | Credential Access | T1003, T1558, T1110 | LSASS, Kerberos, auth failures | | Lateral Movement | T1550, T1021, T1534 | NTLM auth, remote services, internal spearphish | | Collection | T1074, T1560, T1114 | Staging directories, archive creation, email access | | Exfiltration | T1048, T1041, T1567 | Unusual outbound volume, DNS tunneling, cloud storage | | Command & Control | T1071, T1572, T1568 | Beaconing, protocol tunneling, DNS C2 |

---

Deception and Honeypot Integration

Deception assets generate high-fidelity alerts — any interaction with a honeypot is an unambiguous signal requiring investigation.

Deception Asset Types and Placement

Asset TypePlacementSignalATT&CK Technique
Honeypot credentials in password vaultVault secrets storeCredential access attemptT1555
Honey tokens (fake AWS access keys)Git repos, S3 objectsReconnaissance or exfiltrationT1552.004
Honey files (named: passwords.xlsx)File shares, endpointsCollection stagingT1074
Honey accounts (dormant AD users)Active DirectoryLateral movement pivotT1078.002
Honeypot network servicesDMZ, flat network segmentsNetwork scanning, service exploitationT1046, T1190

Honeypot alerts bypass the standard scoring pipeline — any hit is an automatic SEV2 until proven otherwise.

---

Workflows

Workflow 1: Quick Hunt (30 Minutes)

For responding to a new threat intelligence report or CVE alert:

# 1. Score hypothesis against environment context
python3 scripts/threat_signal_analyzer.py --mode hunt \
  --hypothesis "Exploitation of CVE-YYYY-NNNNN in Apache" \
  --actor-relevance 2 --control-gap 3 --data-availability 2 --json

# 2. Build IOC sweep list from threat intel
echo '{"ips": ["1.2.3.4"], "domains": ["malicious.tld"], "hashes": []}' > iocs.json
python3 scripts/threat_signal_analyzer.py --mode ioc --ioc-file iocs.json --json

# 3. Check for anomalies in web server telemetry from last 24h
python3 scripts/threat_signal_analyzer.py --mode anomaly \
  --events-file web_events_24h.json --baseline-mean 80 --baseline-std 20 --json

Decision: If hunt priority ≥ 7 or any IOC sweep hits, escalate to full hunt.

Workflow 2: Full Threat Hunt (Multi-Day)

Day 1 — Hypothesis Generation: 1. Review threat intelligence feeds for sector-relevant TTPs 2. Map last 30 days of security alerts to ATT&CK tactics to identify gaps 3. Score top 5 hypotheses with threat_signal_analyzer.py hunt mode 4. Prioritize by score — start with highest

Day 2 — Data Collection and Query Execution: 1. Pull relevant telemetry from SIEM (date range: last 14 days) 2. Run anomaly detection across entity baselines 3. Execute IOC sweeps for all feeds fresh within 30 days 4. Review hunt playbooks in references/hunt-playbooks.md

Day 3 — Triage and Reporting: 1. Triage all anomaly findings — confirm or dismiss 2. Escalate confirmed activity to incident-response 3. Document new detection rules from hunt findings 4. Submit false-positive IOCs back to TI provider

Workflow 3: Continuous Monitoring (Automated)

Configure recurring anomaly detection against key entity baselines on a 6-hour cadence:

# Run as cron job every 6 hours — auto-escalate on exit code 2
python3 scripts/threat_signal_analyzer.py --mode anomaly \
  --events-file /var/log/telemetry/events_6h.json \
  --baseline-mean "${BASELINE_MEAN}" \
  --baseline-std "${BASELINE_STD}" \
  --json > /var/log/threat-detection/$(date +%Y%m%d_%H%M%S).json

# Alert on exit code 2 (hard anomaly)
if [ $? -eq 2 ]; then
  send_alert "Hard anomaly detected — threat_signal_analyzer"
fi

---

Anti-Patterns

1. Hunting without a hypothesis — Running broad queries across all telemetry without a focused question generates noise, not signal. Every hunt must start with a testable hypothesis scoped to one or two ATT&CK techniques. 2. Using stale IOCs — IOCs older than 30 days generate false positives that train analysts to ignore alerts. Always check IOC freshness before sweeping; exclude stale indicators from automated sweeps. 3. Skipping baseline establishment — Anomaly detection without a valid baseline produces alerts on normal high-volume days. Require 14+ days of baseline data before enabling statistical alerting on any entity type. 4. Hunting only known techniques — Hunting exclusively against documented ATT&CK techniques misses novel adversary behavior. Regularly include open-ended anomaly analysis that can surface unknown TTPs. 5. Not closing the feedback loop to detection engineering — Hunt findings that confirm malicious behavior must produce new detection rules. Hunting that doesn't improve detection coverage has no lasting value. 6. Treating every anomaly as a confirmed threat — High z-scores indicate deviation from baseline, not confirmed malice. All anomalies require human triage to confirm or dismiss before escalation. 7. Ignoring honeypot alerts — Any interaction with a deception asset is a high-fidelity signal. Treating honeypot alerts as noise invalidates the entire deception investment.

---

Cross-References

SkillRelationship
incident-responseConfirmed threats from hunting escalate to incident-response for triage and containment
red-teamRed team exercises generate realistic TTPs that inform hunt hypothesis prioritization
cloud-securityCloud posture findings (open S3, IAM wildcards) create hunting targets for data exfiltration TTPs
security-pen-testingPen test findings identify attack surfaces that threat hunting should monitor post-remediation

Related skills

How it compares

Use threat-detection for proactive hunts and IOC sweeps; switch to incident-response skills after a breach is confirmed and containment is required.

FAQ

How is threat-detection different from incident response?

threat-detection focuses on proactively finding attacker activity through hypothesis-driven hunts, IOC analysis, and behavioral anomalies. Incident response handles containment and recovery after a confirmed breach.

What detection methods does threat-detection cover?

threat-detection covers hypothesis-driven threat hunting, IOC sweep generation, z-score anomaly detection on telemetry, and MITRE ATT&CK-mapped prioritization to surface signals automated controls missed.

Is Threat Detection safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

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

unsubscribe anytime.