Home/ Blog/ Security news/ Article
Blog · Security news

Device-code phishing jumped 1,500% in 2026: attackers take over Microsoft 365 accounts with no password or MFA

Device-code phishing rose 1,500% in 2026, letting attackers mint Microsoft 365 tokens with no password or MFA. Here is how to detect and block the OAuth flow.

An intact glowing turnstile with a small chip drifting past it

Rolling out passkeys did not close this door. For most of 2026, the fastest-growing way into corporate Microsoft 365 tenants has not touched a single password or multi-factor prompt. It phishes a token instead, and the victim's own valid, already-authenticated session is what hands that token to the attacker.

The technique is device-code phishing, and the volume is not subtle. Telemetry from Huntress and CrowdStrike, reported by Dark Reading, puts the rise at roughly 1,500% across 2026, with Huntress logging about a 1,380% jump in the first four months alone against the back half of 2025. Voice phishing, the delivery that makes the technique work, doubled over the same window. These are not two trends. They are one attack chain.

The 2026 device-code phishing surge
1,500%
Rise in device-code phishing in 2026
Huntress logged ~1,380% in H1 alone
2x
Increase in voice phishing (vishing)
H2 2025 to H1 2026
0
Passwords the attacker has to steal
the token is minted after you sign in
Sources: Huntress and CrowdStrike telemetry, reported by Dark Reading, August 2026.

Why "we have MFA" stopped being the answer

Device-code phishing is not an adversary-in-the-middle attack. Nobody proxies your login page, nobody relays a one-time code in real time, and nobody needs your password. The flow it abuses, the OAuth 2.0 device authorization grant, was built for input-constrained devices: a smart TV or a command-line tool shows you a short code, you type that code into a normal browser where you are already signed in, and the device receives a token. The authorization happens after you authenticate, not during it.

That ordering is the whole problem. By the time the dangerous step arrives, your passkey has already fired and your multi-factor check is already satisfied, so Entra ID just wants you to confirm a code and pick your account from a menu. According to Push Security's analysis, that is why even phishing-resistant methods do not stop it: the credential was never the target, the token was. We made the same point when a retired Azure login flow let a password spray sail past MFA, and again when malware hijacked Chrome passkey logins. The pattern holds: attackers stopped fighting your authentication and started stealing what it produces.

How the flow gets turned against you

The request that starts a device-code flow is unauthenticated. Anyone, from any machine, with no prior relationship to your organization, can ask Microsoft's authorization endpoint for a device code and a matching user code. The attacker generates that code, wraps the legitimate device-login page in a lure (a fake HR salary notice, a QR code inside a PDF, a "verify your account" email), and gets an employee to enter the code. The moment they do, the attacker's waiting client receives real refresh and access tokens for that account. This is the same post-login theft we saw when a stealer grabbed the live session instead of the password, a reset does nothing once the token is out.

What those tokens reach depends entirely on the identity provider, and on the technical facts documented by Push Security and Proofpoint, Microsoft Entra ID is the highest-exposure case. Proofpoint documents criminal crews such as TA4903 moving wholesale to this technique in 2026, because on Entra ID a stolen token can be escalated through the Primary Refresh Token to single sign-on across every connected application, and a refresh token for one Microsoft app can be traded for tokens to its siblings without re-authenticating. Google Workspace fares better only because it blocks most of its own APIs from the flow.

Identity providerExposure if phishedWhy
Microsoft Entra IDHighestBroad scopes, reusable first-party app IDs, PRT and FOCI paths reach every connected app
GitHub / SalesforceMediumBroad scopes exist, but the attacker must run their own OAuth app
Google WorkspaceLowerGmail, Calendar and most Workspace APIs are blocked from the device-code flow
Blast radius by identity provider once a device-code token is stolen. Source: Push Security device-code phishing research, 2026.

Read that table as a blast-radius chart. On Microsoft, one confirmed code can become tenant-wide API access, which is exactly why the crews concentrate there.

The phishing spike and the vishing spike are one number

The device-code flow has a hard requirement: a human has to read or enter the code. That is why the same reports showing device-code phishing up 1,500% also show voice phishing doubling. The phone call is not a separate trend competing for your attention. It is the closer. An attacker calls posing as IT, walks the target to the device-login page, and reads them the code to type in. CrowdStrike tracks two of the busier voice-phishing crews as Cordial Spider and Snarky Spider.

