Snyk has a proof-of-concept or detailed explanation of how to exploit 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 Arbitrary Command Injection vulnerabilities in an interactive lesson.
Start learningUpgrade network
to version 0.7.0 or higher.
network is a the missing network utilities in Node.js.
Affected versions of this package are vulnerable to Arbitrary Command Injection due to use of the child_process
exec
function without input sanitization. If (attacker-controlled) user input is given to the mac_address_for
function of the package, it is possible for the attacker to execute arbitrary commands on the operating system that this package is being run on.
var PUT = require('network');
var x0 = " $(touch /tmp/success) # \" || touch /tmp/success # ' || touch /tmp/success";
var x1 = "{}";
new PUT["mac_address_for"](x0,x1);