Skip to content

site #2

Description

@thilakkumarnt06-max
<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>

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions