Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 Remote Code Execution (RCE) vulnerabilities in an interactive lesson.
Start learningUpgrade git-promise
to version 1.0.0 or higher.
git-promise is a Simple wrapper that allows you to run any git command using a more intuitive syntax.
Affected versions of this package are vulnerable to Remote Code Execution (RCE). The issue occurs because a user input
is formatted inside a command
that will be executed without any check.
var git = require("git-promise");
git("init;touch HACKED").then(function (branch) {
console.log(branch);
});