https://nixius.xyz/KeySystem/

URL inviato:
https://nixius.xyz/KeySystem/
Report terminato:

I link in uscita identificati dalla pagina

Variabili JavaScript · 12 trovate

Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
hexToRgbfunction
clampfunction
isInArrayfunction
pJSfunction
requestAnimFramefunction
cancelRequestAnimFramefunction
pJSDomobject

Messaggi di log della console · 1 trovati

Messaggi registrati nella console Web

TipoCategoriaLog
errornetwork
URL
https://nixius.xyz/favicon.ico
Testo
Failed to load resource: the server responded with a status of 404 ()

HTML

Il corpo HTML non elaborato della pagina

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Key System</title>
    <style>
        /* Base Styles */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #0a0a0a;
            color: #fff;
            overflow: hidden;
        }

        /* Glow and Shadows */
        h1, p {
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.5);
        }

        /* Main Container */
        .container {
            text-align: center;
            border: 1px solid #9c86ff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
            background-color: 0F0F0F; /* Transparent black background */
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1;
        }

        /* Glow Button Styles */
        .button {
            background-color: #ffffff00;
            color: #fff;
            width: 16em; /* Increased button width */
            height: 3.2em; /* Adjusted height */
            border: #9c86ff 0.2em solid;
            border-radius: 11px;
            text-align: left;
            padding-left: 2.5em; /* Adjusted padding */
            display: flex;
            align-items: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(152, 102, 255, 0.7);
        }

        /* Hover effect */
        .button:hover {
            background-color: #9c86ff;
            cursor: pointer;
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(152, 102, 255, 0.7), 0 0 20px rgba(152, 102, 255, 0.5);
        }

        /* Icon and Text Style */
        .button svg {
            width: 1.8em; /* Adjusted icon size */
            margin-right: 1.5em; /* Adjusted space between icon and text */
            transition: all 0.3s ease;
        }

        /* Hover effect on the icon */
        .button:hover svg {
            transform: translateX(5px);
        }

        .text {
            margin: 0;
            font-size: 1.2em;
        }

        /* Particle Background */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Popup Style */
        #popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 10px;
            color: #fff;
            font-size: 18px;
            display: none;
            z-index: 999;
            box-shadow: 0 0 15px rgba(152, 102, 255, 0.8);
        }
    </style>
</head>

<body>
    <div id="particles-js"><canvas class="particles-js-canvas-el" width="800" height="600" style="width: 100%; height: 100%;"></canvas></div>
    <div class="container">
        <h1>Choose Your Link to Proceed</h1>
        <p>Select a link below to continue with the key retrieval process:</p>
        
        <!-- First Button (Linkvertise) -->
        <button class="button" onclick="window.location.href='https://link-center.net/829313/nixius'">
            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
                <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75"></path>
            </svg>
            <div class="text">Linkvertise</div>
        </button>
        
        <!-- Second Button (Lootlabs) with extra margin -->
        <button class="button" style="margin-top: 20px;" onclick="window.location.href='https://loot-link.com/s?Ns2v'">
            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
                <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75"></path>
            </svg>
            <div class="text">Lootlabs</div>
        </button>
    </div>
    <div id="popup">Copied!</div>

    <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
    <script>
        // Particle settings
        particlesJS('particles-js', {
            "particles": {
                "number": {
                    "value": 80,
                    "density": {
                        "enable": true,
                        "value_area": 800
                    }
                },
                "color": {
                    "value": "#ffffff"
                },
                "shape": {
                    "type": "circle",
                    "stroke": {
                        "width": 0,
                        "color": "#000000"
                    },
                    "polygon": {
                        "nb_sides": 5
                    },
                    "image": {
                        "src": "img/github.svg",
                        "width": 100,
                        "height": 100
                    }
                },
                "opacity": {
                    "value": 0.5,
                    "random": false,
                    "anim": {
                        "enable": false,
                        "speed": 1,
                        "opacity_min": 0.1,
                        "sync": false
                    }
                },
                "size": {
                    "value": 3,
                    "random": true,
                    "anim": {
                        "enable": false,
                        "speed": 40,
                        "size_min": 0.1,
                        "sync": false
                    }
                },
                "line_linked": {
                    "enable": true,
                    "distance": 150,
                    "color": "#ffffff",
                    "opacity": 0.4,
                    "width": 1
                },
                "move": {
                    "enable": true,
                    "speed": 6,
                    "direction": "none",
                    "random": false,
                    "straight": false,
                    "out_mode": "out",
                    "bounce": false,
                    "attract": {
                        "enable": false,
                        "rotateX": 600,
                        "rotateY": 1200
                    }
                }
            },
            "interactivity": {
                "detect_on": "canvas",
                "events": {
                    "onhover": {
                        "enable": true,
                        "mode": "grab"
                    },
                    "onclick": {
                        "enable": true,
                        "mode": "push"
                    },
                    "resize": true
                },
                "modes": {
                    "grab": {
                        "distance": 140,
                        "line_linked": {
                            "opacity": 1
                        }
                    },
                    "bubble": {
                        "distance": 400,
                        "size": 40,
                        "duration": 2,
                        "opacity": 8,
                        "speed": 3
                    },
                    "repulse": {
                        "distance": 200,
                        "duration": 0.4
                    },
                    "push": {
                        "particles_nb": 4
                    },
                    "remove": {
                        "particles_nb": 2
                    }
                }
            },
            "retina_detect": true
        });

        function showPopup() {
            const popup = document.getElementById('popup');
            popup.style.display = 'block';
            setTimeout(() => { popup.style.display = 'none'; }, 1000);
        }
    </script>



</body></html>