Operator On The Wire
Join
← Back to Knowledge Base
BLUE TEAM / THREAT HUNT / WINDOWS / AUTHENTICATION

MFA Bypass Token Abuse

This note documents detection patterns related to MFA Bypass / Token Abuse within Windows environments.


Direct Indicators

LogEvent IDMeaningForensic ValueNotes
Security4624Successful logonCriticalSuccessful session after unusual token usage or MFA bypass.
Security4648Explicit credentials usedCriticalAlternate credentials often precede token replay.
Security4672Special privileges assignedCriticalElevated token attached to suspicious login.
Security4768Kerberos TGT requestedHighAuthentication chain start in domain environments.
Security4769Kerberos service ticket requestedHighService access following token abuse.
Sysmon1Process creationCriticalToken manipulation tooling execution.
Security4688Process creationHighDetects runas, token theft utilities, browser token abuse helpers.

Indirect Indicators

IndicatorWhat To Look ForForensic ValueNotes
MFA-protected account logs in from unusual hostSession without expected user flowCriticalStrong bypass clue.
Token replay after initial valid loginSame identity appears elsewhere quicklyCriticalSession theft indicator.
Elevated session without interactive chainMissing expected user logonCriticalToken misuse signal.
Explicit creds + privileged action4648 before admin actionCriticalCommon operator chain.
Browser token theft followed by cloud accessSession continuity anomalyHighModern enterprise pattern.
Short-lived privileged sessionBurst admin activity then exitHighStrong attacker behavior.

Common Tools

ToolUsage
runas.exeAlternate token use
mimikatzToken manipulation / pass-the-ticket
RubeusTicket/token abuse
browser token stealersSession replay
PowerShellToken impersonation helpers

Relevant Artifacts

  • Security Event IDs 4624, 4648, 4672, 4768, 4769
  • Security Event ID 4688
  • Sysmon Event ID 1
  • Logon type correlation
  • LUID correlation
  • Browser session artifacts
  • EDR identity timeline

MITRE ATT&CK References

  • T1550 Use Alternate Authentication Material
  • T1134 Access Token Manipulation
  • T1078 Valid Accounts

Decision Tree

  1. Which account involved?

    • User
    • Admin
    • Service
  2. MFA expected?

    • Yes
    • No
  3. Session origin expected?

    • Known host
    • New host
  4. Privileged action follows?

    • Yes
    • No
  5. Expand:

    • Token source
    • Browser artifacts
    • Adjacent auth events
  6. Scope:

    • Single replay
    • Multi-session abuse
    • Cloud + host overlap

Example Detection Templates

KQL

SecurityEvent
| where EventID in (4624,4648,4672)
| project TimeGenerated, Computer, Account, IpAddress, LogonType, EventID
SecurityEvent
| where EventID == 4648
| project TimeGenerated, Computer, Account, ProcessName

EQL

authentication where event.code in ("4624","4648","4672")
sequence by user.name with maxspan=10m
  [ authentication where event.code == "4648" ]
  [ authentication where event.code == "4624" ]

Sigma

title: MFA Bypass Token Abuse Detection
id: 2a7f4b61-mfa-token-abuse
status: experimental
description: Detects suspicious authentication patterns associated with token abuse
references:
  - https://attack.mitre.org/
author: Vergil
date: 2026-03-07
logsource:
  product: windows
  service: security
detection:
  selection:
    EventID:
      - 4648
      - 4672
  condition: selection
fields:
  - EventID
  - Account
  - ProcessName
falsepositives:
  - Administrative use
level: high
tags:
  - attack.credential_access
  - attack.t1550

Mitigation & Hardening

Control AreaMitigationEffectivenessNotes
Conditional accessRestrict unusual session originCriticalStrong MFA support
Token lifetime controlsReduce replay windowHighLimits abuse
Alert on 4648 + privilegeStrong signalCriticalHigh-value chain
Session analyticsDetect impossible travel / overlapHighStrong cloud-host correlation
Protect browser tokensHarden session storesHighModern requirement