Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2401+ Articles
159+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. News
  3. Hacker Claims 3.6 Million Azure Account Records Stolen from Major Companies
Hacker Claims 3.6 Million Azure Account Records Stolen from Major Companies
NEWS

Hacker Claims 3.6 Million Azure Account Records Stolen from Major Companies

A threat actor is selling employee databases allegedly taken from Microsoft Azure infrastructure of multiple Fortune 500 firms via compromised credentials.

Dylan H.

News Desk

August 17, 2026
5 min read

A threat actor is claiming to have stolen 3.6 million employee account records from the Microsoft Azure infrastructure of multiple Fortune 500 companies and is now selling the data on criminal forums. The alleged theft was carried out by gaining access to corporate Azure environments using compromised employee credentials — a technique that continues to plague enterprise cloud deployments globally.

The Claim

According to reporting by BleepingComputer, the threat actor posted database samples on hacker forums as proof of access, alleging they penetrated the Azure-hosted environments of several large corporations. The data purportedly includes employee names, email addresses, account metadata, and internal organizational data.

The seller has not publicly named every targeted company, but claims the stolen databases represent employees from major corporations in multiple sectors, including finance, technology, and manufacturing.

At the time of writing, Microsoft has not confirmed whether any breach of Azure infrastructure occurred, nor have the named target organizations publicly acknowledged the claims.

How It Allegedly Happened: Credential Compromise

The attacker claims access was gained through compromised credentials — likely obtained via:

  • Credential stuffing: Using username/password combinations leaked from previous breaches against Azure login portals
  • Phishing campaigns: Stealing credentials through targeted phishing emails with fake Microsoft 365 login pages
  • Infostealer malware: Credentials harvested from infected corporate endpoints by malware like RedLine, Lumma, or Raccoon
  • Password spray attacks: Systematically trying common passwords against Microsoft Entra ID (formerly Azure AD) accounts

This is consistent with a broader pattern observed by Microsoft and security researchers: the majority of Azure and Microsoft 365 account compromises are not caused by vulnerabilities in Microsoft's infrastructure but by weak, reused, or phished credentials used to authenticate to legitimate services.

Why Azure Account Records Are Valuable

Employee records extracted from Azure environments carry significant value on criminal markets:

Data TypeCriminal Value
Employee email addressesTargeting for BEC, spear phishing
Account role and permissions dataMapping attack paths for further access
Organizational hierarchy dataSocial engineering targeting executives
Internal application access infoEscalation into line-of-business systems

Beyond direct sale, this data enables Business Email Compromise (BEC) fraud — one of the most financially damaging cybercrime categories, costing organizations billions annually.

Unverified Claims: Important Caveat

Threat actors on criminal forums frequently exaggerate the scale, recency, or novelty of stolen data to command higher prices. In many such cases:

  • Data is recycled from older breaches and repackaged as new
  • Claimed victim lists are inflated or include organizations not actually breached
  • Data has been aggregated from multiple unrelated sources

Until Microsoft or the alleged victim companies confirm the incident, this should be treated as an unverified claim requiring investigation. However, the release of sample data on forums warrants serious attention and prompt validation by security teams at large enterprises.

What Security Teams Should Do Now

Regardless of whether this specific claim is verified, it illustrates ongoing threats to Azure environments. Immediate steps for enterprise security teams:

1. Audit Azure Sign-In Logs

Review Microsoft Entra ID (Azure AD) sign-in logs for anomalies:

# PowerShell — review risky sign-ins in Entra ID
Connect-MgGraph -Scopes "AuditLog.Read.All"
Get-MgAuditLogSignIn -Filter "riskState eq 'atRisk'" -Top 50

Look for:

  • Logins from unfamiliar geographies or IP ranges
  • Impossible travel events (logins from two distant locations in a short time)
  • Account enumeration patterns
  • Failed login spikes followed by successful logins

2. Enforce Multi-Factor Authentication

Enforcing phishing-resistant MFA (FIDO2/passkeys or certificate-based auth) eliminates credential stuffing and phishing as viable attack vectors:

# Check Conditional Access MFA policy coverage
Get-MgIdentityConditionalAccessPolicy | 
  Where-Object {$_.State -eq 'enabled'} |
  Select-Object DisplayName, Conditions, GrantControls

Any accounts not covered by MFA policies should be flagged for immediate remediation.

3. Check Have I Been Pwned and Threat Intelligence Feeds

Use Microsoft Entra ID Protection or third-party threat intel to identify accounts with credentials appearing in known breach dumps:

  • Enable Entra ID Protection — it automatically flags accounts with leaked credentials
  • Subscribe to breach notification services covering corporate email domains
  • Integrate dark web monitoring into your SOC workflow

4. Review Service Principal and App Permissions

If attackers gained access to Azure environments, they may have created rogue service principals or modified app permissions:

# List all service principals — review for unfamiliar entries
Get-MgServicePrincipal -All | 
  Select-Object DisplayName, AppId, CreatedDateTime |
  Sort-Object CreatedDateTime -Descending

5. Enable Advanced Threat Protection

Ensure Microsoft Defender for Cloud and Defender for Identity are active across your Azure tenants to detect lateral movement and privilege escalation post-compromise.

The Broader Credential Threat Landscape

This incident follows a well-established pattern in cloud security breaches. The 2024 Snowflake incident — where attackers accessed dozens of major companies' cloud environments — similarly traced back to stolen credentials rather than platform vulnerabilities. The lesson repeated itself in numerous Microsoft 365, Google Workspace, and AWS attacks throughout 2024 and 2025.

The pivot from traditional network intrusion to identity-based attacks reflects attacker adaptation to the modern enterprise perimeter, where cloud services are directly internet-reachable and protected primarily by credentials.

Organizations that have not yet implemented phishing-resistant MFA, reviewed their Conditional Access policies, or deployed identity threat detection are operating with a significant and well-documented security gap.

What to Watch

  • Microsoft's official response: Whether Microsoft confirms any infrastructure compromise or validates the breach claims
  • Dark web monitoring hits: Whether the claimed data surfaces in aggregator services used by threat intelligence teams
  • Secondary attacks: Organizations in the alleged victim list should watch for targeted spear phishing, BEC attempts, or external partner fraud leveraging internal org chart data

Source: BleepingComputer

#Microsoft#Azure#Cloud Security#Data Breach#Credential Theft

Related Articles

Fortune 500 Companies Hit in Azure Data Theft Campaign

Threat actor TheHatman exposed 3.5M+ enterprise records from McDonald's, Vodafone, and TCS via infostealer-driven Azure Entra ID credential theft.

5 min read

Microsoft Blames Massive Microsoft 365 Outage on Automated Maintenance Bug

Microsoft has revealed that a bug in its automated network maintenance request system caused Thursday's major global outage by mistakenly removing IP routes from more devices than intended, disrupting Azure and Microsoft 365 services for users worldwide.

5 min read

Miasma Worm Hits 73 Microsoft GitHub Repositories in Major Supply Chain Attack

Microsoft's GitHub presence has become the latest target of the self-replicating Miasma supply chain worm, with 73 repositories across Azure, Azure-Samples…

5 min read
Back to all News