Lesson 1 of 5 · 20 min read

Detection vs Hunting — When Rules Aren't Enough

Detection rules are efficient but backward-looking — they catch what you already know to look for. Sophisticated attackers study your detection posture and operate in the gaps. Threat hunting is the discipline of actively searching for the attacks that your rules haven’t caught yet.


Why Detection Rules Have a Ceiling

Every rule is written from something the defender already knows:

This means every rule describes the past. A novel technique, a new tool variant, or an attacker who has specifically researched your detection posture can operate in complete silence.

The detection ceiling is the set of techniques that fall below your rule threshold:

Hunting is the discipline of working below that ceiling.


The Hunting Mindset

Hunting requires a different operating mode than alert triage:

Alert TriageThreat Hunting
Reactive — respond to what firedProactive — decide what to look for
Time-boxed (SLA: respond in N minutes)Open-ended (hypothesis-driven)
Binary outcome (TP or FP)Gradient outcome (suspicious → investigate)
Works through a queueWorks through a hypothesis
Needs breadth (process many alerts)Needs depth (investigate one hypothesis thoroughly)

A good hunter is comfortable with ambiguity — most hunts end with “no evidence of compromise, baseline documented” rather than “attacker found.” That null result is still valuable: it establishes a baseline that future hunts can compare against.


When Is Hunting the Right Tool?

Hunt when:

Don’t hunt when:


Dwell Time and the Hunting Opportunity

Day 0: Attacker gains initial access (phishing email opened)
Day 1-3: Reconnaissance — net user, whoami, AD enumeration (LOLBins, no alerts)
Day 4-7: Persistence — scheduled task created via Task Scheduler GUI (no process creation alert)
Day 8-15: Credential access — Kerberoasting via LDAP (network traffic, no Sysmon alert)
Day 16: Lateral movement detected — first obvious alert fires

MTTD: 16 days
Hunting opportunity: Days 1–15 — all this behavior left traces a hunter could find

The attacker’s dwell time is your hunting window. Every day of dwell time is a day of artifact accumulation: event logs, registry entries, scheduled task files, authentication records. Hunting retroactively through this data surfaces the compromise days or weeks before automated detection would catch it.


The Hunt Lifecycle

1. HYPOTHESIS
   ↓ "APT actors targeting our sector use WMI for lateral movement"

2. PREPARE
   ↓ Identify data sources, define scope, document baseline

3. EXECUTE
   ↓ Build and run search queries, collect candidate evidence

4. ANALYZE
   ↓ Triage candidates: FP / suspicious / confirmed malicious

5. ACT
   ↓ If malicious: incident response
   ↓ If suspicious: escalate for investigation
   ↓ If null: document baseline, retire hypothesis

6. IMPROVE
   ↓ Convert high-confidence finding to Sigma rule
   ↓ Update coverage matrix
   ↓ Feed back to threat intel

Steps 2–5 are formalized in the PEAK and TaHiTI frameworks (next lessons).

PEAK Threat Hunting Framework— Splunk SURGe ThreatHunter Playbook— Roberto Rodriguez