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 git-commit-info
to version 2.0.2 or higher.
git-commit-info is a Get the info of an specific commit hash
Affected versions of this package are vulnerable to Command Injection such that the package-exported method gitCommitInfo ()
fails to sanitize its parameter commit
, which later flows into a sensitive command execution API. As a result, attackers may inject malicious commands once they control the hash content.
const gitCommitInfo = require('git-commit-info')
// information of the latest commit in ./my_repo
gitCommitInfo({
cwd: './my_repo',
commit: '82442c2405804d7aa44e7bedbc0b93bb17707626' + " || touch ci ||", // a malicious file named ci will be crated
});