Sigma Playbook Lookup

Find and preview Sigma Investigation Playbooks

The Sigma playbooks in this repo are Human-Centered Investigation Playbooks — one per Sigma rule. Instead of listing procedural steps, each playbook poses investigative questions an analyst asks when working an alert. Every question is paired with the context for why it matters, the data source that answers it, a relative time range, and a ready-to-run query.

The format follows the Human-Centered Investigation Playbook standard (v1.1). Playbooks are readable by analysts and parseable by tools like Security Onion.

Anatomy of a Playbook

name: <Playbook name>
id: <Playbook UUIDv4>
description: |
  <What the rule detects and how to investigate it>
type: detection
detection_id: <Source Sigma rule UUID>
detection_category: ''
detection_type: sigma
contributors:
  - <At least one contributor>
created: <YYYY-MM-DD>

questions:
  - question: <Investigation question>
    context: <Why it matters / how to read the answer>
    range: <Relative time window, e.g. +/-5m, -7d>
    answer_sources:          # optional — data sources that answer the question
      - <e.g. process_creation, asset_inventory>
    query: |
      <Sigma fragment; %placeholders% bind to the alert>

Notes