The CVSS 7.8 score and EPSS of 0.00199 are telling conflicting stories. The EPSS is almost certainly wrong—and here's why the authentication requirement is a misleading barrier that the score is pricing in incorrectly.

First, the 'restricted CLI' framing masks what's actually happening. A CLI that grants root-level command execution through a netmask configuration parameter isn't restricted in any security-relevant sense—it executes with full system privileges and passes user input directly to shell interpreters. The netmask command itself is revealing: there's no legitimate reason for a netmask parameter to be interpreted as shell code. This points to direct system() or popen() calls in the CLI implementation, which is a code smell that rarely appears in isolation. When one CLI command has this failure, others likely do too.

Second, the blast radius of this specific target is systematically underweighted. This isn't a random IoT device—it's an email security appliance at the network perimeter, integrated with LDAP and Active Directory, handling mail routing and often archiving years of communications with attachments. Compromising this appliance doesn't give an attacker a foothold; it gives them a trusted pivot point inside the organization's most sensitive communications infrastructure, with potential access to domain credentials and archived mail content that predates the intrusion.

Third, the historical record contradicts the EPSS projection. Authenticated CLI command injection vulnerabilities in mail security and network appliances—CVE-2008-7099, CVE-2015-0249, CVE-2017-6362—show a consistent pattern: EPSS scores at disclosure were similarly low, but post-disclosure evidence showed rapid exploitation within weeks. The 'authenticated attacker' qualifier assumes attackers must separately acquire credentials. It doesn't account for the reality that many organizations deploy these appliances with default, shared, or trivially guessable credentials.

Fourth, remediation friction extends the exposure window in ways EPSS can't model. Patching an email security appliance requires change management, mail flow testing, and coordination with mail operations—the organizational friction is categorically different from patching a web server. The safe remediation isn't just patching the netmask command; it's auditing the entire CLI architecture for similar injection vectors, which is a multi-week engineering investment.

What to do: Treat this as a critical perimeter vulnerability despite the low EPSS. Assume the 'restricted CLI' shares credentials with the management interface until proven otherwise. Prioritize patching, but also inventory other CLI commands for similar injection patterns—netmask is probably not the only vulnerable vector. If you manage this appliance, verify the credential model immediately and treat any CLI access as equivalent to domain admin access in your threat model.