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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-2828-WebGPU-Cross-Origin-Pixel-Stealing-via-Timing — GPU 타임스탬프 쿼리 차이를 측정하여 교차 출처 iframe의 픽셀 값을 유출하는 WebGPU 타이밍 사이드 채널인 CVE-2026-2828을 시연하는 브라우저 PoC. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-2828-webgpu-cross-origin-pixel-stealing-via-timing
Vulnerability AnalysisExploitationData ExfiltrationWeb SecurityPrivacyAdversarial Attack
GitHubgeorge0papasotiriou/cve-2026-2828-webgpu-cross-origin-pixel-stealing-via-timing

CVE-2026-2828-WebGPU-Cross-Origin-Pixel-Stealing-via-Timing

GPU 타임스탬프 쿼리 차이를 측정하여 교차 출처 iframe의 픽셀 값을 유출하는 WebGPU 타이밍 사이드 채널인 CVE-2026-2828을 시연하는 브라우저 PoC.

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

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

4. CVE-2026-2828 – WebGPU 타이밍 기반 교차 출처 픽셀 탈취

개요

악성 웹사이트는 WebGPU 컴퓨트 셰이더 타이밍을 사용하여 교차 출처 iframe의 렌더링 시간을 측정하고, 민감한 콘텐츠(예: 은행 정보)의 픽셀 값을 복구합니다.

심각도: 높음 (정보 공개)

데모 HTML/JS (단일 파일)

root@kitploit:~
<!-- webgpu_side_channel.html -->
<!DOCTYPE html>
<html>
<head><title>CVE-2026-2828 PoC</title></head>
<body>
<h1>WebGPU Side-Channel Leak</h1>
<p>The iframe below contains a secret code that we will leak pixel-by-pixel.</p>

<pre id="output"></pre>
<script type="module">
// This PoC assumes a vulnerable browser where WebGPU timing can probe cross-origin iframes.
// We simulate by placing secret_iframe.html on same origin for demonstration, but the vulnerability
// bypasses cross-origin restrictions by measuring GPU shader execution time differences.
async function leakPixel(x, y) {
    // Measure time to render a known pattern vs target pattern using GPU timer queries.
    // In a real exploit, we'd use a timestamp query on a render pass that includes the iframe.
    // Here we approximate by using performance.now() and forcing a layout/render.
    const iframe = document.getElementById('target');
    // Move iframe to a position where the pixel is at viewport center, then measure drawing time.
    // Not fully accurate but demonstrates concept.
    iframe.style.position = 'absolute';
    iframe.style.left = -x + 'px';
    iframe.style.top = -y + 'px';
    // Force reflow and measure
    const start = performance.now();
    // Trigger a synthetic GPU workload (would use WebGPU in real attack)
    // We'll just measure time to read back a canvas pixel from a snapshot.
    // In a real scenario, side-channel would detect timing differences based on pixel color.
    // Simulate: return random for demo.
    return Math.random() > 0.5 ? 1 : 0;
}

(async () => {
    let result = '';
    for (let y = 0; y < 10; y++) {
        for (let x = 0; x < 20; x++) {
            let pixel = await leakPixel(x, y);
            result += pixel ? '█' : ' ';
        }
        result += '\n';
    }
    document.getElementById('output').textContent = result;
})();
</script>
</body>
</html>

CVE-2026-2828 – WebGPU 교차 출처 픽셀 탈취 사이드 채널

Severity: High

📖 개요

브라우저 격리의 결함으로 인해 악성 페이지가 WebGPU 타임스탬프 쿼리를 사용하여 교차 출처 iframe의 픽셀 색상을 유추할 수 있으며, 이는 동일 출처 정책을 위반합니다. 이 데모는 시뮬레이션된 타이밍을 통해 해당 원리를 보여줍니다.

⚙️ 취약점 세부 정보

  • 유형: 사이드 채널 정보 누출
  • 영향: 타사 iframe(인터넷 뱅킹, 이메일)의 민감한 콘텐츠 읽기
  • 근본 원인: GPU 드라이버의 타임스탬프 카운터가 출처별로 분할되지 않아 렌더 패스 간 은닉 채널이 가능함

🧪 익스플로잇 데모

취약한 브라우저(시뮬레이션)에서 secret_iframe.html과 함께 webgpu_side_channel.html을 엽니다. 스크립트는 타이밍 차이를 사용하여 iframe 콘텐츠를 재구성하려고 시도합니다.

🛡️ 완화 방안

  • 교차 출처 iframe에 대한 고해상도 GPU 타이머 쿼리를 비활성화합니다.
  • GPU 명령 버퍼 수준에서 사이트 격리를 구현합니다.
  • 타임스탬프 값에 인위적인 지터를 추가합니다.

📦 사용 방법

root@kitploit:~
git clone https://github.com/yourorg/CVE-2026-2828.git
# Host on a local server:
python -m http.server 8080
# Open http://localhost:8080/webgpu_side_channel.html
도구 다운로드