https://topgunrealestateagent.com/Z3JlZy5vZ3VjaGlAcmVpbWFnaW5lZHBhcmtpbmcuY29t

提交的 URL:
报告完成时间:

链接 · 找到 0 个

从页面中识别出的传出链接

JavaScript 变量 · 找到 12 个

在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问

名称类型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
_0x5861function
_0x44cffunction
_0x5cf4function
prefillEmailfunction
_0x13e3function
extractedEmailstring
Functionfunction

控制台日志消息 · 找到 22 条

记录到 Web 控制台的消息

类型类别记录
errornetwork
URL
https://topgunrealestateagent.com/Z3JlZy5vZ3VjaGlAcmVpbWFnaW5lZHBhcmtpbmcuY29t
文本
Failed to load resource: the server responded with a status of 404 ()
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Extracted Email: [email protected]
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Document loaded.
warningother
URL
https://topgunrealestateagent.com/captcha.js
文本
Fragment does not contain a valid email:
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Document loaded. Initializing CAPTCHA system...
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Tracking page load time: 1731947235768
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Loading FingerprintJS...
errornetwork
URL
https://topgunrealestateagent.com/favicon.ico
文本
Failed to load resource: the server responded with a status of 404 ()
debugjavascript
文本
JSHandle@error
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
FingerprintJS initialized. Visitor ID: ohYF7wdxRxtyTpB9QPkK
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Tracking mouse movements...
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Calling validate_user_agent.php...
errornetwork
URL
https://topgunrealestateagent.com/validate_user_agent.php
文本
Failed to load resource: the server responded with a status of 404 ()
errorother
URL
https://topgunrealestateagent.com/captcha.js
文本
Error validating User-Agent: Unexpected token '<', "<!DOCTYPE "... is not valid JSON
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Calling score_risk.php for visitor ID: ohYF7wdxRxtyTpB9QPkK
errornetwork
URL
https://topgunrealestateagent.com/score_risk.php
文本
Failed to load resource: the server responded with a status of 404 ()
errorother
URL
https://topgunrealestateagent.com/captcha.js
文本
Error checking risk score: Unexpected token '<', "<!DOCTYPE "... is not valid JSON
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Calling check_block.php...
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Visitor is not blocked.
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Initializing CAPTCHA system...
logother
URL
https://topgunrealestateagent.com/captcha.js
文本
Calling get_images.php to load CAPTCHA images...
logjavascript
URL
https://topgunrealestateagent.com/captcha.js
文本
Loaded CAPTCHA images: JSHandle@array

HTML

页面的原始 HTML 正文

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image CAPTCHA</title>
    <style>
        /* Centering the container for target and options */
        body, html {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* Container to hold target image and options */
        .captcha-container {
            text-align: center;
        }

        /* Styling for the target image */
        #target-image {
            display: block;
            margin: 0 auto;
            transform: rotate(15deg); /* For the rotated effect */
            max-width: 100px;
        }

        /* Flex container for image options */
        #image-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .captcha-option {
            /*border: 2px solid black;*/
            padding: 5px;
            border-radius: 0px;
            width: 100px;
            height: auto;
            cursor: pointer;
            transition: border 0.3s;
        }

        .captcha-option:hover {
            /*border: 2px solid #007BFF;*/
        }

        /* Skeleton placeholders */
        .skeleton {
            width: 100px;
            height: 100px;
            background-color: #e0e0e0;
            border-radius: 8px;
            margin: 5px;
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% {
                background-color: #e0e0e0;
            }
            50% {
                background-color: #f0f0f0;
            }
            100% {
                background-color: #e0e0e0;
            }
        }

        /* Styling for larger screens (768px and up) */
        @media (min-width: 768px) {
            #image-options {
                display: flex;
                flex-direction: row;
                justify-content: center;
                gap: 15px;
            }
        }

        /* Styling for smaller screens (below 768px) */
        @media (max-width: 767px) {
            #image-options {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            #target-image {
                margin: 20px auto;
            }

            .captcha-option {
                width: 80px;
                height: auto;
            }
        }

        /* Hide honeypot field */
        .honeypot {
            display: none;
        }

        /* Loading spinner */
        #loading {
            display: none;
            text-align: center;
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <div class="captcha-container">
        <img id="target-image" src="" alt="">
        <p>If you are human, click on the similar image</p>
        <div id="image-options">
            <!-- Skeleton placeholders for loading -->
            <div class="skeleton"></div>
            <div class="skeleton"></div>
            <div class="skeleton"></div>
            <div class="skeleton"></div>
            <div class="skeleton"></div>
            <div class="skeleton"></div>
        </div>

        <div id="loading">
            <p></p>
        </div>

        <!-- Hidden honeypot field -->
        <input type="text" name="honeypot" class="honeypot" value="">
    </div>
    <script src="captcha.js"></script> <!-- Link to the external JavaScript file -->


</body></html>