Scale came from productization. Push Security counts more than a dozen phishing-as-a-service kits selling this capability off the shelf, the most common of which, EvilTokens, appeared in February 2026 with ready-made Microsoft, Adobe and DocuSign landing pages. Proofpoint notes much of the tooling is "vibe coded," assembled quickly with AI help, which is why no two lures in a campaign look alike. Treat the awareness message and the technical control as one countermeasure aimed at one chain, because the attackers already do.

The awareness line that matters is narrow and testable: no legitimate IT or login process ever asks you to enter a code that a person read to you over the phone. That single rule, drilled, breaks the human half of the chain.

The detection almost no one has written

Here is the part that should change your Monday. This attack leaves nothing on the host. No malware drops, no process spawns, no file lands, so endpoint tooling sees none of it. It lives entirely in cloud identity telemetry. An organization that watches its servers and laptops but does not ingest Entra ID and Microsoft 365 sign-in logs is blind to the whole technique, the same blind spot behind Microsoft 365 accounts taken past MFA on hijacked hotel networks. Getting those logs into monitoring is the precondition for detecting any of this.

Once the logs are there, the detection is unusually cheap, because the signal is unusually clean. Most organizations almost never use the device-code flow legitimately. That rarity means you can alert on every device-code sign-in, not on a threshold or an anomaly score: near-zero baseline gives near-zero false positives. Push Security's guidance for teams that cannot block the flow points at the second tell: the IP address that authorizes the grant is usually different from the IP that then uses the token, because the victim and the attacker sit in different places. An authorization here, account activity from there, minutes apart, is the shape to hunt.

Disable the device-code flow you do not use

Blocking the flow is the strongest single control, and Microsoft now recommends it outright: for any tenant that has not used device-code sign-ins in the past 25 days, block them. In Entra ID that is a custom Conditional Access policy targeting your users, with the Authentication Flows condition set to block Device Code Flow and the grant control set to Block Access. Run it in report-only mode first for a week to surface the handful of devices that genuinely need the flow, then exempt exactly those and enforce for everyone else.

That move inverts the problem. A surface that today is open to any unauthenticated stranger becomes a short allowlist of known devices, one of the rare controls that removes a whole class of attack at almost no operational cost. One caveat is worth naming: blocking the device-code flow does not stop the related consent-based variants that abuse the ordinary authorization-code flow with a localhost redirect, so pair the policy with the identity-log detection above instead of treating it as a finish line. For the services you run, get your cloud identity logs into a monitored pipeline, because that is the only layer where this attack is visible at all.

Topics

Frequently asked questions

What is device-code phishing?

Device-code phishing abuses the OAuth 2.0 device authorization grant, a login flow meant for devices like smart TVs. An attacker generates a code, tricks a signed-in user into entering it on the real Microsoft page, and receives valid access and refresh tokens for that account.

Does MFA or a passkey stop device-code phishing?

No. The device-code flow authorizes access after you have already signed in, so your password, MFA prompt or passkey has fired before the risky step. Even phishing-resistant methods do not block it, because the attacker steals the resulting token, not your credential.

How do you detect device-code phishing?

Alert on every device-code sign-in in Entra ID and Microsoft 365 logs. Most organizations rarely use the flow, so the baseline is near zero and false positives stay low. Also flag cases where the IP that authorized the grant differs from the IP that then uses the token.

How do you block the device-code flow in Entra ID?

Create a Conditional Access policy that sets the Authentication Flows condition to block Device Code Flow with a Block Access grant control. Microsoft recommends this for any tenant unused in 25 days. Run it in report-only mode first, then exempt the few devices that need it.

Why did device-code phishing rise 1,500% in 2026?

Phishing-as-a-service kits productized the technique. Push Security counts more than a dozen kits, led by EvilTokens, selling ready-made Microsoft landing pages. Voice phishing doubled alongside it, because the flow needs a person to read or enter the code.

Which platforms are most exposed to device-code phishing?

Microsoft Entra ID carries the highest risk, because a stolen token can escalate to single sign-on across every connected app. GitHub and Salesforce sit in the middle. Google Workspace is lower, because it blocks most of its APIs from the device-code flow.

Ready to meet the Guardians?

Deploys fast - agentless for monitoring and cloud, a lightweight agent for deep endpoint security. Just Suriq, standing watch.