FBI Warns Kali365 Phishing Platform Is Hijacking Microsoft 365 Accounts Through OAuth Device Code Abuse + Video

Listen to this Post

Featured Image
Cybersecurity researchers and federal investigators are raising alarms over a sophisticated phishing-as-a-service platform known as Kali365, a growing threat that is actively targeting Microsoft 365 and Microsoft Entra accounts. According to warnings shared by the FBI and threat intelligence researchers, the operation abuses OAuth device code authentication flows to steal active session tokens, bypass multi-factor authentication protections, and silently hijack enterprise cloud accounts.

The campaign highlights a dangerous evolution in phishing tactics. Instead of relying on traditional password theft alone, attackers are now manipulating legitimate Microsoft authentication workflows. This allows them to capture authenticated sessions directly from victims without needing to repeatedly request credentials or MFA approvals. Security analysts say the technique is especially effective against organizations heavily dependent on cloud identity systems and remote collaboration platforms.

Reports circulating through cybersecurity monitoring communities indicate that Kali365 has been promoted as a phishing service available to cybercriminals, making the barrier to entry significantly lower for attackers with limited technical skills. The service appears to automate parts of the attack chain, including device code generation, token collection, and session hijacking.

The attack reportedly focuses on Microsoft 365 environments and Microsoft Entra ID accounts, formerly known as Azure Active Directory. Threat actors abuse the OAuth device code flow, which was originally designed for devices with limited input capabilities such as smart TVs or IoT systems. Instead of forcing victims to enter credentials into fake login pages, attackers trick users into entering legitimate Microsoft authentication codes on official Microsoft login portals.

Because the victim authenticates through the real Microsoft interface, traditional phishing awareness training may not detect the attack immediately. Once the authentication process is completed, attackers can obtain valid session tokens tied to the authenticated account. These tokens may then allow persistent access to corporate email systems, Teams communications, SharePoint data, OneDrive files, and other sensitive enterprise services.

Security experts warn that session token theft represents a major challenge because MFA defenses are often bypassed entirely after the initial authentication step. In many cases, the user successfully completes legitimate MFA verification, unknowingly authorizing the attacker’s session in the background.

The FBI warning shared online gained attention across cybersecurity communities on X, formerly Twitter, where researchers highlighted the growing abuse of OAuth authentication mechanisms. The alert was amplified by threat monitoring accounts tracking phishing operations and ransomware activity worldwide.

At the same time, another major cybersecurity incident surfaced involving Rolser, a Spanish consumer services company reportedly impacted by ransomware activity linked to the DragonForce threat actor. According to reports, the attack caused operational disruptions and affected business continuity inside the organization. While technical details remain limited, the event reflects the continued pressure ransomware groups are placing on European companies across multiple industries.

The combination of sophisticated phishing campaigns and ransomware operations demonstrates how cybercriminal ecosystems continue evolving toward cloud-focused attacks. Organizations increasingly rely on identity-based infrastructure, making authentication systems one of the most valuable targets for attackers.

What Undercode Says:

The Rise of OAuth Abuse Changes the Entire Phishing Landscape

Traditional phishing campaigns usually depend on stealing usernames and passwords through cloned login pages. Kali365 represents something far more dangerous because it weaponizes legitimate authentication flows. Attackers no longer need to create convincing fake portals when they can simply exploit trust in Microsoft’s own infrastructure.

Device Code Authentication Is Becoming a Major Enterprise Risk

OAuth device code authentication was designed for convenience, especially on devices with limited keyboards or browser support. Threat actors discovered that the workflow can be manipulated socially rather than technically. This makes the attack incredibly stealthy and difficult for average users to recognize.

MFA Is No Longer Enough on Its Own

Many organizations still believe MFA alone guarantees protection against account compromise. That assumption is rapidly becoming outdated. Session hijacking techniques demonstrate that attackers can operate after MFA validation occurs legitimately. This shifts defensive priorities toward token protection, session monitoring, and conditional access enforcement.

Microsoft 365 Remains a High-Value Target

Corporate email accounts are essentially the master keys to modern organizations. Once compromised, attackers gain access to internal communication chains, financial approvals, cloud documents, password reset links, and employee directories. Microsoft 365 continues to dominate enterprise collaboration, making it one of the most profitable targets for cybercriminal operations.

Kali365 Reflects the Industrialization of Cybercrime

