Skip to content

Next edition July 6th, 2026

Threat Hunting

A proactive cybersecurity discipline in which analysts hypothesize about, search for, and investigate threats that have evaded existing defenses, using telemetry, threat intelligence, and adversary behavior models to detect attackers already inside the environment.

Author
Unihackers Team
Reading time
3 min read
Last updated

Why It Matters

Detection technologies, no matter how advanced, cannot catch every attack. Sophisticated adversaries blend in with normal user activity, abuse legitimate tools (living-off-the-land), and operate slowly enough to avoid alert thresholds. The IBM Cost of a Data Breach Report consistently shows median dwell time, the gap between intrusion and detection, exceeds 200 days for organizations without active hunting programs.

Threat hunting changes the calculus. Rather than waiting for an alert, hunters assume compromise and search the environment for evidence of adversaries. Mature programs like those at Microsoft, Google, and major banks document hundreds of detections that originated from human-led hunts.

The Hunting Cycle

1. Develop a Hypothesis

A good hypothesis is specific and testable, often derived from threat intelligence, recent incidents, or MITRE ATT&CK techniques relevant to the organization. Example: "An attacker is using WMI for lateral movement (T1047) in our finance subnet."

2. Investigate with Data

Pull relevant telemetry from EDR, identity systems, network sensors, and cloud logs. Apply analytics like frequency analysis, stack counting, outlier detection, and timeline reconstruction.

example-hunt.kql
KQL
// KQL hunt for suspicious WMI activity
DeviceProcessEvents
| where Timestamp > ago(7d)
| where ProcessCommandLine has_any ("wmic", "Invoke-WmiMethod")
| where ProcessCommandLine has_any ("process call create", "/node:")
| summarize Count=count(), Devices=dcount(DeviceName) by InitiatingProcessAccountName
| where Devices >= 3
| order by Count desc

3. Discover and Document

Whether the hypothesis is confirmed, refuted, or inconclusive, document what you learned, including queries, data sources, and gaps in visibility.

4. Engineer Detections

Convert successful hunts into automated detections (Sigma rules, EDR custom IOCs, SIEM correlations) so the SOC catches the same behavior automatically next time.

5. Hand-off and Improve

Confirmed compromises move to incident response. Telemetry gaps drive logging improvements. The cycle repeats with new hypotheses.

Hunting Methodologies

ApproachDescriptionWhen to Use
Hypothesis-drivenTest specific TTP-based hypothesesRoutine, mature programs
Intelligence-drivenHunt for IOCs from threat reportsAfter targeted threat advisories
Anomaly-basedSearch for statistical outliersLimited threat intel
Crown jewelsFocus on critical assetsConstrained resources
HybridCombination of approachesMost real programs

The Pyramid of Pain

Common Hunting Hypotheses

  • Suspicious LSASS access (credential dumping, T1003)
  • Unsigned binaries running from temp directories
  • Anomalous PowerShell with encoded commands
  • Unusual parent-child process relationships
  • DNS beaconing patterns
  • Unexpected service account interactive logins
  • New scheduled tasks created with elevated privileges

Building a Hunt Program

  1. Establish baselines of normal activity in your environment.
  2. Adopt MITRE ATT&CK as your common language and prioritization tool.
  3. Centralize telemetry in a SIEM or data lake with sufficient retention (90+ days).
  4. Schedule regular hunts with documented hypotheses and findings.
  5. Measure outputs: new detections shipped, mean dwell time reduction, gaps closed.
In the Bootcamp

How We Teach Threat Hunting

In our Cybersecurity Bootcamp, you won't just learn about Threat Hunting in theory. You'll practice with real tools in hands-on labs, guided by industry professionals who use these concepts daily.

Covered in:

Module 8: Advanced Security Operations

Related topics you'll master:Incident ResponseDFIRThreat HuntingVolatility
See How We Teach This

360+ hours of expert-led training • CompTIA Security+ included