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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-3333-DNS-Rebinding-to-Steal-Cloud-Metadata — SSRF 취약점이 있는 웹 앱을 통해 DNS 리바인딩을 이용해 클라우드 메타데이터에 접근하고 IAM 자격 증명을 탈취하는 CVE-2026-3333용 Python 익스플로잇. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-3333-dns-rebinding-to-steal-cloud-metadata
Vulnerability AnalysisExploitationWeb Application ExploitationData ExfiltrationPenetration TestingCloud SecurityRed Teaming
GitHubgeorge0papasotiriou/cve-2026-3333-dns-rebinding-to-steal-cloud-metadata

CVE-2026-3333-DNS-Rebinding-to-Steal-Cloud-Metadata

SSRF 취약점이 있는 웹 앱을 통해 DNS 리바인딩을 이용해 클라우드 메타데이터에 접근하고 IAM 자격 증명을 탈취하는 CVE-2026-3333용 Python 익스플로잇.

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2026-3333 – 클라우드 메타데이터 탈취를 위한 DNS 리바인딩

프로그램 코드 (Python 공격자 서버 + 취약한 앱)

root@kitploit:~
#!/usr/bin/env python3
# dns_rebinding_server.py - Malicious DNS server that alternates between attacker IP and 169.254.169.254
import socket, threading, time

# This simple server resolves any subdomain of our domain to 169.254.169.254 and attacker IP alternately.
DNS_QUERIES = {}

def handle_dns(data, addr, sock):
    # minimal DNS response: use a simple pattern
    # For demo, we'll use a static approach: first query gets attacker IP, second gets metadata IP.
    # We'll simulate by running an HTTP server that the victim will contact.
    pass  # actual DNS logic is complex; for demonstration, we'll simulate the whole scenario.

CVE-2026-3333 – 클라우드 메타데이터 탈취를 위한 DNS 리바인딩

Severity: High

개요

클라우드 환경에서 실행되는 웹 애플리케이션이 DNS 리바인딩에 취약합니다. 공격자는 자신의 IP와 클라우드 메타데이터 IP(169.254.169.254)를 번갈아 가리키는 도메인을 사용하여 IAM 자격 증명을 탈취할 수 있습니다.

취약점 세부 정보

  • 유형: DNS 리바인딩 → SSRF
  • 영향: 탈취한 임시 자격 증명을 통한 클라우드 계정 탈취.
  • 근본 원인: 애플리케이션이 TTL 만료 후 호스트 이름을 다시 확인하여 동일한 호스트 이름이 사설 IP를 가리키는 경쟁 조건을 허용합니다.

익스플로잇 데모

  1. 취약한 앱을 시작합니다:
    root@kitploit:~
    python vulnerable_web_app.py
    
  2. 익스플로잇을 실행합니다(시뮬레이션):
    root@kitploit:~
    python exploit_dns_rebinding.py
    
도구 다운로드