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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-7070-RDP-Clipboard-Hijacking-via-Virtual-Channel-Injection — 가상 채널 주입을 통한 RDP 클립보드 하이재킹용 CVE-2026-7070 PoC; 데이터 탈취/자격 증명 가로채기를 위한 시뮬레이션 서버 및 익스플로잇 스크립트를 포함합니다. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-7070-rdp-clipboard-hijacking-via-virtual-channel-injection
Vulnerability AnalysisExploitationData ExfiltrationNetwork SecurityPenetration TestingAdversarial Attack
GitHubgeorge0papasotiriou/cve-2026-7070-rdp-clipboard-hijacking-via-virtual-channel-injection

CVE-2026-7070-RDP-Clipboard-Hijacking-via-Virtual-Channel-Injection

가상 채널 주입을 통한 RDP 클립보드 하이재킹용 CVE-2026-7070 PoC; 데이터 탈취/자격 증명 가로채기를 위한 시뮬레이션 서버 및 익스플로잇 스크립트를 포함합니다.

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
18일 전아직 검토되지 않음

CVE-2026-7070 – RDP 클립보드 하이재킹 (Virtual Channel Injection)

프로그램 코드 (Python – 시뮬레이션된 RDP 클립보드)

root@kitploit:~
# rdp_server_sim.py - Simulated RDP server with trusted virtual channel
from http.server import HTTPServer, BaseHTTPRequestHandler
import json, threading

clipboard = ""
# Simulate an RDP virtual channel that any client can open and write to.
# In real RDP, the CLIPRDR channel is used for clipboard sync.

class RDPHandler(BaseHTTPRequestHandler):
    def do_POST(self):
        global clipboard
        if self.path == '/clipboard':
            data = json.loads(self.rfile.read(int(self.headers['Content-Length'])))
            # Vulnerability: accepts clipboard updates from any channel without auth
            clipboard = data['content']
            self.send_response(200)
            self.end_headers()
            self.wfile.write(b"Clipboard updated")
        else:
            self.send_response(404)
            self.end_headers()

    def do_GET(self):
        if self.path == '/clipboard':
            self.send_response(200)
            self.end_headers()
            self.wfile.write(clipboard.encode())
        else:
            self.send_response(404)
            self.end_headers()

server = HTTPServer(('0.0.0.0', 3389), RDPHandler)  # using HTTP for simulation
print("RDP clipboard simulator on :3389")
server.serve_forever()

CVE-2026-7070 – RDP 클립보드 하이재킹 (Virtual Channel Injection)

Severity: Medium

개요

RDP 서버는 적절한 접근 제어 없이 모든 가상 채널 연결을 신뢰합니다. RDP 세션에 연결할 수 있는 공격자는 (낮은 권한의 사용자라도) 악성 가상 채널을 주입하고 공유 클립보드를 변조하여 데이터 도난이나 자격 증명 가로채기로 이어질 수 있습니다.

취약점 세부 정보

  • 유형: 정보 노출 / 변조
  • 영향: 클립보드 하이재킹, 데이터 유출.
  • 근본 원인: RDP 스택은 클립보드 채널을 등록할 수 있는 세션을 제한하지 않으므로 병렬 연결이 간섭할 수 있습니다.

Exploit 데모

  1. 시뮬레이션된 RDP 클립보드 서비스를 시작합니다:
    root@kitploit:~
    python rdp_server_sim.py
    
  2. 익스플로잇을 실행합니다:
    root@kitploit:~
    python exploit_rdp_clipboard.py
    
도구 다운로드