


























Yet another command injection vulnerability in a Node.js package. This time, it’s in the interactive-git-checkout tool.
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:
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);
};
interactive-git-checkout package (as suggested by the package’s README):npm install --global interactive-git-checkout
hello ; echo 'Command Injection Vulnerability Exploited!' > /tmp/command-injection.txt; #
All versions of interactive-git-checkout are vulnerable to this issue, up to and including to the latest version of 1.1.4.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。