The most concerning element is not the phishing method itself, but the commercialization behind it. Phishing-as-a-service platforms dramatically lower the skill threshold for cybercriminals. An attacker no longer needs deep knowledge of OAuth authentication to launch advanced cloud attacks.

Security Awareness Training Needs an Upgrade

Most phishing awareness programs teach employees to identify fake websites and suspicious email links. Kali365-style attacks bypass those indicators because users interact with real Microsoft authentication pages. Organizations must now educate employees about device code scams and abnormal login requests.

Token Theft Is Becoming the Preferred Intrusion Vector

Session tokens are extremely valuable because they represent authenticated trust. Attackers increasingly focus on stealing cookies, OAuth tokens, and session credentials instead of passwords. This trend mirrors the broader movement toward identity-centric cyberattacks.

Conditional Access Policies Can Reduce Exposure

Enterprises should immediately review Microsoft Entra conditional access rules, disable unnecessary device code authentication where possible, and monitor anomalous sign-in patterns. Restricting token lifetimes and enforcing risk-based authentication can also limit attacker persistence.

Endpoint Visibility Is Critical

Many organizations monitor credentials but fail to track token usage. Advanced endpoint detection and cloud identity monitoring solutions are now essential. Unusual OAuth grants, suspicious device registrations, and impossible travel events should trigger immediate investigation.

Attackers Are Exploiting User Psychology More Than Software Bugs

Kali365 succeeds because it manipulates human trust. Victims believe they are completing normal Microsoft login activity. This reflects a broader cybersecurity reality where social engineering remains more effective than exploiting technical vulnerabilities.

Ransomware and Identity Theft Are Converging

The simultaneous reports involving DragonForce ransomware activity and Kali365 phishing campaigns highlight a growing trend. Threat actors increasingly combine credential theft with ransomware deployment. Access brokers steal cloud identities first, then sell access to ransomware affiliates later.

Cloud Dependency Expands the Blast Radius

Modern organizations store enormous amounts of operational data inside cloud ecosystems. A single compromised Microsoft 365 account can expose sensitive documents, internal chats, legal files, financial spreadsheets, and customer records within minutes.

Security Teams Must Prioritize Identity Defense

Identity is now the primary security perimeter. Firewalls and antivirus software alone cannot stop OAuth abuse. Companies must invest in zero-trust architecture, behavioral analytics, and cloud-native threat detection to remain resilient.

The FBI Warning Should Be Treated Seriously

Federal warnings around phishing infrastructure are usually based on observed attack campaigns affecting real organizations. Businesses ignoring OAuth abuse today may face major compromises tomorrow.

Deep analysis :

Detect suspicious OAuth device code logins in Microsoft Entra

SigninLogs

| where AuthenticationProtocol == "deviceCode"
Hunt for impossible travel activity

SigninLogs

| where ResultType == 0
| evaluate autocluster()
Monitor suspicious token usage

AuditLogs

| where OperationName contains "Consent"
PowerShell command to review OAuth applications

Get-AzureADApplication

Revoke compromised refresh tokens

Revoke-AzureADUserAllRefreshToken -ObjectId USER_ID

Disable risky legacy authentication protocols
Set-AuthenticationPolicy -BlockLegacyAuthProtocols $true
Review risky sign-in events

Get-MgRiskyUser

Check active OAuth grants

Get-MgOauth2PermissionGrant

Fact Checker Results

🔍 ✅ The FBI warning regarding Kali365 and OAuth device code abuse has been widely circulated by cybersecurity monitoring communities and researchers.

🔍 ✅ OAuth device code phishing attacks are real and increasingly used to bypass MFA protections through session token theft.

🔍 ❌ There is currently limited public technical disclosure regarding the full infrastructure and operators behind the Kali365 phishing service.

Prediction

📊 Cybercriminal groups will increasingly target cloud authentication workflows instead of traditional password theft because OAuth-based attacks offer higher success rates against MFA-protected accounts.

📊 Microsoft 365 environments will likely experience a rise in token hijacking campaigns throughout 2026 as phishing-as-a-service platforms continue evolving.

📊 Security vendors are expected to introduce stronger token-binding protections and advanced identity anomaly detection systems to counter OAuth abuse tactics.

▶️ Related Video (78% Match):

🕵️‍📝Let’s dive deep and fact‑check.

References:

Reported By: x.com
Extra Source Hub (Possible Sources for article):
https://www.quora.com/topic/Technology
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2
Bing

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube