HTTP/1.1 200 OK
Server: Router Webserver
Connection: close
Content-Type: text/html
WWW-Authenticate: Basic realm="TP-LINK Wireless N Gigabit Router WR1043ND"
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<HTML>
<HEAD><TITLE>TL-WR1043ND</TITLE>
<META http-equiv=Pragma content=no-cache>
<META http-equiv=Expires content="wed, 26 Feb 1997 08:21:57 GMT">
<SCRIPT language="javascript" type="text/javascript"><!--
//--></SCRIPT>
<SCRIPT language="javascript" type="text/javascript">
var httpAutErrorArray = new Array(
3, 1, "http://<ip>:6666", 0,0 );
</SCRIPT>
<SCRIPT language="javascript" type="text/javascript">
if(window.parent != window)
{
document.cookie = "Authorization=;path=/";
//window.parent.location.href = httpAutErrorArray[1];
window.parent.location.href = httpAutErrorArray[2];
}
var NetTag = "TP-LINK Wireless N Gigabit Router WR1043ND";
</SCRIPT>
<script type="text/javascript" src="../login/encrypt.js" /></script>
<style type="text/css">
body, html{
width: 100%;
text-align: center;
}
body{
font-family:Verdana,Geneva,sans-serif;
font-size: 12px;
background-color: #FFFFFF;
margin:0px;
padding:0px;
}
input {
outline: none;
}
div.loginBox
{
display: block;
position:relative;
margin-top:10%;
text-align:center;
}
#noteDiv{
width:476px;
text-align:left;
margin:0px auto;
font-size:14px;
font-weight:bold;
}
p.error{
margin: 0px;
margin-left: 4em;
text-indent: -4em;
color: #E00000;
}
p.notice{
margin: 0px;
text-indent: 2em;
color: #0094BC;
}
div.panelThre{
margin-top:10px;
}
div.picDiv{
width:476px;
height:264px;
background:url(../login/loginbg.png);
position:relative;
margin-bottom: 100px; /* for IE8 min-height */
}
input.pcPassword{
width:300px;
height:50px;
line-height:50px;
padding-left:20px;
}
#copyright{
-webkit-text-size-adjust:none;
font-size:12px;
color:#6a6969;
font-weight:normal;
margin-top:30px;
display:inline-block;
}
ul{
padding:60px 0px 0px 0px;
margin:0px;
list-style:none;
}
ul li{
height:34px;
width:222px;
}
li.unLi{
background: url("../login/login.png") no-repeat -89px -25px;
}
li.pwLi{
background: url("../login/login.png") no-repeat -89px -71px;
}
li.blank{
height:15px;
}
input.text{
font-family:Verdana,Geneva,sans-serif;
border:0px;
height:26px;
line-height:26px;
width:175px;
padding:0px;
margin:3px 0px 0px 37px;
font-size:14px;
color:#6a6969;
font-weight:normal;
}
label.loginBtn{
display:inline-block;
margin-top:30px;
cursor:pointer;
background: url("../login/login.png") no-repeat -31px -224px;
height: 29px;
line-height: 29px;
width: 103px;
vertical-align: middle;
border: 0px;
color: #4D4D4D;
}
label.loginBtnHover{
background-position: -146px -224px;
color: white;
}
div#top-wrapper{
width: 1000px;
margin: 0 auto;
min-height: 600px;
height: 100%;
background-color: #F4F4F4;
box-shadow: 0 0 3px #555555;
text-align: left;
vertical-align: middle;
}
div.top-header{
height: 78px;
background: url(../login/top1_1.png) no-repeat 10px #10ABE1;
position: relative;
}
div.top-header-wrap{
position: absolute;
bottom: 0;
width: 100%;
height: 20px;
z-index: 1001;
}
a#officialSite{
height: 30px;
width: 175px;
display:inline-block;
position: absolute;
top: 29px;
left: 34px;
z-index: 1002;
}
h1#product-tag{
color: #ffffff;
margin: 0 0 6px 42px;
width: 300px;
display: inline-block;
font-size: 100%;
font-weight: normal;
padding: 0px;
}
</style>
<!--[if lte IE 9]>
<style type="text/css">
div#top-wrapper{
border: 1px solid lightgrey;
border-top: 0px;
}
</style>
<![endif]-->
<script type="text/javascript">
/*
function Base64Encoding(input)
{
var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
var output = "";
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
var i = 0;
//input = utf8_encode(input);
while (i < input.length)
{
chr1 = input.charCodeAt(i++);
chr2 = input.charCodeAt(i++);
chr3 = input.charCodeAt(i++);
enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output = output +
keyStr.charAt(enc1) + keyStr.charAt(enc2) +
keyStr.charAt(enc3) + keyStr.charAt(enc4);
}
return output;
}
function utf8_encode (string)
{
string = string.replace(/\r\n/g,"\n");
var utftext = "";
for (var n = 0; n < string.length; n++) {
var c = string.charCodeAt(n);
if (c < 128) {
utftext += String.fromCharCode(c);
}
else if((c > 127) && (c < 2048)) {
utftext += String.fromCharCode((c >> 6) | 192);
utftext += String.fromCharCode((c & 63) | 128);
}
else {
utftext += String.fromCharCode((c >> 12) | 224);
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
utftext += String.fromCharCode((c & 63) | 128);
}
}
return utftext;
}
*/
function CheckUserPswChars(szValue)
{
var reg = /^[\x21-\x7e]+$/;
if((szValue.length > 0) && reg.test(szValue))
{
return true;
}
return false;
}
function CheckUserPswInvalid()
{
var userName = $("userName");
var pcPassword = $("pcPassword");
if(!CheckUserPswChars(userName.value))
{
userName.select();
userName.focus();
return false;
}
if(!CheckUserPswChars(pcPassword.value))
{
pcPassword.select();
pcPassword.focus();
return false;
}
return true;
}
function ResetUserPsw(elementName)
{
$(elementName).value = "";
$(elementName).focus();
}
function PCWin(event)
{
if (event.keyCode == 13)
{
PCSubWin();
}
}
var NOTE_STR = [
{tip: "NOTE: Username and password can contain between 1 - 15 characters and may not include spaces.", cls: "error"},
{tip: "NOTE: The router allows only one administrator to login at the same time, please try again later.", cls: "error"},
{tip: "NOTE: You have exceeded ten attempts, please try again in two hours.", cls: "error"},
{tip: "NOTE: The username or password is incorrect, please input again.", cls: "error"},
{tip: "Your browser is not supported. Please upgrade your browser or switch to another browser. If you are using the Internet Explorer, please do not enable the Compatibility View which may cause the page misaligned.", cls: "notice"}
];
function PCSubWin()
{
if((httpAutErrorArray[0] == 2) || (httpAutErrorArray[0] == 3))
{
if(true == CheckUserPswInvalid())
{
var username = $("userName").value;
var password = $("pcPassword").value;
if(httpAutErrorArray[1] == 1)
{
password = hex_md5($("pcPassword").value);
}
var auth = "Basic "+ Base64Encoding(username + ":" + password);
document.cookie = "Authorization="+escape(auth)+";path=/";
//window.parent.location.reload();
//location.href ="./Index.htm";
$("loginForm").submit();
return true;
}
else
{
$("note").className = NOTE_STR[0].cls;
$("note").innerHTML = NOTE_STR[0].tip;
}
}
return false;
}
function w(str)
{
document.write(str);
}
function $(id)
{
return document.getElementById(id);
}
function setElementStyle(bShow)
{
var unLi = $("unLi");
var pwLi = $("pwLi");
var userName = $("userName");
var pcPassword = $("pcPassword");
var loginBtn = $("loginBtn");
if(bShow)
{
$("userName").style.display = "";
$("pcPassword").style.display = "";
pcPassword.onfocus = function(){
pwLi.style.backgroundPosition = "-89px -162px";
};
pcPassword.onblur = function(){
pwLi.style.backgroundPosition = "-89px -71px";
};
userName.onfocus = function(){
unLi.style.backgroundPosition = "-89px -116px";
};
userName.onblur = function(){
unLi.style.backgroundPosition = "-89px -25px";
};
loginBtn.onmouseover = function(){
loginBtn.className = "loginBtn loginBtnHover";
};
loginBtn.onmouseout = function(){
loginBtn.className = "loginBtn";
};
$("userName").focus();
}
else
{
$("userName").style.display = "none";
$("pcPassword").style.display = "none";
}
}
function support()
{
var ua = navigator.userAgent,
ieVer = 999;
if (/MSIE ([^;]+)/.test(ua) == true)
{
ieVer = parseInt(RegExp["$1"]);
if (ieVer <= 7)
{
return false;
}
}
return true;
}
function browserHandle()
{
if (!support())
{
var usrName = $("userName"),
pwd = $("pcPassword"),
loginBtn = $("loginBtn");
usrName.disabled = true;
usrName.style.display = "none";
pwd.disabled = true;
pwd.style.display = "none";
loginBtn.onclick = null;
loginBtn.onmouseover = null;
loginBtn.style.color = "gray";
$("note").className = NOTE_STR[4].cls;
$("note").innerHTML = NOTE_STR[4].tip;
}
}
function pageLoad()
{
var count = 14, note = $("note");
var min = 0, sec = 0;
document.cookie = "Authorization=;path=/";
if(window.parent != window)
{
window.parent.location.reload();
}
var ErrNum = httpAutErrorArray[0];
switch(ErrNum)
{
case 0:
note.className = NOTE_STR[1].cls;
note.innerHTML = NOTE_STR[1].tip;
setElementStyle(false);
break;
case 1:
note.className = NOTE_STR[2].cls;
note.innerHTML = NOTE_STR[2].tip;
setElementStyle(false);
break;
case 2:
note.className = NOTE_STR[3].cls;
note.innerHTML = NOTE_STR[3].tip;
setElementStyle(true);
break;
case 3:
default:
note.className = "";
note.innerHTML = "";
setElementStyle(true);
break;
}
/*
$("product-tag").innerHTML = httpAutErrorArray[2];
*/
$("product-tag").innerHTML = NetTag;
browserHandle();
}
</script>
</head>
<body onkeypress="PCWin(event)" onload="pageLoad()">
<div id="top-wrapper">
<div id="banner" class="top-header">
<a id="officialSite" onfocus="this.blur();" target="_blank" href="http://www.tp-link.com/"></a>
<div class="top-header-wrap">
<h1 id="product-tag"></h1>
</div>
</div>
<div class="loginBox">
<div id="noteDiv">
<p id="note"></p>
</div>
<div class="panelThre" align="center">
<div align="center" class="picDiv" align="center">
<ul>
<li id="unLi" class="unLi"><input class="text" id="userName" type="text" maxlength="15" /></li>
<li class="blank"></li>
<li id="pwLi" class="pwLi"><input class="text" id="pcPassword" type="password" maxlength="15"/></li>
</ul>
<label id="loginBtn" class="loginBtn" onclick="PCSubWin()"/>Login</label>
<div>
<label id="copyright">Copyright © 2016 TP-LINK Technologies Co., Ltd. All rights reserved. </label>
</div>
</div>
</div>
</div>
</div>
<form action="/userRpm/LoginRpm.htm" method="get" id="loginForm" enctype="multipart/form-data">
<input type="hidden" value="Save" name="Save" />
</form>
</body>
</html>
{
"@category" : "datascan",
"@timestamp" : "2024-11-07T05:32:55.000Z",
"app" : {
"extract" : {
"domain" : [
"tp-link.com"
],
"hostname" : [
"www.tp-link.com"
],
"url" : [
"http://www.tp-link.com/"
]
},
"http" : {
"bodymd5" : "42de44f9f6e7312e5f5be8412f5106c8",
"bodymmh3" : -280137517,
"headermd5" : "a6a4683bb248f92752b3fa6bdce3dbc1",
"headermmh3" : -292413247,
"realm" : "TP-LINK Wireless N Gigabit Router WR1043ND",
"title" : "TL-WR1043ND"
},
"length" : 11046
},
"asn" : "AS13000",
"city" : "Rybnik",
"country" : "PL",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nServer: Router Webserver\r\nConnection: close\r\nContent-Type: text/html\r\nWWW-Authenticate: Basic realm=\"TP-LINK Wireless N Gigabit Router WR1043ND\"\r\n\r\n<META http-equiv=Content-Type content=\"text/html; charset=iso-8859-1\">\n<HTML>\n<HEAD><TITLE>TL-WR1043ND</TITLE>\n<META http-equiv=Pragma content=no-cache>\n<META http-equiv=Expires content=\"wed, 26 Feb 1997 08:21:57 GMT\">\n<SCRIPT language=\"javascript\" type=\"text/javascript\"><!--\n//--></SCRIPT>\n<SCRIPT language=\"javascript\" type=\"text/javascript\">\nvar httpAutErrorArray = new Array(\n3, 1, \"http://<ip>:6666\", 0,0 );\n</SCRIPT>\n\r\n<SCRIPT language=\"javascript\" type=\"text/javascript\">\r\nif(window.parent != window)\r\n{\r\n\tdocument.cookie = \"Authorization=;path=/\";\r\n\t//window.parent.location.href = httpAutErrorArray[1];\r\n\twindow.parent.location.href = httpAutErrorArray[2];\r\n}\r\nvar NetTag = \"TP-LINK Wireless N Gigabit Router WR1043ND\"; \r\n</SCRIPT>\r\n<script type=\"text/javascript\" src=\"../login/encrypt.js\" /></script>\r\n<style type=\"text/css\">\r\nbody, html{\r\n\twidth: 100%;\r\n\ttext-align: center;\r\n}\r\nbody{\r\n\tfont-family:Verdana,Geneva,sans-serif;\r\n\tfont-size: 12px;\r\n\tbackground-color: #FFFFFF;\r\n\tmargin:0px;\r\n\tpadding:0px;\r\n}\r\ninput {\r\n\toutline: none;\r\n}\r\ndiv.loginBox\r\n{\r\n\tdisplay: block;\r\n\tposition:relative;\r\n\tmargin-top:10%;\t\r\n\ttext-align:center;\r\n}\r\n#noteDiv{\r\n\twidth:476px;\r\n\ttext-align:left;\r\n\tmargin:0px auto;\r\n\tfont-size:14px;\r\n\tfont-weight:bold;\r\n}\r\np.error{\r\n\tmargin: 0px;\r\n\tmargin-left: 4em;\r\n\ttext-indent: -4em;\r\n\tcolor: #E00000;\r\n}\r\np.notice{\r\n\tmargin: 0px;\r\n\ttext-indent: 2em;\r\n\tcolor: #0094BC;\r\n}\r\ndiv.panelThre{\r\n\tmargin-top:10px;\r\n}\r\ndiv.picDiv{\r\n\twidth:476px;\r\n\theight:264px;\r\n\tbackground:url(../login/loginbg.png);\r\n\tposition:relative;\r\n\tmargin-bottom: 100px;\t/* for IE8 min-height */\r\n}\r\ninput.pcPassword{\r\n\twidth:300px;\r\n\theight:50px;\r\n\tline-height:50px;\r\n\tpadding-left:20px;\r\n}\r\n#copyright{\r\n\t-webkit-text-size-adjust:none;\r\n\tfont-size:12px;\r\n\tcolor:#6a6969;\r\n\tfont-weight:normal;\r\n\tmargin-top:30px;\r\n\tdisplay:inline-block;\r\n}\r\nul{\r\n\tpadding:60px 0px 0px 0px;\r\n\tmargin:0px;\r\n\tlist-style:none;\r\n}\r\nul li{\r\n\theight:34px;\r\n\twidth:222px;\r\n}\r\nli.unLi{\r\n\tbackground: url(\"../login/login.png\") no-repeat -89px -25px;\r\n}\r\nli.pwLi{\r\n\tbackground: url(\"../login/login.png\") no-repeat -89px -71px;\r\n}\r\nli.blank{\r\n\theight:15px;\r\n}\r\ninput.text{\r\n\tfont-family:Verdana,Geneva,sans-serif;\r\n\tborder:0px;\r\n\theight:26px;\r\n\tline-height:26px;\r\n\twidth:175px;\r\n\tpadding:0px;\r\n\tmargin:3px 0px 0px 37px;\r\n\tfont-size:14px;\r\n\tcolor:#6a6969;\r\n\tfont-weight:normal;\r\n}\r\nlabel.loginBtn{\r\n\tdisplay:inline-block;\r\n\tmargin-top:30px;\r\n\tcursor:pointer;\r\n\tbackground: url(\"../login/login.png\") no-repeat -31px -224px;\r\n\theight: 29px;\r\n\tline-height: 29px;\r\n\twidth: 103px;\r\n\tvertical-align: middle;\r\n\tborder: 0px;\r\n\tcolor: #4D4D4D;\r\n}\r\nlabel.loginBtnHover{\r\n\tbackground-position: -146px -224px;\r\n\tcolor: white;\r\n}\r\n\r\ndiv#top-wrapper{\r\n\twidth: 1000px;\r\n\tmargin: 0 auto;\r\n\tmin-height: 600px;\r\n\theight: 100%;\r\n\tbackground-color: #F4F4F4;\r\n\tbox-shadow: 0 0 3px #555555;\r\n\ttext-align: left;\r\n\tvertical-align: middle;\r\n}\r\ndiv.top-header{\r\n\theight: 78px;\r\n\tbackground: url(../login/top1_1.png) no-repeat 10px #10ABE1;\r\n\tposition: relative;\r\n}\r\ndiv.top-header-wrap{\r\n\tposition: absolute;\r\n\tbottom: 0;\r\n\twidth: 100%;\r\n\theight: 20px;\r\n\tz-index: 1001;\r\n}\r\na#officialSite{\r\n\theight: 30px;\r\n\twidth: 175px;\r\n\tdisplay:inline-block;\r\n\tposition: absolute;\r\n\ttop: 29px;\r\n\tleft: 34px;\r\n\tz-index: 1002;\r\n}\r\nh1#product-tag{\r\n\tcolor: #ffffff;\r\n\tmargin: 0 0 6px 42px;\r\n\twidth: 300px;\r\n\tdisplay: inline-block;\r\n\tfont-size: 100%;\r\n font-weight: normal;\r\n\tpadding: 0px;\r\n}\r\n</style>\r\n<!--[if lte IE 9]>\r\n<style type=\"text/css\">\r\n\tdiv#top-wrapper{\r\n\t\tborder: 1px solid lightgrey;\r\n\t\tborder-top: 0px;\r\n\t}\r\n</style>\r\n<![endif]-->\r\n<script type=\"text/javascript\">\r\n/*\r\nfunction Base64Encoding(input) \r\n{\r\n\tvar keyStr = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";\r\n\tvar output = \"\";\r\n\tvar chr1, chr2, chr3, enc1, enc2, enc3, enc4;\r\n\tvar i = 0;\r\n\r\n\t//input = utf8_encode(input);\r\n\r\n\twhile (i < input.length) \r\n\t{\r\n\r\n\t\tchr1 = input.charCodeAt(i++);\r\n\t\tchr2 = input.charCodeAt(i++);\r\n\t\tchr3 = input.charCodeAt(i++);\r\n\r\n\t\tenc1 = chr1 >> 2;\r\n\t\tenc2 = ((chr1 & 3) << 4) | (chr2 >> 4);\r\n\t\tenc3 = ((chr2 & 15) << 2) | (chr3 >> 6);\r\n\t\tenc4 = chr3 & 63;\r\n\r\n\t\tif (isNaN(chr2)) {\r\n\t\t\tenc3 = enc4 = 64;\r\n\t\t} else if (isNaN(chr3)) {\r\n\t\t\tenc4 = 64;\r\n\t\t}\r\n\r\n\t\toutput = output +\r\n\t\tkeyStr.charAt(enc1) + keyStr.charAt(enc2) +\r\n\t\tkeyStr.charAt(enc3) + keyStr.charAt(enc4);\r\n\r\n\t}\r\n \r\n\treturn output;\r\n}\r\n\r\nfunction utf8_encode (string) \r\n{\r\n\tstring = string.replace(/\\r\\n/g,\"\\n\");\r\n\tvar utftext = \"\";\r\n\r\n\tfor (var n = 0; n < string.length; n++) {\r\n\r\n\t\tvar c = string.charCodeAt(n);\r\n\r\n\t\tif (c < 128) {\r\n\t\t\tutftext += String.fromCharCode(c);\r\n\t\t}\r\n\t\telse if((c > 127) && (c < 2048)) {\r\n\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t}\r\n\r\n\t}\r\n\r\n\treturn utftext;\r\n}\r\n*/\r\nfunction CheckUserPswChars(szValue)\r\n{\r\n\tvar reg = /^[\\x21-\\x7e]+$/;\r\n\tif((szValue.length > 0) && reg.test(szValue))\r\n\t{\r\n\t\treturn true;\r\n\t}\r\n\treturn false;\r\n}\r\n\r\nfunction CheckUserPswInvalid()\r\n{\r\n\tvar userName = $(\"userName\");\r\n\tvar pcPassword = $(\"pcPassword\");\r\n\t\r\n\tif(!CheckUserPswChars(userName.value))\r\n\t{\r\n\t\tuserName.select();\r\n\t\tuserName.focus();\r\n\t\treturn false;\r\n\t}\r\n\t\r\n\tif(!CheckUserPswChars(pcPassword.value))\r\n\t{\r\n\t\tpcPassword.select();\r\n\t\tpcPassword.focus();\r\n\t\treturn false;\r\n\t}\r\n\t\r\n\treturn true;\r\n}\r\n\r\nfunction ResetUserPsw(elementName)\r\n{\r\n\t$(elementName).value = \"\";\r\n\t$(elementName).focus();\r\n}\r\n\r\nfunction PCWin(event)\r\n{\t\r\n\tif (event.keyCode == 13)\r\n\t{\r\n\t\tPCSubWin();\r\n\t}\r\n}\r\n\r\nvar NOTE_STR = [\r\n\t{tip: \"NOTE: Username and password can contain between 1 - 15 characters and may not include spaces.\", cls: \"error\"},\r\n\t{tip: \"NOTE: The router allows only one administrator to login at the same time, please try again later.\", cls: \"error\"},\r\n\t{tip: \"NOTE: You have exceeded ten attempts, please try again in two hours.\", cls: \"error\"},\r\n\t{tip: \"NOTE: The username or password is incorrect, please input again.\", cls: \"error\"},\r\n\t{tip: \"Your browser is not supported. Please upgrade your browser or switch to another browser. If you are using the Internet Explorer, please do not enable the Compatibility View which may cause the page misaligned.\", cls: \"notice\"}\r\n];\r\n\r\nfunction PCSubWin()\r\n{\r\n\tif((httpAutErrorArray[0] == 2) || (httpAutErrorArray[0] == 3))\r\n\t{\r\n\t\tif(true == CheckUserPswInvalid())\r\n\t\t{\r\n\t\t\tvar username = $(\"userName\").value;\r\n\t\t\tvar password = $(\"pcPassword\").value;\r\n\t\t\tif(httpAutErrorArray[1] == 1)\r\n\t\t\t{\r\n\t\t\t\tpassword = hex_md5($(\"pcPassword\").value);\r\n\t\t\t}\r\n\t\t\tvar auth = \"Basic \"+ Base64Encoding(username + \":\" + password);\r\n\t\t\tdocument.cookie = \"Authorization=\"+escape(auth)+\";path=/\";\r\n\t\t\t//window.parent.location.reload();\r\n\t\t\t//location.href =\"./Index.htm\";\t\r\n\t\t\t$(\"loginForm\").submit();\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse\r\n\t\t{\r\n\t\t\t$(\"note\").className = NOTE_STR[0].cls;\r\n\t\t\t$(\"note\").innerHTML = NOTE_STR[0].tip;\r\n\t\t}\r\n\t}\r\n\treturn false;\r\n}\r\n\r\nfunction w(str)\r\n{\r\n\tdocument.write(str);\r\n}\r\n\r\nfunction $(id)\r\n{\r\n\treturn document.getElementById(id);\r\n}\r\n\r\nfunction setElementStyle(bShow)\r\n{\r\n\tvar unLi = $(\"unLi\");\r\n\tvar pwLi = $(\"pwLi\");\r\n\tvar userName = $(\"userName\");\r\n\tvar pcPassword = $(\"pcPassword\");\r\n\tvar loginBtn = $(\"loginBtn\");\r\n\t\r\n\tif(bShow)\r\n\t{\r\n\t\t$(\"userName\").style.display = \"\";\r\n\t\t$(\"pcPassword\").style.display = \"\";\r\n\t\t\r\n\t\tpcPassword.onfocus = function(){\r\n\t\t\tpwLi.style.backgroundPosition = \"-89px -162px\";\r\n\t\t};\r\n\t\tpcPassword.onblur = function(){\r\n\t\t\tpwLi.style.backgroundPosition = \"-89px -71px\";\r\n\t\t};\r\n\t\t\r\n\t\tuserName.onfocus = function(){\r\n\t\t\tunLi.style.backgroundPosition = \"-89px -116px\";\r\n\t\t};\r\n\t\tuserName.onblur = function(){\r\n\t\t\tunLi.style.backgroundPosition = \"-89px -25px\";\r\n\t\t};\r\n\t\t\r\n\t\tloginBtn.onmouseover = function(){\r\n\t\t\tloginBtn.className = \"loginBtn loginBtnHover\";\r\n\t\t};\r\n\t\tloginBtn.onmouseout = function(){\r\n\t\t\tloginBtn.className = \"loginBtn\";\r\n\t\t};\r\n\t\t\r\n\t\t$(\"userName\").focus();\r\n\t}\r\n\telse\r\n\t{\r\n\t\t$(\"userName\").style.display = \"none\";\r\n\t\t$(\"pcPassword\").style.display = \"none\";\r\n\t}\r\n}\r\n\r\nfunction support()\r\n{\r\n\tvar ua = navigator.userAgent,\r\n\t\tieVer = 999;\r\n\tif (/MSIE ([^;]+)/.test(ua) == true)\r\n\t{\r\n\t\tieVer = parseInt(RegExp[\"$1\"]);\r\n\t\tif (ieVer <= 7)\r\n\t\t{\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\treturn true;\r\n}\r\n\r\nfunction browserHandle()\r\n{\r\n\tif (!support())\r\n\t{\r\n\t\tvar usrName = $(\"userName\"),\r\n\t\t\tpwd = $(\"pcPassword\"),\r\n\t\t\tloginBtn = $(\"loginBtn\");\r\n\t\tusrName.disabled = true;\r\n\t\tusrName.style.display = \"none\";\r\n\t\tpwd.disabled = true;\r\n\t\tpwd.style.display = \"none\";\r\n\t\tloginBtn.onclick = null;\r\n\t\tloginBtn.onmouseover = null;\r\n\t\tloginBtn.style.color = \"gray\";\r\n\r\n\t\t$(\"note\").className = NOTE_STR[4].cls;\r\n\t\t$(\"note\").innerHTML = NOTE_STR[4].tip;\r\n\t}\r\n}\r\n\r\nfunction pageLoad()\r\n{\r\n\tvar count = 14, note = $(\"note\");\r\n\tvar min = 0, sec = 0;\r\n\tdocument.cookie = \"Authorization=;path=/\";\r\n\t\t\r\n\tif(window.parent != window)\r\n\t{\r\n\t\twindow.parent.location.reload();\r\n\t}\r\n\tvar ErrNum = httpAutErrorArray[0]; \r\n\tswitch(ErrNum)\r\n\t{\r\n\t\tcase 0:\r\n\t\t\tnote.className = NOTE_STR[1].cls;\r\n\t\t\tnote.innerHTML = NOTE_STR[1].tip;\r\n\t\t\tsetElementStyle(false);\r\n\t\tbreak;\r\n\t\tcase 1:\t\r\n\t\t\tnote.className = NOTE_STR[2].cls;\r\n\t\t\tnote.innerHTML = NOTE_STR[2].tip;\r\n\t\t\tsetElementStyle(false);\r\n\t\tbreak;\r\n\t\tcase 2:\r\n\t\t\tnote.className = NOTE_STR[3].cls;\r\n\t\t\tnote.innerHTML = NOTE_STR[3].tip;\r\n\t\t\tsetElementStyle(true);\r\n\t\tbreak;\r\n\t\tcase 3:\r\n\t\tdefault:\r\n\t\t\tnote.className = \"\";\r\n\t\t\tnote.innerHTML = \"\";\r\n\t\t\tsetElementStyle(true);\r\n\t\tbreak;\r\n\t}\r\n\t/*\r\n\t$(\"product-tag\").innerHTML = httpAutErrorArray[2];\r\n\t*/\r\n\t$(\"product-tag\").innerHTML = NetTag;\r\n\r\n\tbrowserHandle();\r\n}\r\n</script>\r\n</head>\r\n<body onkeypress=\"PCWin(event)\" onload=\"pageLoad()\">\r\n\t<div id=\"top-wrapper\">\r\n\t\t<div id=\"banner\" class=\"top-header\">\r\n\t\t\t<a id=\"officialSite\" onfocus=\"this.blur();\" target=\"_blank\" href=\"http://www.tp-link.com/\"></a>\r\n\t\t\t<div class=\"top-header-wrap\">\r\n\t\t\t\t<h1 id=\"product-tag\"></h1>\r\n\t\t\t</div>\r\n\t</div>\r\n\t<div class=\"loginBox\">\r\n\t\t\t<div id=\"noteDiv\">\r\n\t\t\t\t<p id=\"note\"></p>\r\n\t\t</div>\r\n\t\t<div class=\"panelThre\" align=\"center\">\r\n\t\t\t<div align=\"center\" class=\"picDiv\" align=\"center\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t<li id=\"unLi\" class=\"unLi\"><input class=\"text\" id=\"userName\" type=\"text\" maxlength=\"15\" /></li>\r\n\t\t\t\t\t<li class=\"blank\"></li>\r\n\t\t\t\t\t<li id=\"pwLi\" class=\"pwLi\"><input class=\"text\" id=\"pcPassword\" type=\"password\" maxlength=\"15\"/></li>\r\n\t\t\t\t</ul>\r\n\t\t\t\t<label id=\"loginBtn\" class=\"loginBtn\" onclick=\"PCSubWin()\"/>Login</label>\r\n\t\t\t\t<div>\r\n\t\t\t\t<label id=\"copyright\">Copyright © 2016 TP-LINK Technologies Co., Ltd. All rights reserved. </label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t</div>\r\n\t\r\n\t<form action=\"/userRpm/LoginRpm.htm\" method=\"get\" id=\"loginForm\" enctype=\"multipart/form-data\">\r\n\t <input type=\"hidden\" value=\"Save\" name=\"Save\" /> \r\n\t</form>\r\n\r\n</body>\r\n</html>\r\n",
"datamd5" : "df3430a796e9ae4d5c1154e23f162631",
"datammh3" : 1888853122,
"device" : {
"class" : "<enterprise field>: device.class",
"product" : "<enterprise field>: device.product",
"productvendor" : "<enterprise field>: device.productvendor"
},
"domain" : [
"leon.com.pl"
],
"geolocus" : {
"asn" : "AS13000",
"continent" : "EU",
"continentname" : "Europe",
"country" : "PL",
"countryname" : "Poland",
"domain" : [
"leon.com.pl",
"leon.pl"
],
"isineu" : "true",
"latitude" : "51.919438",
"location" : "51.919438,19.145136",
"longitude" : "19.145136",
"netname" : "LEON",
"organization" : "Leon Sp. z o.o.",
"subnet" : "87.101.64.0/20"
},
"host" : [
"static-87-101-79-155"
],
"hostname" : [
"static-87-101-79-155.leon.com.pl"
],
"ip" : "87.101.79.155",
"ipv6" : "false",
"latitude" : "50.0818",
"location" : "50.0818,18.4646",
"longitude" : "18.4646",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "Leon Sp. z o.o.",
"os" : "Linux Kernel",
"osvendor" : "Linux",
"port" : 6666,
"product" : "Router Webserver",
"productvendor" : "TP-Link",
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"reverse" : [
"static-87-101-79-155.leon.com.pl"
],
"seen_date" : "2024-11-07",
"source" : "datascan",
"status" : 200,
"subnet" : "87.101.64.0/20",
"tag" : "<enterprise field>: tag",
"tld" : [
"com.pl"
],
"tls" : "false",
"transport" : "tcp",
"url" : "/"
}