You are investigating a security incident in Microsoft Sentinel where a user received a phishing email containing a link to a malicious domain. The link was clicked, but no further actions were observed. Which playbook action should you take immediately to prevent potential lateral movement?
Trap 1: Disable the user's account
Disabling the user's account is a containment action reserved for confirmed credential compromise or malicious insider activity. In this case, the only evidence is a link click, with no proof of malware execution, credential theft, or unauthorized access, so disabling the account would cause business disruption and potentially alert the adversary while doing nothing to contain the malicious domain itself.
Trap 2: Revoke the user's active sessions
Revoking the user's active sessions is intended for scenarios where authentication tokens or session cookies have been stolen, such as in a token theft or account takeover. Clicking a link does not compromise the user's existing session token; the malicious site could attempt a browser exploit, but that would not invalidate the authenticated session, and this action would still leave the malicious domain reachable by other users.
Trap 3: Reset the user's password
A password reset is warranted only when there is concrete evidence that the user's credentials were phished or otherwise stolen and used by an unauthorized party. Here, no credential submission, authentication anomaly, or suspicious account activity has been observed, so resetting the password would lock the user out without eliminating the threat posed by the malicious domain, which remains accessible to the entire environment.
- A
Disable the user's account
Why wrong: Disabling the user's account is a containment action reserved for confirmed credential compromise or malicious insider activity. In this case, the only evidence is a link click, with no proof of malware execution, credential theft, or unauthorized access, so disabling the account would cause business disruption and potentially alert the adversary while doing nothing to contain the malicious domain itself.
- B
Revoke the user's active sessions
Why wrong: Revoking the user's active sessions is intended for scenarios where authentication tokens or session cookies have been stolen, such as in a token theft or account takeover. Clicking a link does not compromise the user's existing session token; the malicious site could attempt a browser exploit, but that would not invalidate the authenticated session, and this action would still leave the malicious domain reachable by other users.
- C
Reset the user's password
Why wrong: A password reset is warranted only when there is concrete evidence that the user's credentials were phished or otherwise stolen and used by an unauthorized party. Here, no credential submission, authentication anomaly, or suspicious account activity has been observed, so resetting the password would lock the user out without eliminating the threat posed by the malicious domain, which remains accessible to the entire environment.
- D
Block the malicious domain on the firewall
Blocking the malicious domain at the firewall is a network-based containment action that stops all clients from resolving or connecting to the malicious site, effectively breaking the delivery chain for phishing or malware. It is a reversible, low-impact measure that addresses the root cause regardless of which user or device attempts access, and it aligns with security operations best practice to contain the threat at the earliest opportunity.