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 @ronomon/opened
to version 1.5.2 or higher.
@ronomon/opened is a Check if a file is open in another application on Windows, macOS and Linux.
Affected versions of this package are vulnerable to Arbitrary Command Injection. This allows a remote attacker to execute commands on the system if the library was used with untrusted input.
The root cause of the problem is line 87 in index.js
, which takes potential untrusted input as part of a string executed as a command
by child_process.exec()
. While the arguments are escaped by, an attacker could still bypass this sanitization because child_process.exec()
will also interpret the string as a shell command.