WebKit WebGPU importExternalTexture 跨域信息泄露。Safari < 26.5.2。
验证页(用 Safari < 26.5.2 打开):
https://cve43700-attacker.vercel.app
跨域视频:
https://cve43700-victim.vercel.app/colorcycle.mp4
[BYPASS] + 逐帧 [LEAK] RGBA = [...] -> 红/绿/蓝/白[PATCHED] importExternalTexture blocked: SecurityErrorGPUDevice.importExternalTexture({source: HTMLVideoElement}) 把视频导入成 GPU 可采样的 GPUExternalTexture。修复前没有对视频做 taintsOrigin 跨域检查,跨域且无 CORS 的 tainted 视频也能被导入,再用 WGSL shader 采样、copyTextureToBuffer + mapAsync 把像素读回 JS,绕过同源策略泄露跨域视频帧。
修复(commit 67b563b8,bug 315368)在 GPUDevice::importExternalTexture 的缓存命中路径和新建路径都补了 checkVideoElementOriginTaint,tainted 视频直接抛 SecurityError。