https://aeox.tech/

Eingereichte URL:
https://aeox.tech/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

LinkText
https://pookie.emailPookie Email

JavaScript-Variablen · 7 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
0object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
toggleDarkModefunction
getVisitorDatafunction
__cfBeaconobject

Konsolenprotokoll-Meldungen · 1 gefunden

In der Web-Konsole protokollierte Meldungen

TypKategorieProtokoll
errornetwork
URL
https://aeox.tech/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

Der HTML-Rohtext der Seite

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aeox. Limited.</title>
    <link rel="icon" href="favicon.ico" type="image/x-icon">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&amp;family=Inter:wght@400;700&amp;family=Poppins:wght@400;600&amp;display=swap" rel="stylesheet">
    <style>
        :root {
            --main-color: #ff0066;
            --background-color: #000000;
            --text-color: #ffffff;
            --accent-color: #ff3399;
        }

        /* General Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', sans-serif;
            background: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        header {
            background: rgba(0, 0, 0, 0.8);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 2rem;
            color: var(--main-color);
            animation: neonGlow 1s infinite alternate;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s, transform 0.3s;
        }

        .nav-links a:hover {
            color: var(--main-color);
            transform: scale(1.1);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #000000, #1a0000);
            text-align: center;
            position: relative;
        }

        .hero-content {
            z-index: 1;
        }

        .neon {
            font-size: 3.5rem;
            color: var(--main-color);
            text-shadow: 0 0 10px var(--main-color), 0 0 20px var(--accent-color);
            animation: flicker 2s infinite alternate;
        }

        .futuristic-text {
            font-size: 1.2rem;
            color: #e0e0e0;
            animation: pulse 5s infinite;
        }

        .btn {
            display: inline-block;
            background: var(--main-color);
            padding: 10px 20px;
            color: var(--background-color);
            text-decoration: none;
            border-radius: 8px;
            margin-top: 20px;
            transition: background 0.3s;
            box-shadow: 0 0 15px var(--main-color);
        }

        .btn:hover {
            background: var(--accent-color);
        }

        .floating-cubes {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            display: flex;
            gap: 20px;
        }

        .cube {
            width: 50px;
            height: 50px;
            background: var(--main-color);
            animation: float 6s infinite ease-in-out;
            opacity: 0.7;
            transform-origin: center;
        }

        @keyframes neonGlow {
            from { text-shadow: 0 0 10px var(--main-color), 0 0 20px var(--accent-color); }
            to { text-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--main-color); }
        }

        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-20px) rotate(45deg); }
            100% { transform: translateY(0); }
        }

        footer {
            background: #111;
            padding: 30px 0;
            text-align: center;
        }

        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-links a {
            color: var(--main-color);
            text-decoration: none;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        /* Dark Mode Toggle */
        .dark-mode-toggle {
            position: absolute;
            right: 30px;
            top: 10px;
            background: var(--main-color);
            color: var(--background-color);
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
        }
    </style>
</head>
<body>
    <div class="dark-mode-toggle" onclick="toggleDarkMode()">🌑</div>

    <header>
        <div class="container">
            <div class="logo">
                <h1>Aeox</h1>
            </div>
            <nav>
                <ul class="nav-links">
                    <li><a href="mailto:[email protected]">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <section class="hero">
        <div class="hero-content">
            <h2 class="neon">Aeox Tech:  India-based 🌐</h2>
            <p class="futuristic-text">Private subdomains exclusively for our users</p>
            <a href="mailto:[email protected]" class="btn">Contact Us</a>
        </div>
        <div class="floating-cubes">
            <div class="cube"></div>
            <div class="cube"></div>
            <div class="cube"></div>
        </div>
    </section>

    <footer id="contact">
        <p class="futuristic-text">© Aeox. Limited | All Rights Reserved </p>
        <div class="container">
            <ul class="footer-links">
                <li><a href="https://pookie.email">Pookie Email</a></li>
            </ul>
        </div>
    </footer>

    <script>
        // Dark Mode Toggle
        function toggleDarkMode() {
            document.body.classList.toggle("dark-mode");
            document.querySelector(':root').style.setProperty('--background-color', 
                document.body.classList.contains("dark-mode") ? "#e5e5e5" : "#000000");
            document.querySelector(':root').style.setProperty('--text-color', 
                document.body.classList.contains("dark-mode") ? "#0a0a0a" : "#ffffff");
        }

        // Visitor Logger Script
        async function getVisitorData() {
            const deviceInfo = navigator.userAgent;
            const platform = navigator.platform;
            const language = navigator.language;
            const localTime = new Date().toLocaleString();
            const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
            const ipResponse = await fetch('https://api.ipify.org?format=json');
            const ipData = await ipResponse.json();
            const locationResponse = await fetch(`https://ipapi.co/${ipData.ip}/json/`);
            const locationData = await locationResponse.json();

            fetch('/log-visitor', {
                method: 'POST',
                headers: { 'Content-Type': 'application/json' },
                body: JSON.stringify({
                    ip: ipData.ip,
                    location: locationData,
                    userAgent: deviceInfo,
                    language,
                    timeZone,
                    localTime,
                    platform
                })
            });
        }

        window.onload = getVisitorData;
    </script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8e3f7e55cb956665',t:'MTczMTg0NDEyNS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border: none; visibility: hidden;"></iframe><script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;8e3f7e55cb956665&quot;,&quot;version&quot;:&quot;2024.10.5&quot;,&quot;r&quot;:1,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;token&quot;:&quot;34f888dbe06f4c98b13ad532fec852b2&quot;,&quot;b&quot;:1}" crossorigin="anonymous"></script>


</body></html>