<title>Loading...</title>
<style>
body {
background-color: black;
color: lime;
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
}
h1 {
font-size: 2rem;
text-align: center;
}
</style>
<h1>⚠️ SYSTEM ERROR: CRITICAL VIRUS DETECTED ⚠️</h1>
<script>
// Function to create the annoying beep sound
function startBeeping() {
const audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// Repeat the beep every 400 milliseconds
setInterval(() => {
const oscillator = audioCtx.createOscillator();
const gainNode = audioCtx.createGain();
oscillator.type = 'sine'; // Type of sound wave
oscillator.frequency.setValueAtTime(800, audioCtx.currentTime); // Frequency/Pitch in Hz
// Make it loud, then fade quickly
gainNode.gain.setValueAtTime(0.5, audioCtx.currentTime);
gainNode.gain.exponentialRampToValueAtTime(0.01, audioCtx.currentTime + 0.3);
oscillator.connect(gainNode);
gainNode.connect(audioCtx.destination);
oscillator.start();
oscillator.stop(audioCtx.currentTime + 0.3);
}, 400);
}
// Browsers block sound until the user clicks anywhere on the page
window.addEventListener('click', () => {
startBeeping();
});
// Also try to start it on page load (might be blocked until they click)
window.addEventListener('DOMContentLoaded', () => {
// Inform user to click to "fix" the error, forcing the audio to trigger
alert("Click OK to scan your system.");
startBeeping();
});
</script>