CVE-2026-8450
CriticalCVSS 9.1Exploitation Probability (EPSS)
Elevated risk71th percentile - higher than 71% of all known CVEs
Summary
The HTTP::Daemon library for Perl before version 6.17 has an OS command injection vulnerability in the send_file() function. It opens its string argument with Perl's 2-arg open(), which interprets magic prefixes like '| cmd' as a pipe to a subprocess, allowing arbitrary command execution.
Risk Assessment
An attacker can pass untrusted input to send_file(), leading to OS command execution with the daemon process privileges, and potential file read or write operations.
Recommendation
Upgrade the HTTP::Daemon library to version 6.17 or later, and avoid passing untrusted data to the send_file() function.
Original NVD description (English source)
HTTP::Daemon versions before 6.17 for Perl allow OS command injection via send_file(). send_file() opens its string argument with Perl's 2-arg open(). The 2-arg form interprets magic prefixes: '| cmd' and 'cmd |' open a pipe to a subprocess, '> path' and '>> path' open the path for write or append. Untrusted input passed to send_file() can run OS commands at the daemon process UID. The read-pipe form ('cmd |') also leaks subprocess stdout into the HTTP response body. The write-mode forms can create or truncate files at attacker chosen paths.

