- 제출된 URL:
- https://georgelaurensgc.webstream.net.au/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 15개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
virtual | string |
lang | string |
doc | object |
hostname | string |
proto | string |
srch | string |
hideSplash | number |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
error | network |
|
HTML
페이지의 원시 HTML 본문
<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>