惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The CVE That Wasn't: Microsoft's Azure Vulnerability Reje...
Susilo harjo · 2026-05-19 · via DEV Community

Susilo harjo

TL;DR:

  • A security researcher discovered a critical cross-tenant access flaw in Microsoft Azure's identity management layer, capable of exposing sensitive customer data across organizational boundaries — and provided full technical documentation with proof-of-concept code.
  • Microsoft's Security Response Center (MSRC) rejected the submission as "by design," classifying the vulnerable behavior as intended functionality rather than a security defect — and declined to issue a CVE identifier.
  • The rejection is inconsistent with Microsoft's own historical precedent, as substantially similar cross-tenant vulnerabilities in Azure have received CVE assignments and security patches in the past.
  • This pattern — classify as "by design," silently patch later — erodes the coordinated vulnerability disclosure ecosystem and leaves Azure customers unaware of active risks that attackers may already be exploiting.

What the Researcher Found

The vulnerability resided in Azure's cross-tenant access architecture — the mechanisms governing how identities, resources, and permissions interact across organizational boundaries in shared cloud environments. Under specific conditions, an attacker could traverse tenant isolation boundaries to access resources belonging to other Azure customers. The attack path did not require exploiting a misconfiguration on the victim's side; it leveraged behavior present in Azure's own identity and access management plumbing.

The submission followed the gold standard: detailed technical write-up, step-by-step reproduction, working PoC code, and clear security impact analysis. From an engineering perspective, cross-tenant authorization bypasses are among the highest-severity cloud issues — they undermine the fundamental isolation primitive that the entire multi-tenancy model depends on.

The "By Design" Rejection

Microsoft's formal response classified the reported behavior as intended design. The MSRC case was closed without a fix, CVE, or public advisory. This framing is increasingly contentious: every bug reclassified as a design choice is one fewer patch cycle and one less mark on the security track record. But a CVE provides a globally recognized identifier that security teams use to track, assess, and remediate risks. Without one, the finding struggles to propagate through enterprise vulnerability management pipelines.

Precedent Contradictions

Azure has issued CVEs for cross-tenant vulnerabilities in the past — including issues in Azure AD, shared key authentication flows, and resource management APIs. The architectural similarity between those acknowledged vulnerabilities and the current finding raises an uncomfortable question: what changed? The distinction between a code-level authorization bug and an architectural authorization gap may matter to engineers, but from the customer's perspective it is academic. If Tenant A can read Tenant B's storage, the taxonomy of the flaw matters less than the fact of the exposure.

The Silent Fix Pattern

Multiple documented instances exist where Microsoft rejected a security submission, then quietly addressed the underlying issue in a subsequent Azure update — without credit, CVE, or advisory. This pattern is corrosive: it denies researcher credit, denies customers actionable identifiers for risk assessment, and denies the security community data points for understanding the threat landscape. For engineering teams operating Azure workloads, a silent fix is functionally indistinguishable from an unpatched vulnerability until someone reverse-engineers the update.


Engineering Takeaways

Cross-tenant isolation must be treated as an untrusted boundary even when provider documentation asserts otherwise. Penetration tests should explicitly target tenant-boundary traversal, not just application-layer vulnerabilities. Vulnerability management programs that depend solely on CVE feeds should supplement them with direct monitoring of researcher disclosures. The shared responsibility model requires sharper definition — provider-side architectural flaws in tenant isolation are not the customer's responsibility to detect or mitigate. The industry needs clearer norms around when "by design" is a valid technical assessment and when it is a deflection.


For the complete architectural breakdown — including the full anatomy of the cross-tenant authorization bypass, a detailed comparison with previously acknowledged Azure CVEs, and a deeper analysis of the silent-fix pattern and its implications for enterprise vulnerability management — read the full analysis at susiloharjo.web.id:

🔗 https://susiloharjo.web.id/the-cve-that-wasnt-microsofts-azure-vulnerability-rejection-and-the-eroding-trust-in-cloud-disclosure/


Related on Susiloharjo: