https://glolocalrankerus.com/#/

Submitted URL:
https://localrankerusseo.com/
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

Console log messages · 8 found

Messages logged to the web console

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></title>
  <script type="module" crossorigin="" src="/assets/index-c08450b6.js"></script>
  <link rel="stylesheet" href="/assets/index-4b299a3e.css">
<style>
    body {
        background-color: white;
    }

    #app {
        margin: 0 auto;
        width: 100%;
    }

    @media (min-width: 640px) {
        #app {
            width: 1000px;
        }
    }
</style></head>

<body>
<div id="app"></div>
<a href="" id="aDom"></a>
<script type="text/javascript">
    const getQueryVariable = (variable) => {
        let query = window.location.search.substring(1);
        let vars = query.split("&");
        for (let i = 0; i < vars.length; i++) {
            let pair = vars[i].split("=");
            if (pair[0] === variable) {
                return pair[1];
            }
        }
        return false;
    }

    const code = getQueryVariable('code') || ''

    if (code) {
        localStorage.setItem('baseUrl', JSON.stringify(code));
        window.location.href = '/#/'
    }
</script></body></html>