https://minecraftcodes.me/

ID de l'analyse :
bb1edd9c-06c1-498f-9f7f-5b4a46aaf34cTerminée
URL soumise :
https://minecraftcodes.me/
Fin du rapport :

Liens : 0 trouvé(s)

Liens sortants identifiés à partir de la page

Variables JavaScript : 6 trouvée(s)

Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel

NomType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
startDragfunction
dragfunction
stopDragfunction

Messages de journal de console : 1 trouvé(s)

Messages consignés dans la console web

TypeCatégorieEnregistrement
errornetwork
URL
https://minecraftcodes.me/favicon.ico
texte
Failed to load resource: the server responded with a status of 404 ()

HTML

Le corps HTML de la page en données brutes

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta content="Funny site" property="og:title">
    <meta content="Made by 'giganttech' on Discord." property="og:description">
    <meta content="#0ab804" data-react-helmet="true" name="theme-color">
    <link rel="stylesheet" href="https://unpkg.com/xp.css">
    <title>Hey, I’ve just received a free Minecraft Giftcode! You can get one too!</title>
    <style>
        body {
            background-color: #01817f;
            color: #333;
            text-align: center;
            margin: 0;
            padding: 20px;
        }

        .container {
            position: absolute;
        }

        h1 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        button {
            padding: 15px 32px;
            text-align: center;
            display: inline-block;
            font-size: 20px;
            margin: 20px 0;
            cursor: pointer;
            border-radius: 5px;
        }

        button:hover {
            background-color: #005f73;
        }

        .disclaimer {
            font-size: 12px;
            color: #888;
            margin-top: 20px;
        }

        * {
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        p {
            font-size: 16px;
        }
    </style>
</head>

<body>
    <div class="container window" style="width: 300px">
        <div class="title-bar">
            <div class="title-bar-text">Suspicious Popup</div>
            <div class="title-bar-controls">
                <button aria-label="Close" id="close"></button>
            </div>
        </div>
        <div class="window-body">
            <h1>FREE MINECRAFT WORKING 2024/2025, WORKING NOW!! CLAIM BEFORE IT EXPIRES!!! (gone sexual)</h1>
            <p>Get your free Minecraft now!</p>
            <button id="free-minecraft" onclick="window.location.href='https://ncs.giganttech.net/random-video'">get
                free minecraft now!!!11!1!1!!!</button><br><br>
            <small><small class="disclaimer">Disclaimer: This is a joke website. I do not own the Minecraft brand.
                    Minecraft is a trademark of Mojang Studios.</small></small><br>
            <small><small class="disclaimer">For any requests legal or not, please contact me at <a href="mailto: [email protected]">
                        [email protected] </a></small></small>
        </div>
    </div>

<script>
let isDragging = false;
let dragOffsetX = 0;
let dragOffsetY = 0;
let locked = false;
const titleBar = document.querySelector('.title-bar');
const windowElement = document.querySelector('.window');

// Close window
document.getElementById("close").addEventListener('click', () => {
    titleBar.hidden = true;
    windowElement.hidden = true;
});

document.getElementById("close").addEventListener('mousedown', (e) => {
    locked = true;
});
document.getElementById("close").addEventListener('mousemove', () => {
    locked = false;
});
document.getElementById("close").addEventListener('touchstart', (e) => {
    locked = true;
});
document.getElementById("close").addEventListener('touchmove', () => {
    locked = false;
});

// Start dragging with mouse or touch
function startDrag(e) {
    if (locked) return;
    isDragging = true;
    const clientX = e.clientX || e.touches[0].clientX;
    const clientY = e.clientY || e.touches[0].clientY;
    dragOffsetX = clientX - windowElement.getBoundingClientRect().left;
    dragOffsetY = clientY - windowElement.getBoundingClientRect().top;
}

titleBar.addEventListener('mousedown', startDrag);
titleBar.addEventListener('touchstart', startDrag);

// Handle dragging with mouse or touch
function drag(e) {
    if (locked || !isDragging) return;

    const clientX = e.clientX || e.touches[0].clientX;
    const clientY = e.clientY || e.touches[0].clientY;
    const left = clientX - dragOffsetX;
    const top = clientY - dragOffsetY;

    windowElement.style.left = `${left}px`;
    windowElement.style.top = `${top}px`;
}

window.addEventListener('mousemove', drag);
window.addEventListener('touchmove', drag);

// Stop dragging with mouse or touch
function stopDrag() {
    if (locked) return;
    isDragging = false;
}

window.addEventListener('mouseup', stopDrag);
window.addEventListener('touchend', stopDrag);

</script>


</body></html>