Three distinct Phishing-as-a-Service (PhaaS) platforms, Sneaky 2FA, EvilTokens, and EvilProxy, are actively targeting US organizations to steal Microsoft 365 (M365) credentials and session tokens, effectively neutralizing standard multi-factor authentication (MFA) protections.
Each kit uses a fundamentally different technical approach: Adversary-in-the-Middle (AiTM) session hijacking, OAuth device-code abuse, and real-time reverse-proxy credential relay, but all three converge on the same outcome: a fully authenticated M365 session or token in the attacker’s hands without ever “cracking” MFA itself.
For defenders, this represents a critical shift in the threat landscape. Traditional advice to “enable MFA” is no longer sufficient on its own, because these kits are purpose-built to make the victim complete real, legitimate MFA challenges while the attacker silently captures the resulting session artifact.
This article breaks down each kit’s infrastructure, attack chain, detection opportunities, MITRE ATT&CK mapping, and IOC data needed for defensive tooling.
All three kits exploit the same structural weakness: MFA validates that a login event occurred, not where the resulting token or cookie ends up. Sneaky 2FA and EvilProxy sit as a live man-in-the-middle proxy between victim and Microsoft, relaying the real authentication flow and skimming the session cookie the moment it is issued.
EvilTokens goes a step further and doesn’t touch credentials or cookies at all; it abuses the OAuth 2.0 Device Authorization Grant, a flow Microsoft designed for keyboardless devices like smart TVs and IoT hardware, tricking the victim into authorizing the attacker’s client directly on Microsoft’s own infrastructure.
| Attribute | Sneaky 2FA | EvilTokens | EvilProxy |
| Attack technique | AiTM reverse-relay phishing page | OAuth 2.0 Device Code Grant abuse | Reverse-proxy AiTM |
| First observed | October 2024 (Sekoia, Dec 2024) | Mid-February 2026 | May 2022 |
| Operator/brand | “Sneaky Log” Telegram PhaaS | EvilTokens PhaaS platform | EvilProxy dark-web PhaaS |
| Credential theft method | Relays creds live to Microsoft API, captures session cookie | None victim authorizes attacker’s OAuth client; only tokens stolen | Reverse proxy relays creds + cookies in real time |
| MFA interaction | Victim completes real MFA; cookie skimmed post-auth | Victim completes real MFA; token issued directly to attacker | Victim completes real MFA; cookie/token intercepted mid-flight |
| Primary evasion | Cloudflare Turnstile/reCAPTCHA, IP/data-center filtering, Wikipedia redirects for bots | Multi-redirect chains via trusted sites, bot-protection walls, AI-generated lure infrastructure | VM/browser fingerprinting, random URLs, near-identical clone of real login page |
| Pricing (underground) | ~$200/month subscription | Not publicly priced; sold as “complete BEC operations environment” | Sold as PhaaS on dark web marketplaces since 2022 |
| Scale observed | ~100 domains tracked by early Jan 2025; 61+ IOCs documented | 340+ M365 organizations compromised across 7+ countries since Feb 2026 | 100+ organizations, executives/managers targeted in single 2023 wave |
Sneaky 2FA is an Adversary-in-the-Middle phishing kit first identified by Sekoia’s Threat Detection & Research team in December 2024, though campaigns trace back to October 2024.
It is sold as a licensed, obfuscated PhaaS product through a fully automated Telegram bot called @SneakyLog_bot, operated by a cybercrime service known as “Sneaky Log,” which also sells a bulk email sender and redirect/attachment tooling.
Analysis of the leaked source code revealed it reuses components from the W3LL OV6 AiTM kit reported by Group-IB in 2023, including identical User-Agent handling logic and cookie-parsing functions.
The kit’s defining evasion feature is a Cloudflare Turnstile (or reCAPTCHA) challenge gate placed in front of the fake login page this blocks automated scanners and sandboxes from ever reaching the phishing content, since bots typically fail or skip the CAPTCHA.
Victims who pass the human-verification check are shown a pixel-accurate cloned Microsoft authentication page, often using blurred screenshots of real M365 interfaces (Outlook, OneDrive, SharePoint) as visual bait.
/validate; the phishing server relays them live to Microsoft’s authentication APISekoia identified that Sneaky 2FA hardcodes a different User-Agent string for each step of the authentication flow it relays to Microsoft e.g., a Safari-on-iOS User-Agent for the login step, then a Chrome-on-Windows User-Agent for MFA resolution a pattern no real user’s browser would produce within the same session.
This “impossible device shift” is detectable via Sigma correlation rules against Entra ID/M365 audit logs, correlating Login:login and Login:resume events by correlation ID within a 10-minute window.
| Type | Indicator | Notes |
| URL pattern | https://<domain>/[a-zA-Z0-9]{150}/index, /verify, /validate | 150-char alphanumeric path signature |
| Default repo path | /auth/ | Common deployment directory |
| Operator domain | sneakylog[.]store | License-check server, registered 3 Sep 2024 |
| Operator IP | 185.125.100[.]81 | Hosts “Sneaky Log” HTTP service |
| Operator IP | 101.99.92[.]124 | Associated infrastructure |
| Sample domain | highnationservices[.]com | Active phishing page |
| Sample domain | mysilverfox.com[.]my | Active phishing page |
| Sample domain | kagumigroup[.]id | Hosted on /wp-content/plugins/well/auth/ (compromised WordPress) |
| Sample domain | tesla-apply-job[.]com | Operator-linked domain |
| Favicon hash | SHA256 5d91563b6acd54468ae282083cf9ee3d2c9b2daa45a8de9cb661c2195b9f6cbf | Base64-encoded Microsoft logo |
| Background image hash | SHA256 8c4e78b1bc0a0923fccc0cd2d7ca06023b6ab15af079e6b19d7d5d2fddc5488d | Transparent MSFT-color background |
| Redirect service | href.li | Used to anonymize bot redirects to Wikipedia |
Sekoia’s full IOC set spans roughly 61 indicators 57 domains, two IPs, and two subdomains publicly available in CSV form via the SEKOIA-IO Community GitHub repository.
Additional confirmed attacker-controlled domains include africanagrirnarket[.]com, allorganicitems[.]com, emailsay[.]com, files42[.]com, flonrenceorganics[.]us, guardiansresearch[.]org, intertrustsgroup[.]com, omnirayoprah[.]cfd, portalpowerfiles[.]top, reliant-rehabs[.]com, storageorder[.]sbs, and windstreaim[.]com.
Independent DNS analysis found average dwell time of 113 days between domain registration and threat-intel detection for Sneaky 2FA infrastructure, with roughly one-third of IOCs undetected for over 90 days.
EvilTokens is a PhaaS platform that emerged around mid-February 2026 and has already compromised over 340 Microsoft 365 organizations across at least seven countries.
Unlike traditional phishing kits, EvilTokens never presents a fake login page and never captures a password it weaponizes Microsoft’s legitimate OAuth 2.0 Device Authorization Grant, the flow built for keyboardless devices to authenticate via a short code entered at microsoft.com/devicelogin.
The attacker’s client initiates a device authorization request against Microsoft’s API and receives a real, valid device code and user code indistinguishable from a legitimate Smart TV or printer authentication request.
The victim receives a lure (often disguised as a meeting invite, Adobe Sign, or DocuSign request) instructing them to enter this code at the genuine Microsoft URL.
When the victim authenticates including completing their real MFA challenge exactly as expected Microsoft’s backend issues valid access and refresh tokens directly to the attacker’s polling client, not the victim’s device.
GetCredentialType endpoint on login.microsoftonline.comThe Register described the toolkit as functioning as a “complete business email compromise operations environment,” with Talos researchers noting its downstream use for business email compromise fraud, not just initial access.
Push Security and Sekoia have both confirmed a sharp spike in device-code phishing adoption throughout 2026, citing multiple shared backend IPs on the Railway cloud platform used for token replay.
| Type | Indicator | Context |
| Domain | techroboticslabmade.com | Central C2 / MailVault platform |
| Domain | macmamo.com | Self-hosted PHP backend |
| Domain | bibf.ac.bw | Compromised gate site |
| Domain | acb.af | Redirector |
| Domain | adobe-lg7.emily-c57.workers.dev | Cloudflare Worker Adobe/ACH lure |
| Domain | docusign-wz7.emily-c57.workers.dev | Cloudflare Worker DocuSign lure |
| Domain | docusign-2vh.davidvallejo-tophattx-com-s-account.workers.dev | Cloudflare Worker DocuSign lure |
| Domain | ms-teamsmeeting.top | Microsoft Teams impersonation |
| Domain | microsoft365onlineoffice.com | M365 impersonation |
| Domain | microsoftonlineoffice365.com | M365 impersonation |
| Domain | microsoftofficeonline365.com | M365 impersonation |
| Domain | filesharebysecureoffice365.com | Credential harvesting |
| Domain | office365documentbysecuredportal.com | Credential harvesting |
| Domain | documentsecuredbyoffice365.com | M365 impersonation |
| IP | 216.126.227.101 | Self-hosted backend (Cloudzy, Tampa) |
| IP range | 162.220.232.0/22 | Token replay (Railway) |
| IP range | 162.220.234.0/22 | Token replay (Railway) |
| IP | 167.99.0.116 | DigitalOcean (ASN 14061), US |
| IP | 104.248.200.231 | DigitalOcean (ASN 14061), US |
| IP | 185.81.126.157 | PacketHub S.A. (ASN 136787), US |
| IP (IPv6) | 2606:4700:3037::6815:388b | Cloudflare-fronted infrastructure, US |
| User-Agent | python-requests/2.31.0 | Automated scripting agent |
| User-Agent | kali365-live/1.0.0 | Custom M365 exploitation toolkit |
EvilProxy has been operating since May 2022 and is one of the longest-running commercial AiTM PhaaS platforms, marketed on dark-web forums with turnkey targeting of Microsoft 365, Google Workspace, Dropbox, GitHub, and other major identity providers.
In August 2023, Proofpoint and Menlo Security tracked a large campaign that used EvilProxy to hijack M365 accounts of C-level executives and managers at over 100 organizations globally.
EvilProxy operates as a genuine reverse proxy: victim traffic is routed through attacker-controlled infrastructure that fetches and displays the actual Microsoft login page content in real time, meaning the phishing page‘s source code closely mirrors the legitimate site a key reason automated scanners and casual visual inspection struggle to flag it.
Before serving any content, the kit performs extensive virtual-machine detection and browser fingerprinting to filter out security researchers and sandboxes.
Okta’s Threat Intelligence team confirmed an EvilProxy campaign active since at least March 2025, still evolving as of their advisory, describing it formally as threat actor O-TA-041.
A key detection tell flagged by Barracuda researchers: unusual MFA prompts arriving when the user is not actively logging in, and login page URLs that don’t match the organization’s usual authentication domain.
| Type | Indicator | Notes |
| Domain | acrobatsign[.]es | Suspicious landing page |
| Domain | adobeacrobat[.]sa[.]com | Suspicious landing page |
| Domain | adobesign[.]ceelegal[.]com | Suspicious landing page |
| Domain | adobesign[.]pl | Suspicious landing page |
| Domain | adobesign[.]us[.]com | Suspicious landing page |
| Domain | asir[.]co[.]com | Suspicious landing page |
| Domain | blue-styles[.]cz | Suspicious landing page |
| Login phishing URL pattern | lmo.msdnmail[.]net/common/oauth2/v2.0/authorize?client_id=... | OAuth authorize endpoint abuse observed in 2022 campaign |
| Detection tell | .ru TLD + Base64-encoded victim email in URL | Often indicates Tycoon 2FA rather than EvilProxy; useful for differentiation |
| Technique ID | Technique | Applies To |
| T1566.002 | Phishing: Spearphishing Link | All three kits |
| T1566.001 | Phishing: Spearphishing Attachment (QR/PDF lures) | Sneaky 2FA |
| T1539 | Steal Web Session Cookie | Sneaky 2FA, EvilProxy |
| T1550.001 | Use Alternate Authentication Material: Application Access Token | EvilTokens |
| T1621 | Multi-Factor Authentication Request Generation (adjacent real MFA relayed, not generated) | Sneaky 2FA, EvilProxy |
| T1557 | Adversary-in-the-Middle | Sneaky 2FA, EvilProxy |
| T1078.004 | Valid Accounts: Cloud Accounts | All three (post-compromise) |
| T1114 | Email Collection (post-access BEC) | EvilTokens |
Phishing-resistant MFA is the only control that structurally defeats all three kits, since TOTP, SMS, and standard push-based MFA are all relayed or redirected rather than broken FIDO2/WebAuthn passkeys and hardware certificate-based authentication cannot be proxied or device-code-hijacked in the same way.
Organizations should also restrict the OAuth Device Authorization Grant flow entirely for standard corporate users via Conditional Access policies in Microsoft Entra ID, since almost no typical employee legitimately needs keyboardless-device sign-in.
/index, /verify, or /validate a high-fidelity Sneaky 2FA signatureStrengthen Your SOC by Accelerating Threat Detection & Rapid Investigations. -> Integrate ANY.RUN With Your SOC Now.
Google has released an important Chrome 153 security update that fixes 42 vulnerabilities across the…
The Cybersecurity and Infrastructure Security Agency (CISA) and the National Institute of Standards and Technology…
CISA and five international cybersecurity agencies have released detailed guidance describing 17 common techniques hackers…
Apple has released one of its largest coordinated security rollouts, addressing 273 distinct critical vulnerabilities…
You can’t detect today's attacks with yesterday’s threat intelligence; that’s how you could briefly formulate…
Microsoft has published a draft Humanist AI Code of Conduct that would prohibit its in-house…