- Scan ID:
- b8574a85-e9d2-457e-a9e3-db8c9bdcc347Finished
- Submitted URL:
- https://georgelaurensgc.webstream.net.au/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 15 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
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
virtual | string |
lang | string |
doc | object |
hostname | string |
proto | string |
srch | string |
hideSplash | number |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
HTML
The raw HTML body of the page
<html><head>
<script language="Javascript">
var virtual = "weblynx";
var lang = "eng";
var doc = document;
var hostname = doc.location.hostname;
var proto = doc.location.protocol;
var srch = doc.location.search;
var hideSplash = srch.indexOf("hideSplash=true");
var port = doc.location.port;
var app = "Visage";
var fullHost = hostname;
if (port && port != 80)
{
fullHost = fullHost + ":" + port;
}
switch (fullHost.toUpperCase())
{
case "AVG.WEBSTREAM.NET.AU":
virtual = "weblynx";
port = 80;
app = "QRM";
lang = "eng";
break;
case "BRODIECOLLECTVIC.WEBSTREAM.NET.AU":
virtual = "weblynx";
port = 80;
app = "QRM";
lang = "eng";
break;
case "DS.WEBSTREAM.NET.AU":
virtual = "weblynx";
port = 80;
app = "QRM";
lang = "eng";
break;
case "GEORGELAURENSGC.WEBSTREAM.NET.AU":
virtual = "weblynx";
port = 443;
app = "QRM";
lang = "eng";
break;
case "DBC-WH4":
virtual = "weblynx";
port = 80;
app = "Visage";
lang = "eng";
break;
case "TRILATERAL.WEBSTREAM.NET.AU":
virtual = "weblynx";
port = 80;
app = "QRM";
lang = "eng";
break;
}
var xmlhttp = new XMLHttpRequest();
function pipeChangeState()
{
if (xmlhttp.readyState == 4)
{
if (xmlhttp.responseXML)
{
var startPg = "";
var landingPgNode = xmlhttp.responseXML.getElementsByTagName("landingPage");
if (landingPgNode && landingPgNode.length == 1)
{
var landingPgValue = "";
if (landingPgNode[0].firstChild)
{
landingPgValue = landingPgNode[0].firstChild.nodeValue;
}
if (landingPgValue && hideSplash == -1)
{
startPg = "../" + virtual + "/templates/" + lang + "/" + landingPgValue;
}
else
{
startPg = "../" + virtual + "/templates/" + app + ".htm" + srch;
}
window.location.replace(startPg);
}
}
}
}
xmlhttp.onreadystatechange = pipeChangeState;
xmlhttp.open("GET","/" + virtual + "/menus/" + lang + "/vApplication_" + app + ".xml");
xmlhttp.send();
</script>
</head>
<body>
</body></html>