Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-4wcm-7hjf-6xw5

Опубликовано: 10 сент. 2025
Источник: github
Github: Прошло ревью
CVSS3: 9.8

Описание

interactive-git-checkout has a Command Injection vulnerability

The npm package interactive-git-checkout is an interactive command-line tool that allows users to checkout a git branch while it prompts for the branch name on the command-line. It is available as an npm package and can be installed via npm install -g interactive-git-checkout.

Resources:

Command Injection Vulnerability

The interactive-git-checkout tool is vulnerable to a command injection vulnerability because it passes the branch name to the git checkout command using the Node.js child process module's exec() function without proper input validation or sanitization.

The following vulnerable code snippets demonstrates the issue:

const { exec: execCb } = require('child_process'); const { promisify } = require('util'); const exec = promisify(execCb); module.exports = async (targetBranch) => { const { stdout, stderr } = await exec(`git checkout ${targetBranch}`); process.stderr.write(stderr); process.stdout.write(stdout); };

Exploit Proof of Concept

  1. Install the interactive-git-checkout package (as suggested by the package's README):
npm install --global interactive-git-checkout
  1. Run the executable exposed by the installed package:
$ igc
  1. When prompted, enter the following branch name:
hello ; echo 'Command Injection Vulnerability Exploited!' > /tmp/command-injection.txt; #

Vulnerable versions

All versions of interactive-git-checkout are vulnerable to this issue, up to and including to the latest version of 1.1.4.

Author

Liran Tal

Пакеты

Наименование

interactive-git-checkout

npm
Затронутые версииВерсия исправления

<= 1.1.4

Отсутствует

EPSS

Процентиль: 46%
0.0023
Низкий

9.8 Critical

CVSS3

Дефекты

CWE-77

Связанные уязвимости

CVSS3: 9.8
nvd
5 месяцев назад

The npm package `interactive-git-checkout` is an interactive command-line tool that allows users to checkout a git branch while it prompts for the branch name on the command-line. It is available as an npm package and can be installed via `npm install -g interactive-git-checkout`. Versions up to and including 1.1.4 of the `interactive-git-checkout` tool are vulnerable to a command injection vulnerability because the software passes the branch name to the `git checkout` command using the Node.js child process module's `exec()` function without proper input validation or sanitization. Commit 8dd832dd302af287a61611f4f85e157cd1c6bb41 fixes the issue.

CVSS3: 9.8
fstec
5 месяцев назад

Уязвимость функции exec() утилиты командной строки interactive-git-checkout, позволяющая нарушителю выполнять произвольные команды

EPSS

Процентиль: 46%
0.0023
Низкий

9.8 Critical

CVSS3

Дефекты

CWE-77