Lesson 8 — This One Needs Escalation
The investigation started like many others: a suspicious sign-in, unusual process activity and an outbound connection.
Then the context changed.
The user is a privileged administrator. The affected device has access to critical systems. A second identity has now appeared
in the timeline. At this point, the question is no longer simply “what happened?” It is “who else needs to know, and how quickly?”
The incident just changed
A privileged account, critical system and expanding scope have entered the investigation. The analyst must now decide whether normal SOC handling is still appropriate.
Case briefing
Investigation objective
Recognise when privilege, critical assets, expanding scope, business impact or unresolved uncertainty require escalation to senior analysts, incident response, identity teams, infrastructure owners or management.
Investigator's rule
Escalate because of risk and evidence, not because the alert looks frightening. The goal is to bring the right people into the investigation before consequence outruns analyst capacity.
Stage 1 — identify what changed
| New context | Why it matters | Escalation effect |
|---|---|---|
| Privileged identity | Potential access to broad administrative control. | Raises impact significantly. |
| Critical administrative device | May provide access to identity or security infrastructure. | Raises urgency. |
| Second privileged account | May indicate expanded scope or lateral movement. | Requires broader investigation. |
| Active suspicious process and network activity | Suggests the incident may still be live. | Reduces tolerance for delay. |
Escalation is about consequence
The same PowerShell behaviour on a low-value test device and on a privileged administration workstation may warrant completely different response paths.
Scope can change suddenly
An incident that begins with one user and one device can become an identity-wide or enterprise-wide problem the moment another privileged account or critical system becomes involved.
Stage 2 — check whether privileged identities share the same suspicious source
A focused KQL query can help establish whether the new privileged account is part of the same identity activity or merely coincidental.
let SuspiciousIP = "203.0.113.91";
SigninLogs
| where TimeGenerated > ago(24h)
| where IPAddress == SuspiciousIP
| project TimeGenerated,
UserPrincipalName,
IPAddress,
Location,
AppDisplayName,
DeviceDetail,
AuthenticationRequirement,
ConditionalAccessStatus,
ResultType
| order by TimeGenerated asc
One source touching multiple admins matters
If the same unfamiliar IP successfully authenticated to multiple privileged identities, the incident is no longer centred on one account. That is a strong reason to escalate scope and response.
Still validate the relationship
Shared VPN infrastructure, jump hosts or administrative gateways can make multiple privileged accounts appear related. Confirm the context before describing it as attacker movement.
Stage 3 — know the common escalation triggers
Privilege lowers the escalation threshold
You may tolerate more uncertainty when investigating a low-impact test account. With a Global Administrator, the cost of waiting for perfect proof can be much higher.
Uncertainty itself can be a risk
If the possible impact is severe and the available telemetry cannot confidently rule out compromise, escalation may be appropriate precisely because the SOC needs more capability or authority.
Stage 4 — escalate with useful information
An escalation should save the next person time. Provide the decision-ready evidence, not a dump of every event you collected.
| Include | Example |
|---|---|
| Why you are escalating | Privileged identity plus active suspicious endpoint activity. |
| Confirmed facts | Successful sign-in, PowerShell execution, external communication. |
| Affected entities | privileged.admin, ADM-LT-004, source IP, second admin identity. |
| Current scope | Two privileged identities, one known device. |
| Important unknowns | Whether persistence, credential theft or broader access occurred. |
| Actions already taken | Device isolated, sessions under review, user contacted. |
| Recommended next action | Engage incident response and identity team immediately. |
Do not escalate a mystery
“Something looks bad” is not useful. Explain what you observed, why the context changes risk, what remains uncertain and what assistance you need.
Do not wait for a perfect report
If the incident is active and high-impact, send a concise escalation quickly. Detailed documentation can continue while the response team begins containment.
Stage 5 — make the escalation decision
Your escalation decision board
| Question | Current answer | Effect |
|---|---|---|
| Is a privileged identity involved? | Yes — Global Administrator | Strong escalation factor |
| Is a critical asset involved? | Yes — administrative workstation | Raises urgency |
| Is suspicious activity still potentially active? | Yes | Reduces tolerance for delay |
| Has scope expanded? | Yes — second privileged identity | Requires wider response |
| Can routine analyst handling contain the risk? | No | Escalation required |
Write the escalation like an analyst
Example: The investigation has been escalated because suspicious endpoint and authentication activity involves a Global Administrator account and ADM-LT-004, a device used for privileged administration. A second privileged identity was also observed from the same unfamiliar source IP during the investigation window. Confirmed evidence includes successful authentication, suspicious PowerShell execution and external network communication. The current scope and potential impact exceed routine SOC handling, and immediate engagement from incident response and the identity team is recommended while containment and scope validation continue.
Lesson 8 key takeaways
- Escalation is a normal part of mature SOC operations.
- Privilege, critical assets and expanding scope lower the threshold for escalation.
- Active attacker behaviour reduces the time available for routine investigation.
- High-impact uncertainty can itself justify escalation.
- Validate relationships before describing shared infrastructure as attacker movement.
- Use KQL to test scope quickly when multiple identities or entities appear.
- Escalate with confirmed facts, current scope, important unknowns and actions already taken.
- State clearly why the incident exceeds routine handling.
- Do not delay urgent escalation while writing a perfect report.
- Bring in the people who have the authority, expertise or access needed to reduce risk.
Module 1 — inside the SOC
You now know when an incident needs escalation. The next lesson continues Module 1 by focusing on how analysts communicate what they know without overstating the evidence.
Continue your SOC Analyst training
🔎 SOC Analyst Academy — Module 1: Inside the SOC: Thinking Like an Analyst
When should a SOC analyst escalate an incident?
Lesson 8 of the Agent Foskett SOC Analyst Academy teaches analysts how to recognise escalation triggers including privileged identities, critical assets, expanding scope, active threats and high-impact uncertainty.
SOC incident escalation with Microsoft security evidence
Learn how to use Microsoft Entra sign-in evidence, KQL and incident context to justify escalation and communicate confirmed facts, scope, unknowns and recommended actions.
