Alert chapter quiz
Quiz: did the chapter stick?
No grades. The point is to push your thinking. Some questions are harder than they look.
An EDR fires a behavioral alert at 02:14 with 64% confidence. The user's baseline shows they routinely work overnight. What is the right next step?
Baseline comparison is one of three strategies; the baseline it reads is one of four context dimensions. A single dimension agreeing is not the same as validation. The environmental dimension says the timing is consistent; technical fidelity, threat intelligence, and business impact have not been checked yet. Validate across all four, then decide.
Two alerts fire with identical content. Alert A is on a contractor's sandbox laptop. Alert B is on a service account with administrative access to a HIPAA-bound database. The analyst can only investigate one in the next 15 minutes. Which strategy makes the prioritization defensible?
Need a nudge?
The two alerts are identical in shape. What differs is the entity each one affects.
Criticality validation is exactly the strategy designed for this trade-off. Alert B affects a high-criticality asset and a privileged identity, so it is the immediate-action alert. Months later, the criticality data attached to the queue order is what makes the choice reviewable in a post-mortem.
An adversary uses living-off-the-land binaries with no custom malware. Which detection approach is built to catch this, and what form does it usually take in practice?
Need a nudge?
Think about which layer of the activity is actually abnormal — the binaries, the single events, or the sequence.
Every binary in the chain is signed and individually unremarkable, so hashes match nothing bad and single events sit inside tolerance. What is detectable is the sequence — the parent-child chain and its context. And the family label is honestly plural here: a deterministic Sigma-style rule that encodes that chain is rule-based by construction and behavioral by content. Name both when both apply; what matters for triage is reading the logic that fired, not picking its one true family.
A signature engine reports an exact match on a known-bad SHA-256. At the same moment, a UEBA engine flags the same host for 'unusual process activity'. Before any investigation, how should the analyst calibrate trust in the two signals?
Need a nudge?
The chapter assigns each detection family a starting posture — a prior, not a verdict.
This is the trust-calibration posture from the detection-mechanisms page. The mechanism label sets a prior, not a verdict: an exact indicator match starts with the higher prior because it is precise about the artifact, but converting that prior into confidence requires the calibration facts — is the indicator fresh, from a credible source, and rare in this environment, or is it a stale hash on a dual-use tool? The anomaly is genuine but ambiguous signal that almost always needs corroboration. Treating the two alerts identically throws away provenance; treating the signature label as proof skips the rule-reading the label is supposed to prompt.
An alert reports an outbound TLS connection to a domain registered three days ago. The process is signed certutil.exe. The user is a developer. Which combination of signals would raise the confidence that this is malicious?
Single signals get tuned out as noise. The combination is what changes the verdict. New domain + an unusual process for the user + no documented business reason maps to the classic certutil-as-LOLBin pattern. None of the signals on its own is decisive. The combination is.
An EDR alert shows: powershell.exe -nop -w hidden -enc SQBFAFgAIAAoAE4AZQB3AC0ATwBiAGoAZQBjAHQA... What does -enc tell you, and what is the right parsing move?
Need a nudge?
Encoded and encrypted are different words for a reason.
-EncodedCommand takes a Base64-encoded UTF-16LE string, an encoding, not encryption, so it decodes locally with no key. The surrounding flags (-nop, -w hidden, abbreviated names) raise suspicion, and legitimate automation does use -enc, which is exactly why the decoded payload, not the flag, decides. Here it opens with IEX (New-Object ..., the classic download-and-execute-in-memory prefix.
A parsed process tree reads: explorer.exe → WINWORD.EXE → msdt.exe → sdiagnhost.exe. Which link is the anomaly?
Need a nudge?
Ask what business each parent has spawning its child.
explorer.exe launching Word is a user double-click, normal. And once msdt.exe runs, sdiagnhost.exe is its expected child. The break in the story is the middle link: a word processor has no business spawning the Microsoft Support Diagnostic Tool, and that parent-child pair is the signature of the Follina exploit (CVE-2022-30190). Every node being signed by Microsoft is exactly why lineage, not identity, is what you parse.
An analyst pivots to Windows Security Event 4688 to reconstruct process creations, but the CommandLine field is blank on every event. What is the most likely reason?
4688 does have a CommandLine field, but populating it requires the 'Include command line in process creation events' policy, which is off by default. If it was never enabled, every historical event is blank and no retroactive fix exists, a telemetry gap you discover exactly when you need the data. Sysmon Event 1 is the common compensating source. This is why parsing includes knowing what your telemetry was configured to capture.
What is the Alert phase's deliverable to the rest of the methodology?
Alert produces three deliverables: the validated alert (detection-mechanism analysis, structured data, validation results, telemetry correlation), the leads for Subject and Uncover (baseline anomalies, spotted correlations, intel hits, temporal anchors), and the flags for Scope, Risk, and Escalation. Only the first is finished work; the other two are honest lead lists. Verdicts and containment are downstream phases. Reports are documentation. The Alert phase's job is to make the next analyst's work fast and accurate, not to draw conclusions.
Next up
Transition to Subject
The Alert chapter's segue into Subject. What Alert hands forward, what to leave behind, and how to set up the next phase for success.
Continue to the transition