https://socialsecurityonlinestatements.de/docs/

Submitted URL:
https://saicopart25487120.s3.me-central-1.amazonaws.com/statm1nt55698_qra463570.html
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 5 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
0object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
_cf_translationobject

Console log messages · 3 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://saicopart25487120.s3.me-central-1.amazonaws.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 403 (Forbidden)
errornetwork
URL
https://socialsecurityonlinestatements.de/docs/
Text
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://socialsecurityonlinestatements.de/favicon.ico
Text
Failed to load resource: the server responded with a status of 403 ()

HTML

The raw HTML body of the page

<!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>