Because many attacks steal the artifact issued after MFA, not the password itself. If an attacker reuses a session cookie, OAuth token, or refresh token, the login appears already authenticated. MFA was satisfied earlier, so the control did its job but did not protect the downstream artifact from replay.
Why This Matters for Security Teams
Compromised credentials bypass MFA because the attacker often does not need to repeat the login flow. Session cookies, OAuth access tokens, and refresh tokens are the real prize: once issued, they can be replayed until they expire or are revoked. That means the security question is not only “was MFA required?” but “what happened to the artifacts created after MFA succeeded?” Current guidance from NIST SP 800-63 Digital Identity Guidelines and NHIMG research such as Ultimate Guide to NHIs — Static vs Dynamic Secrets both point to the same operational reality: authentication and downstream session security are different control layers.
This distinction matters because modern intrusions usually target the post-authentication path. Adversaries steal browser profiles, harvest tokens from memory, or abuse refresh mechanisms that were never designed to prove ongoing user presence. In environments with SaaS consoles, cloud control planes, and remote workforces, MFA can be technically “working” while the attacker is already inside using the authenticated artifact. In practice, many security teams encounter this only after a token has been replayed and privileged actions have already been taken, rather than through intentional testing of the session layer.
How It Works in Practice
MFA is strongest at the moment of initial authentication. After that, most systems rely on bearer artifacts that act like portable proof of prior success. If an attacker obtains a session cookie, bearer token, or refresh token, they can often present it without repeating the MFA ceremony. That is why attackers increasingly focus on endpoint compromise, infostealers, reverse proxies, and consent abuse instead of password guessing.
Security teams should treat the post-MFA artifact as a high-value secret. The controls that help most are the same ones that reduce NHI risk generally: short token lifetimes, device binding where supported, conditional access, token revocation on suspicious activity, and monitoring for impossible travel or abnormal session reuse. For cloud and SaaS environments, this is also where OWASP Non-Human Identity Top 10 and NHIMG’s breach research are useful because they frame secrets as operational assets, not just authentication inputs. The 52 NHI Breaches Analysis shows how credential abuse, not password cracking, is often the real failure mode.
- Limit session duration and refresh token lifetime so replay windows stay small.
- Revoke tokens when device posture, IP reputation, or user risk changes materially.
- Prefer sender-constrained tokens or device-bound sessions where the platform supports them.
- Log token issuance, refresh, and reuse events separately from primary login success.
- Assume MFA does not protect already-issued artifacts unless a control explicitly says so.
These controls tend to break down in legacy apps that use long-lived bearer tokens, cannot bind sessions to device state, or lack reliable revocation hooks.
Common Variations and Edge Cases
Tighter session control often increases operational overhead, requiring organisations to balance user convenience against replay resistance. That tradeoff becomes especially visible in high-availability SaaS, mobile applications, and developer tooling where frequent reauthentication can disrupt workflows. Best practice is evolving, and there is no universal standard for every token type yet.
Some MFA bypasses are not true token replay at all. Attackers may abuse OAuth consent grants, steal federated session state, or exploit “remember this device” features that extend trust far beyond the original challenge. In privileged admin environments, the risk is higher because a single replayed token can lead to broad lateral movement. The most relevant external reference for this is NIST SP 800-53 Rev 5 Security and Privacy Controls, especially where session management, audit logging, and revocation are mapped to access control outcomes. For attack patterns involving stolen credentials in AI and cloud operations, LLMjacking: How Attackers Hijack AI Using Compromised NHIs is a useful reminder that compromised access artifacts are often more actionable to attackers than the original password.
Where guidance breaks down most often is in environments that cannot enforce token binding, rely on third-party identity providers with weak revocation propagation, or keep sessions alive for business reasons far longer than the risk tolerance allows.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST CSF 2.0, NIST SP 800-63, NIST Zero Trust (SP 800-207) and NIST AI RMF set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Non-Human Identity Top 10 | NHI-03 | Session and secret misuse often stems from weak lifecycle controls. |
| NIST CSF 2.0 | PR.AC-4 | Access enforcement must address session reuse, not only login success. |
| NIST SP 800-63 | Digital identity guidance distinguishes authentication from session assurance. | |
| NIST Zero Trust (SP 800-207) | SC-7 | Zero trust limits trust in bearer sessions and validates continuously. |
| NIST AI RMF | GOVERN | Risk governance must cover post-authentication artifacts and abuse paths. |
Use assurance controls that continue after sign-in, not just at the initial MFA event.