Security teams have never been better at finding vulnerabilities. Modern scanners, cloud security posture management (CSPM), and attack surface management (ASM) tooling generate findings at industrial scale — a mid-size enterprise routinely carries tens of thousands of open findings, hundreds of them rated Critical. And yet, breach after breach in 2025 and 2026 demonstrates the same uncomfortable truth: the vulnerability that actually gets exploited is rarely the one at the top of your scanner report.
A recent analysis from The Hacker News makes the point plainly: a Critical vulnerability looks alarming on a report, but if the affected asset sits behind strong segmentation, enforced identity controls, and layered defenses that prevent an attacker from ever reaching it, that vulnerability is — operationally — low risk. Meanwhile, a Medium-severity flaw on an internet-facing asset with known exploit code and a direct path to your crown-jewel systems may be the actual breach waiting to happen.
This is not an argument to ignore Critical findings. It is an argument to stop letting CVSS base scores drive your remediation queue, and to start optimizing the process that determines which vulnerabilities actually create a path to compromise. This post lays out how to make that shift.
The Problem With Score-Driven Remediation
CVSS was designed to describe the intrinsic severity of a vulnerability — how bad it could be under worst-case conditions. It was never designed to tell you whether it will hurt you. Yet most vulnerability management programs still operate like this:
- Scanner runs.
- Findings are sorted by CVSS, descending.
- IT is ticketed from the top down.
- Repeat forever, with a backlog that never shrinks.
The failure modes are predictable:
- Wasted remediation effort. Teams burn patch windows and change-freeze exceptions on Critical-rated flaws that are unreachable — running on segmented lab systems, behind authenticated gateways, or on assets with no attacker-viable path to anything valuable.
- Missed true exposure. A CVSS 7.5 with public exploit code on an internet-facing VPN concentrator or a third-party SaaS integration gets queued behind a CVSS 9.8 on an internal test box.
- Alert fatigue and organizational friction. When every month brings another "1,200 new Criticals," IT stops believing security, and security stops being able to force anything through.
- No connection to how attackers actually move. Real intrusions are chains: initial access vector → privilege escalation → lateral movement → objective. A single vulnerability's score says nothing about where it sits in that chain.
I've led IR engagements where the initial access vector was a Medium-rated misconfiguration that scanners deprioritized, chained with a default credential and flat network segmentation. The Criticals the client had spent the prior quarter patching were never touched by the adversary. That pattern is the rule, not the exception.
Technical Analysis: What Actually Determines Real Risk
Moving from severity-based to risk-based prioritization means evaluating each finding against a set of contextual factors. Think of it as an internal scoring model layered on top of raw scanner output.
1. Exploitability — Is There a Working Path In?
- Known exploited vulnerabilities: Cross-reference every finding against the CISA Known Exploited Vulnerabilities (KEV) catalog. KEV-listed flaws get remediated on deadline regardless of CVSS score — confirmed in-the-wild exploitation trumps theoretical severity every time.
- Public PoC and exploit maturity: A vulnerability with weaponized exploit code in Metasploit, commercial exploit kits, or circulating PoCs on public repositories is categorically different from one with only a theoretical write-up.
- Threat actor interest: Does the affected technology appear in current adversary tradecraft? Ransomware affiliates and initial access brokers have well-documented preferences for edge devices — VPNs, firewalls, remote access portals, and internet-facing remote management interfaces. Flaws in those product classes demand escalation regardless of score.
2. Reachability — Can an Attacker Actually Get to the Vulnerable Component?
This is the factor the source article emphasizes most, and it's the one most programs handle worst.
- Network exposure: Is the affected service internet-facing, reachable from partner networks, or confined to a tightly segmented enclave? Pull real data — firewall rules, cloud security group configurations, and external attack surface scans — rather than trusting documentation.
- Code/function reachability: For application and library vulnerabilities (a class that exploded with modern dependency sprawl), ask whether the vulnerable function is actually invoked by your application. A Critical flaw in a transitive dependency whose vulnerable code path is never loaded is materially lower risk. Runtime application security tools and software composition analysis (SCA) with reachability analysis can answer this at scale.
- Identity controls in front of the asset: A vulnerable internal application gated behind enforced phishing-resistant MFA, conditional access, and zero-trust proxy architecture has a dramatically reduced exploitation surface compared to one reachable by any authenticated user.
3. Blast Radius — What Does Compromise of This Asset Enable?
- Asset criticality: A vulnerability on a domain controller, backup infrastructure, identity provider, or CI/CD pipeline carries inherent weight because of what it unlocks. Maintain a crown-jewel inventory and weight findings accordingly.
- Attack-path adjacency: Map which systems the vulnerable asset can reach. This is where tools like BloodHound-style identity path analysis and network flow mapping become essential. A Medium flaw on a jump host with a two-hop path to Tier 0 assets outranks a Critical on an isolated kiosk.
- Data sensitivity: Does the asset store or process regulated data (PHI, cardholder data, PII)? HIPAA, PCI-DSS, and state privacy laws translate hypothetical breaches into concrete regulatory and financial exposure.
4. Mitigating Controls — Do Existing Defenses Break the Chain?
- Segmentation that prevents lateral movement from the affected asset
- EDR coverage with behavioral detection on the host
- Application allow-listing or sandboxing
- Virtual patching via WAF/IPS signatures where a fix isn't yet deployed
Document these compensating controls explicitly. "We're not patching it because we think it's fine" is not a risk decision. "We're deferring 30 days because segmentation rule X blocks inbound traffic, EDR coverage is confirmed, and we've added detection rule Y" is.
A Practical Risk Equation
For each finding, score:
Risk = Exploitability × Reachability × Blast Radius ÷ Mitigating Control Effectiveness
You don't need perfect precision — a High/Medium/Low rating on each axis, combined into a priority tier, is enough to transform your queue. The goal is defensible ordering, not false mathematical precision.
Executive Takeaways
Because this news item is a strategic analysis rather than a discrete CVE or exploit, the following recommendations focus on programmatic change rather than detection signatures.
-
Rebase your remediation queue on KEV + exposure, not CVSS. Make CISA KEV listing and internet-facing reachability the top two sort keys. CVSS becomes a tiebreaker, not a driver. Measure your program by time-to-remediate exploited and reachable findings, not raw Critical counts.
-
Build an attack-path view of your environment. Invest in tooling and process that maps how an intruder would actually traverse your network — identity privilege paths (BloodHound or equivalent), network flow data, and external attack surface inventory. Prioritize vulnerabilities that open or extend viable attack paths over those on dead-end, segmented assets.
-
Instrument reachability for application and cloud findings. Deploy SCA with function-level reachability analysis and CSPM that correlates findings with actual network exposure (public IPs, security group rules, load balancer configs). This alone typically cuts the "Critical" backlog by 40–60% in environments I've assessed — findings remain tracked but are correctly deprioritized.
-
Formalize compensating-control-based deferrals. Create a documented process for accepting or deferring risk on unreachable Criticals, with named compensating controls, an owner, and an expiration date on the exception. This satisfies auditors (PCI-DSS and HIPAA both require documented risk treatment) and prevents silent risk accumulation.
-
Validate your segmentation assumptions with adversarial testing. The entire thesis of reachability-based prioritization rests on segmentation and identity controls actually working. Schedule penetration tests and purple-team exercises specifically to test whether your "unreachable" assets are truly unreachable. Assumed segmentation that fails under testing quietly invalidates your prioritization model.
-
Report risk reduction, not finding counts, to leadership. Replace "we closed 3,000 vulnerabilities" with "we eliminated all KEV-listed exploitable paths to Tier 0 assets and reduced internet-facing exploitable exposure by 72%." This reframing gets budget for the segmentation, identity, and detection investments that actually stop breaches.
Remediation
There is no patch for a flawed process, but there is a concrete implementation path:
- This week: Export your current Critical/High findings and cross-reference against the CISA KEV catalog. Any KEV finding that is also internet-reachable or on a crown-jewel-adjacent path goes to the front of the queue with a hard deadline (CISA's Binding Operational Directive timelines — typically two weeks for newly added KEV entries — are a sound internal benchmark even for non-federal organizations).
- This month: Produce a network exposure overlay for your top 200 findings. For each, answer from actual configuration data: internet-facing? Reachable from user VLANs? Segmented enclave? Re-sort the queue accordingly.
- This quarter: Establish the risk-acceptance workflow for unreachable findings, including documented compensating controls and re-review dates. Stand up attack-path mapping for identity infrastructure at minimum — Active Directory and your cloud IAM plane are where lateral-movement risk concentrates.
- Ongoing: Validate segmentation and identity controls through scheduled adversary simulation. Track mean-time-to-remediate for exploited/reachable findings as your headline vulnerability management KPI.
The scanner's job is to tell you what's wrong. Your job — the one that actually prevents breaches — is to determine what matters. In 2026, with vulnerability disclosure volumes continuing to climb and adversaries industrializing exploitation of edge devices and identity infrastructure, the organizations that win are the ones that master the second question, not the first.
Related Resources
Security Arsenal Penetration Testing Services AlertMonitor Platform Book a SOC Assessment vulnerability-management Intel Hub
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.