Lesson 23 — A New MFA Method Appeared After the Sign-In
The suspicious sign-in happened at 02:54.
At 03:02, a new authentication method was registered for the same user.
The helpdesk had not changed anything. The user said they had not added a new method.
The sign-in was important. The authentication-method change was worse.
It suggested the attacker may have moved from temporary access to identity persistence.
The sign-in was not the end
Authentication-method changes can create durable access. The analyst must connect who signed in, when the method changed, what was added and what happened afterwards.
Case briefing
Investigation objective
Determine whether a newly registered authentication method was legitimate, accidental or added by an attacker after compromising the account.
Investigator's rule
Identity changes after suspicious access must be treated as timeline evidence. A new MFA method may create persistence even if the original password is later changed.
Stage 1 — establish exactly what changed
| Question | Why it matters |
|---|---|
| What authentication method was added? | Phone, authenticator app, FIDO2/passkey or another method creates different investigation paths. |
| When was it added? | The timestamp determines whether it followed suspicious access. |
| Who initiated the change? | User, administrator, self-service registration or attacker activity can produce different evidence. |
| Was the change expected? | Helpdesk tickets and user confirmation can validate legitimate activity. |
| Was the new method used later? | Use after registration strengthens the persistence hypothesis. |
Timing is critical
A new authentication method added months after a sign-in may be unrelated. A method added eight minutes after suspicious access deserves immediate attention.
User confirmation matters
If the user says they did not register the method, that is strong supporting evidence. It still needs to be reconciled with Microsoft Entra audit and sign-in telemetry.
Stage 2 — investigate authentication-method changes with KQL
Search Microsoft Entra audit data for authentication-method activity around the suspicious sign-in window.
let TargetUser = "s.bennett@contoso.com";
AuditLogs
| where TimeGenerated > ago(24h)
| where tostring(TargetResources) has TargetUser
| where OperationName has_any (
"authentication",
"security info",
"MFA",
"method"
)
| project TimeGenerated,
OperationName,
Result,
InitiatedBy,
TargetResources,
AdditionalDetails
| order by TimeGenerated asc
Audit logs tell you that something changed
The exact operation names and available details can vary, so the analyst should inspect the returned records rather than rely on one hard-coded event name.
Preserve the raw event
Before reducing the event to a short finding, keep the original audit record. Initiator, target resources and additional details may matter later.
Stage 3 — correlate sign-ins and method changes
Sequence creates meaning
The authentication-method change becomes much more significant when it sits between suspicious access and later successful activity.
Do not stop at password compromise
If the attacker registered a new method, resetting the original password may not address every route of access. Remediation must consider the identity configuration itself.
Stage 4 — build a combined identity timeline
Use sign-in logs to reconstruct access immediately before and after the authentication-method change.
let TargetUser = "s.bennett@contoso.com";
SigninLogs
| where TimeGenerated between (
datetime(2026-08-24 02:30:00) ..
datetime(2026-08-24 03:30:00)
)
| where UserPrincipalName =~ TargetUser
| project TimeGenerated,
IPAddress,
Location,
AppDisplayName,
ClientAppUsed,
ResultType,
ResultDescription,
AuthenticationDetails
| order by TimeGenerated asc
Compare before and after
Look for a change in source, authentication details or application behaviour after the new method was registered.
A method can be persistence
If an attacker can authenticate again using a method they registered, the identity incident has moved beyond credential theft into persistence.
Stage 5 — test legitimate explanations
| Hypothesis | Evidence to test |
|---|---|
| User added a new phone or authenticator | User confirmation, expected device, normal location and legitimate registration timing. |
| Helpdesk-assisted registration | Ticket history, administrator audit events and approved change context. |
| Security-registration campaign | Organisation-wide rollout, expected timing and matching changes for other users. |
| Attacker-established persistence | Suspicious sign-in followed by method registration and later use of the new method. |
Stage 6 — remediation must remove persistence
Do not remove evidence too early
Containment is important, but document the suspicious method and relevant audit details before removal so the investigation remains defensible.
Expand the persistence hunt
If one identity change was made after compromise, look for others: OAuth consent, role activation, mailbox rules, app registrations or additional authentication changes.
Stage 7 — make the SOC decision
Write the investigation finding
Lesson 23 key takeaways
- New authentication methods should be correlated with suspicious sign-in activity.
- Timing can turn a routine configuration event into high-value persistence evidence.
- Use Microsoft Entra audit logs to investigate authentication-method changes.
- Preserve the raw audit event before simplifying the finding.
- Compare sign-ins before and after the method registration.
- User and helpdesk confirmation help validate whether the change was expected.
- A password reset alone may not remove attacker-established authentication persistence.
- Review and remove unauthorised authentication methods during containment.
- Expand the investigation to other persistence mechanisms after identity compromise.
- Build the final verdict from the complete identity timeline.
Module 3 — Identity Incidents
Lesson 23 shows how attackers may convert access into persistence by changing authentication methods. Next, Agent Foskett investigates a Conditional Access result that looked successful but did not explain the whole sign-in.
Continue your SOC Analyst training
🔎 SOC Analyst Academy — Module 3: Identity Incidents
How to investigate a newly registered MFA method in Microsoft Entra
Lesson 23 of the Agent Foskett SOC Analyst Academy teaches analysts how to investigate new authentication methods, correlate those changes with suspicious sign-ins and determine whether an attacker attempted to establish identity persistence.
KQL investigation of Microsoft Entra authentication-method changes
Learn how to use AuditLogs and SigninLogs with KQL to review authentication-method activity, correlate identity changes with sign-in timelines and identify suspicious persistence after account compromise.
