Shell Command Injection Affecting git-ls-remote package, versions <0.2.0


0.0
critical

Snyk CVSS

    Attack Complexity Low
    Scope Changed
    Confidentiality High
    Integrity High

Do your applications use this vulnerable package?

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 applications
  • Snyk ID npm:git-ls-remote:20160923
  • published 25 Sep 2016
  • disclosed 22 Sep 2016
  • credit Snyk Security Research Team

Introduced: 22 Sep 2016

CVE NOT AVAILABLE CWE-78 Open this link in a new tab
First added by Snyk

How to fix?

Upgrade git-ls-remote to version 0.2.0 or higher.

Overview

git-ls-remote is an npm package used for listing references in a remote git repository. Vulnerable versions of the package pass the git url argument to the exec function without sanitisation. An attacker can use this to inject malicious shell commands to disrupt server operation or obtain sensitive information.

Example

var git = require('git-ls-remote');
git.head('https://gitrepo.com/; cat /etc/passwd', function(err, result) {
  // ...
});