That "CVSS 10.0" Azure DevOps CVE (2026-42826) is real, already fixed by Microsoft, and a useful lesson in not panicking at a score
Saw a few people spinning up about CVE-2026-42826 since it's carrying a perfect 10.0, so a quick PSA + a point worth discussing.
What it is: a critical information disclosure flaw in Azure DevOps (CWE-200) that allowed unauthenticated remote attackers to disclose sensitive information over the network CVSS 10.0. On paper that's about as bad as it gets: no auth, no user interaction, network vector. CrowdStrike
The part that matters for us: there is nothing to do. Microsoft remediated it entirely in their cloud infrastructure and explicitly stated there's no action for users of the service to take the CVE exists mainly for transparency. If you're on the hosted Azure DevOps Services, you were patched before you ever heard about it. There's no public PoC and the exploit maturity is rated unproven. The RegisterTheHackerWire
The reason I think it's worth a thread anyway: it's a clean example of why a raw CVSS base score is a terrible prioritization tool on its own. A 10.0 that's already mitigated cloud-side with no PoC is operationally a non-event, while a 6.5 in a transitive dep that's actually reachable in your prod path could ruin your week. The base score doesn't carry that context the temporal and environmental metrics (and honestly, just reading the advisory) do.
It's also a reminder of why Azure DevOps is such a juicy target regardless of this specific bug: these environments routinely hold deployment credentials, cloud secrets, CI/CD tokens, infra configs, and source code. An info-disclosure flaw there isn't theoretical it's a direct line to everything downstream. INE