Cyber Resilience

CVE-2026-48687

CriticalPublic PoCRCE

Published: 26 May 2026

Published
26 May 2026
Modified
27 May 2026
KEV Added
Patch
CVSS Score v3.1 9.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0164 73.5th percentile
Risk Priority 70 floored blend · peak EPSS

Summary

CVE-2026-48687 is a critical-severity OS Command Injection (CWE-78) vulnerability in Pavel-Odintsov Fastnetmon. Its CVSS base score is 9.8 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique Unix Shell (T1059.004); ranked in the top 26.5% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

FastNetMon Community Edition through 1.2.9 contains an OS command injection vulnerability in the Juniper router integration plugin. The _log() function in src/juniper_plugin/fastnetmon_juniper.php (lines 117-118) constructs shell commands by concatenating the $msg parameter directly into exec() calls: exec("echo `date` \"- {FASTNETMON]…

more

- " . $msg . " \" >> " . $FILE_LOG_TMP). The $msg variable contains unsanitized data derived from command-line arguments argv[1] through argv[3], which represent the attack IP address, direction, and power. While FastNetMon's C++ core currently passes IP addresses via inet_ntoa() (which only produces safe dotted-decimal notation), the PHP script performs no input validation or shell escaping. If the script is invoked directly, by another orchestration system, or if future code changes pass string-sourced IPs, arbitrary commands can be injected. The correct fix is to replace exec() with file_put_contents() or use escapeshellarg() on all parameters.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Why these techniques?

OS command injection in PHP exec() enables Unix shell command execution (T1059.004); plugin context allows exploitation of public-facing app (T1190).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-48695Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48694Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48690Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48692Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48689Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48686Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48691Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48688Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48697Same product: Pavel-Odintsov Fastnetmon
CVE-2018-25115Shared CWE-78

Affected Assets

pavel-odintsov
fastnetmon
≤ 1.2.9

Mitigating Controls

Likely Mitigating Controls AI

Per-CVE control mapping for this CVE has not run yet; the list below is derived from the weakness types (CWEs) cited in the NVD entry.

addresses: CWE-78

Platform-independent apps typically execute inside a managed runtime or sandbox that restricts direct OS command execution, reducing the ability to exploit OS command injection.

addresses: CWE-78

Validates inputs to block special elements that would alter OS command execution.

References