Playbooks — decision trees

Playbooks — decision trees

TL;DR. When you’re stuck — “I scanned, now what?”, “I see this bug, how do I prove impact?”, “I have a shell, how do I escalate?” — these decision trees pick the next move. They aren’t substitutes for the topic notes; they tell you which topic note to open.

Why playbooks

The hub’s topic notes are atomic — one technique per page. That’s great for lookup, terrible when you don’t know what you’re looking for. Playbooks fill the gap with branching decision diagrams that go from a real-world starting condition to a concrete next action.

Use them when:

  • You ran a scan and don’t know what to triage first.
  • You see a request / response pattern and aren’t sure what bug class it points at.
  • You have a foothold and need to pick the lowest-risk path to the next tier.
  • You’re prepping for a bug-bounty engagement, an exam, or a real internal engagement and want a checklist you can fall back to under time pressure.

The playbooks

How to read a playbook

Each diagram is a decision tree, not a checklist. Follow the branch that matches your situation. Boxes that name a <span class="wikilink wikilink-broken" title="Unresolved: topic">topic</span> mean “open that note for the technique”. Boxes that name a tool mean “this is the canonical tool — see tools”. Diamonds are decision points.

If you ever find yourself running every branch in parallel, you’re not triaging — you’re spraying. Pick the branch that matches your target’s posture and your time budget.

A sample decision tree

flowchart TD
    A[Open the playbook] --> B{Do I know my starting condition?}
    B -- "yes — I have a Nmap result" --> C[Open recon-to-foothold]
    B -- "yes — I see suspicious response" --> D[Open web-triage]
    B -- "yes — I have a shell" --> E{Linux or Windows?}
    B -- "no" --> F[Re-engage your target, gather one fact]
    E -- Linux --> G[Open linux-privesc-playbook]
    E -- Windows --> H[Open windows-privesc-playbook]
    F --> B

When the diagram tells you to open a topic note, that’s where the how-to lives. Playbooks tell you which note. The notes tell you how.