https://relaxed-arithmetic-a00fcb.netlify.app/

Submitted URL:
https://relaxed-arithmetic-a00fcb.netlify.app/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://relaxed-arithmetic-a00fcb.netlify.app/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>QR Code Phishing Demo</title>

    <!-- Add Hacker-style Font -->
    <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&amp;display=swap" rel="stylesheet">

    <style>
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #FF0000;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            padding: 10px;
            position: relative;
            text-align: center;
        }

        /* Glitch Effect for Heading */
        @keyframes glitch {
            0% {
                transform: translateX(0);
                text-shadow: 1px 0 #fff, -1px 0 #000;
            }
            20% {
                transform: translateX(-2px);
                text-shadow: 2px 0 #fff, -2px 0 #000;
            }
            40% {
                transform: translateX(2px);
                text-shadow: -2px 0 #fff, 2px 0 #000;
            }
            60% {
                transform: translateX(-2px);
                text-shadow: 1px 0 #fff, -1px 0 #000;
            }
            80% {
                transform: translateX(2px);
                text-shadow: -1px 0 #fff, 1px 0 #000;
            }
            100% {
                transform: translateX(0);
                text-shadow: 1px 0 #fff, -1px 0 #000;
            }
        }

        h1 {
            font-family: 'Press Start 2P', cursive;
            font-size: 24px;
            margin: 0; /* Removed any default margin */
            padding: 10px; /* Added padding for spacing */
            animation: glitch 1s infinite linear;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: white;
            z-index: 1; /* Ensures the text is above all other content */
        }

        p {
            font-size: 18px;
            line-height: 1.5;
        }

        .photo {
            margin-bottom: 40px; /* Increased space between image and following content */
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .photo img {
            width: 200px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        /* What is QR Code Phishing Section */
        .quishing-info {
            margin-top: 40px;
            padding: 20px;
            background-color: #333;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            max-width: 80%; /* Limiting width for readability */
            text-align: left;
        }

        .quishing-info h2 {
            color: #FF4D4D;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .quishing-info p {
            font-size: 16px;
            line-height: 1.6;
            color: white;
        }

        /* Footer */
        .footer {
            margin-top: 20px;
            font-size: 14px;
            color: #ffffff;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            h1 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .photo img {
                width: 150px;
            }
            .qr-code {
                width: 150px;
                height: 150px;
            }

            /* Quishing Info Styling */
            .quishing-info {
                max-width: 90%;
            }
        }
    </style>
</head>
<body>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <!-- Animated Heading -->
    <h1>You have been Hacked!</h1>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <!-- Hacker image or phishing simulation photo -->
    <div class="photo">
        <img src="frame.png" alt="Hacker Image">
    </div>
<br>
    <!-- Phishing Demo Description -->
    <p>Oops...You are the 94th victim!<br><br><br><strong>Warning: This website is for educational purposes only!</strong></p>

    <!-- What is QR Code Phishing (Quishing)? -->
    <div class="quishing-info">
        <h2>What is QR Code Phishing?</h2>
        <p>QR Code Phishing (Quishing) is a type of cyber attack where a hacker embeds a malicious link in a QR code. When scanned, the victim is redirected to a fake website that steals sensitive information like usernames, passwords, and financial data. Always be cautious when scanning QR codes from untrusted sources!</p>
    </div>
    <div class="quishing-info">
        <h2>How to Protect Yourself</h2>
        <ul>
            <li>Only scan QR codes from trusted source.</li>
            <li>Verify the URL before entering sensitive information.</li>
            <li>Use a secure QR scanner that detects malicious links.</li>
            <li>Enable two-factor authentication (2FA) for extra protection.</li>
            <li>Be wary of suspicious offers, as they may be phishing attempts.</li>
        </ul>
    </div>

    <!-- Footer -->
    <footer class="footer"><hr>
        © 2024 Digital Connect | Privacy Policy
    </footer>



</body></html>