HTTP/1.0 200 OK
Connection: close
Content-Length: 12417
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="css/login.css" media="all" rel="stylesheet" />
<link href="css/Style.css" type='text/css' rel="stylesheet">
<style type="text/css">
#first{
background-color:white;
height:25px;
text-align: center;
color: red;
position:absolute;
width: 380px;
top: 312px;
}
</style>
<script type="text/javascript">
var LoginTimes = 0;
var ProductName = 'HG8245';
var Var_DefaultLang = 'english';
var Language = Var_DefaultLang;
document.title = ProductName;
var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
var base64DecodeChars = new Array(-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1,
-1, -1, -1, -1);
function base64encode(str) {
var out, i, len;
var c1, c2, c3;
len = str.length;
i = 0;
out = "";
while (i < len) {
c1 = str.charCodeAt(i++) & 0xff;
if (i == len) {
out += base64EncodeChars.charAt(c1 >> 2);
out += base64EncodeChars.charAt((c1 & 0x3) << 4);
out += "==";
break;
}
c2 = str.charCodeAt(i++);
if (i == len) {
out += base64EncodeChars.charAt(c1 >> 2);
out += base64EncodeChars.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
out += base64EncodeChars.charAt((c2 & 0xF) << 2);
out += "=";
break;
}
c3 = str.charCodeAt(i++);
out += base64EncodeChars.charAt(c1 >> 2);
out += base64EncodeChars.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));
out += base64EncodeChars.charAt(c3 & 0x3F);
}
return out;
}
function isValidAscii(val)
{
for ( var i = 0 ; i < val.length ; i++ )
{
var ch = val.charAt(i);
if ( ch < ' ' || ch > '~' )
{
return false;
}
}
return true;
}
function SetDivValue(Id, Value)
{
try
{
var Div = document.getElementById(Id);
Div.innerHTML = Value;
}
catch(ex)
{
}
}
function setErrorStatus()
{
if (Language == 'english') {
if ((LoginTimes > 0) && (LoginTimes < 3))
{
SetDivValue("DivErrPage", "Incorrect account/password combination. Please try again.");
}
else if (LoginTimes >= 3)
{
SetDivValue("DivErrPage", "Three failed login attempts. Please try again after 1 minute.");
}
}
else {
if (LoginTimes > 0 && LoginTimes < 3)
{
SetDivValue("DivErrPage", "用户名或密码错误,请重新登录。");
}
else if (LoginTimes >= 3)
{
SetDivValue("DivErrPage", "您已经登陆失败三次, 请一分钟后再试。");
}
}
}
function base64decode(str) {
var c1, c2, c3, c4;
var i, len, out;
len = str.length;
i = 0;
out = "";
while (i < len) {
/* c1 */
do {
c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
} while (i < len && c1 == -1);
if (c1 == -1)
break;
/* c2 */
do {
c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
} while (i < len && c2 == -1);
if (c2 == -1)
break;
out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
/* c3 */
do {
c3 = str.charCodeAt(i++) & 0xff;
if (c3 == 61)
return out;
c3 = base64DecodeChars[c3];
} while (i < len && c3 == -1);
if (c3 == -1)
break;
out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
/* c4 */
do {
c4 = str.charCodeAt(i++) & 0xff;
if (c4 == 61)
return out;
c4 = base64DecodeChars[c4];
} while (i < len && c4 == -1);
if (c4 == -1)
break;
out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
}
return out;
}
function SubmitForm() {
var Username = document.getElementById('txt_Username');
var Password = document.getElementById('txt_Password');
var appName = navigator.appName;
var version = navigator.appVersion;
if (Language == "chinese") {
if (appName == "Microsoft Internet Explorer")
{
var versionNumber = version.split(" ")[3];
if (parseInt(versionNumber.split(";")[0]) < 6)
{
alert("不支持IE6.0以下版本。");
return false;
}
}
if (Username.value == "") {
alert("用户名不能为空。");
Username.focus();
return false;
}
if (!isValidAscii(Username.value))
{
alert("用户名包含非ASCII字符。");
Username.focus();
return false;
}
if (Password.value == "") {
alert("密码不能为空。");
Password.focus();
return false;
}
if (!isValidAscii(Password.value))
{
alert("密码包含非ASCII字符。");
Password.focus();
return false;
}
}
else
{
if (appName == "Microsoft Internet Explorer")
{
var versionNumber = version.split(" ")[3];
if (parseInt(versionNumber.split(";")[0]) < 6)
{
alert("We cannot support the IE version which is lower than 6.0.");
return false;
}
}
if (Username.value == "") {
alert("Account is a required field.");
Username.focus();
return false;
}
if (!isValidAscii(Username.value))
{
alert("Account is invalid.");
Username.focus();
return false;
}
if (Password.value == "") {
alert("Password is a required field.");
Password.focus();
return false;
}
if (!isValidAscii(Username.value))
{
alert("Password is invalid.");
Password.focus();
return false;
}
}
var cookie = "Cookie=" + "UserName:" + Username.value + ":" + "PassWord:" + base64encode(Password.value) + ":" + "Language:" + Language + ":" + "id=-1;path=/";
document.cookie = cookie;
Username.disabled = true;
Password.disabled = true;
window.location.replace('/login.asp');
return true;
}
function LoadFrame() {
document.getElementById('txt_Username').focus();
var UserLeveladmin = '1';
if (Var_DefaultLang == "chinese") {
document.getElementById('Chinese').style.color = '#9b0000';
document.getElementById('English').style.color = '#434343';
document.getElementById('account').innerHTML = '用户名';
document.getElementById('Password').innerHTML = '密 码';
document.getElementById('button').innerHTML = '登录';
document.getElementById('footer').innerHTML = '版权所有 © 华为技术有限公司 2009-2012。保留一切权利。';
} else {
document.getElementById('Chinese').style.color = '#434343';
document.getElementById('English').style.color = '#9b0000';
document.getElementById('account').innerHTML = 'Account';
document.getElementById('Password').innerHTML = 'Password';
document.getElementById('button').innerHTML = 'Login';
document.getElementById('footer').innerHTML = 'Copyright © Huawei Technologies Co., Ltd 2009-2012. All rights reserved';
}
if ((LoginTimes != null) && (LoginTimes != '') && (LoginTimes > 0)) {
document.getElementById('loginfail').style.display = '';
setErrorStatus();
}
init();
if((UserLeveladmin == '0'))
{
if (Var_DefaultLang == "chinese")
{
alert("管理员用户不允许登录页面。");
return false;
}
else
{
alert("Administrator is not allowed to open this Web page.");
return false;
}
}
}
function init() {
if (document.addEventListener) {
document.addEventListener("keypress", onHandleKeyDown, false);
} else {
document.onkeypress = onHandleKeyDown;
}
}
function onHandleKeyDown(event) {
var e = event || window.event;
var code = e.charCode || e.keyCode;
if (code == 13) {
SubmitForm();
}
}
function onChangeLanguage(language) {
Language = language;
if (language == "chinese") {
document.getElementById('Chinese').style.color = '#9b0000';
document.getElementById('English').style.color = '#434343';
document.getElementById('account').innerHTML = '用户名';
document.getElementById('Password').innerHTML = '密 码';
document.getElementById('button').innerHTML = '登录';
document.getElementById('footer').innerHTML = '版权所有 © 华为技术有限公司 2009-2012。保留一切权利。';
} else {
document.getElementById('Chinese').style.color = '#434343';
document.getElementById('English').style.color = '#9b0000';
document.getElementById('account').innerHTML = 'Account';
document.getElementById('Password').innerHTML = 'Password';
document.getElementById('button').innerHTML = 'Login';
document.getElementById('footer').innerHTML = 'Copyright © Huawei Technologies Co., Ltd 2009-2012. All rights reserved.';
}
if ((LoginTimes != null) && (LoginTimes != '') && (LoginTimes > 0))
{
setErrorStatus();
}
}
</script>
</head>
<body onLoad="LoadFrame();">
<div id="main_wrapper">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="center" height="210" valign="bottom">
<table border="0" cellpadding="0" cellspacing="0" width="36%">
<tr>
<td align="center" width="29%">
<img height="75" src="images/logo.gif" width="70" alt="">
</td>
<td class="hg_logo" width="21%" id="hg_logo">
<script language="JavaScript" type="text/javascript">
document.write(ProductName);
</script>
</td>
<td valign="bottom" width="50%">
<table border="0" cellpadding="0" cellspacing="0" class="text_copyright" width="100%">
<tr>
<td width="47%">
<a id="English" href="#" name="English" onClick="onChangeLanguage('english');" title="English" style="font-size:12px;font-family:Arial;">[English]</a>
</td>
<td width="53%">
<a id="Chinese" href="#" name="Chinese" onClick="onChangeLanguage('chinese');" title="Chinese" style="font-size:12px;font-family:Arial;">[中文]</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" height="65">
<table border="0" cellpadding="0" cellspacing="0" class="tblcalss" height="65" width="40%">
<tr>
<td class="whitebold" height="37" align="right" width="20%" id="account">Account</td>
<td class="whitebold" height="37" align="center" width="2%">:</td>
<td width="78%" align=left>
<input style="font-size:12px;font-family:Tahoma,Arial;" id="txt_Username" class="input_login" name="txt_Username" type="text" maxlength="31">
</td>
</tr>
<tr>
<td class="whitebold" height="28" align="right" id="Password">Password</td>
<td class="whitebold" height="28" align="center" >:</td>
<td align=left>
<input style="font-size:12px;font-family:Tahoma,Arial;" id="txt_Password" class="input_login" name="txt_Password" type="password" maxlength="127">
<button style="font-size:12px;font-family:Tahoma,Arial;" id="button" class="submit" name="Submit" onClick="SubmitForm();" type="button">Login</button>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="info_text" height="25" id="footer">Copyright © Huawei Technologies Co., Ltd 2009-2012. All rights reserved. </td>
</tr>
<tr>
<td align="center">
<table border="0" cellpadding="0" cellspacing="0" height="300" width="490" style="background: url('images/pic.jpg') no-repeat center;">
<tr>
<td valign="top" style="padding-top: 20px;">
<div id="loginfail" style="display: none">
<table border="0" cellpadding="0" cellspacing="5" height="33" width="99%">
<tr>
<td align="center" bgcolor="#FFFFFF" height="21">
<span style="color:red;font-size:12px;font-family:Arial;">
<div id="DivErrPage"></div>
</span>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>
{
"@category" : "datascan",
"@timestamp" : "2024-11-07T05:21:17.000Z",
"app" : {
"extract" : {
"domain" : [
"w3.org"
],
"hostname" : [
"www.w3.org"
],
"url" : [
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
]
},
"http" : {
"bodymd5" : "9a28a4a5b6c72da4f81e9e2744c35173",
"bodymmh3" : 1685859661,
"headermd5" : "7cb17a74c0fcfaefc5571f8860f9b0e0",
"headermmh3" : 741957400
},
"length" : 12478
},
"asn" : "AS45090",
"country" : "CN",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.0 200 OK\r\nConnection: close\r\nContent-Length: 12417\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html>\r\n<head>\r\n<title></title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<link href=\"css/login.css\" media=\"all\" rel=\"stylesheet\" />\r\n<link href=\"css/Style.css\" type='text/css' rel=\"stylesheet\">\r\n<style type=\"text/css\">\r\n#first{\r\nbackground-color:white;\r\nheight:25px;\r\ntext-align: center;\r\ncolor: red;\r\nposition:absolute;\r\nwidth: 380px;\r\ntop: 312px;\r\n}\r\n</style>\r\n<script type=\"text/javascript\">\r\n\r\nvar LoginTimes = 0;\r\nvar ProductName = 'HG8245';\r\nvar Var_DefaultLang = 'english';\r\nvar Language = Var_DefaultLang;\r\n\r\ndocument.title = ProductName;\r\n\r\nvar base64EncodeChars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\";\r\nvar base64DecodeChars = new Array(-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,\r\n -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,\r\n 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1,\r\n -1, -1, -1, -1);\r\n\r\nfunction base64encode(str) {\r\n var out, i, len;\r\n var c1, c2, c3;\r\n\r\n len = str.length;\r\n i = 0;\r\n out = \"\";\r\n while (i < len) {\r\n c1 = str.charCodeAt(i++) & 0xff;\r\n if (i == len) {\r\n out += base64EncodeChars.charAt(c1 >> 2);\r\n out += base64EncodeChars.charAt((c1 & 0x3) << 4);\r\n out += \"==\";\r\n break;\r\n }\r\n c2 = str.charCodeAt(i++);\r\n if (i == len) {\r\n out += base64EncodeChars.charAt(c1 >> 2);\r\n out += base64EncodeChars.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));\r\n out += base64EncodeChars.charAt((c2 & 0xF) << 2);\r\n out += \"=\";\r\n break;\r\n }\r\n c3 = str.charCodeAt(i++);\r\n out += base64EncodeChars.charAt(c1 >> 2);\r\n out += base64EncodeChars.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));\r\n out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));\r\n out += base64EncodeChars.charAt(c3 & 0x3F);\r\n }\r\n return out;\r\n}\r\n\r\nfunction isValidAscii(val)\r\n{\r\n for ( var i = 0 ; i < val.length ; i++ )\r\n {\r\n var ch = val.charAt(i);\r\n if ( ch < ' ' || ch > '~' )\r\n {\r\n return false;\r\n }\r\n }\r\n return true;\r\n}\r\n\r\nfunction SetDivValue(Id, Value)\r\n{\r\n try\r\n {\r\n var Div = document.getElementById(Id);\r\n Div.innerHTML = Value;\r\n }\r\n catch(ex)\r\n {\r\n\r\n }\r\n}\r\n\r\nfunction setErrorStatus()\r\n{\r\nif (Language == 'english') {\r\nif ((LoginTimes > 0) && (LoginTimes < 3)) \r\n{\r\nSetDivValue(\"DivErrPage\", \"Incorrect account/password combination. Please try again.\");\r\n} \r\nelse if (LoginTimes >= 3) \r\n{\r\nSetDivValue(\"DivErrPage\", \"Three failed login attempts. Please try again after 1 minute.\");\r\n}\r\n} \r\nelse {\r\nif (LoginTimes > 0 && LoginTimes < 3) \r\n{\r\nSetDivValue(\"DivErrPage\", \"\u7528\u6237\u540d\u6216\u5bc6\u7801\u9519\u8bef\uff0c\u8bf7\u91cd\u65b0\u767b\u5f55\u3002\");\r\n} \r\nelse if (LoginTimes >= 3) \r\n{\r\nSetDivValue(\"DivErrPage\", \"\u60a8\u5df2\u7ecf\u767b\u9646\u5931\u8d25\u4e09\u6b21, \u8bf7\u4e00\u5206\u949f\u540e\u518d\u8bd5\u3002\");\r\n}\r\n}\r\n}\r\n\r\nfunction base64decode(str) {\r\n var c1, c2, c3, c4;\r\n var i, len, out;\r\n\r\n len = str.length;\r\n i = 0;\r\n out = \"\";\r\n while (i < len) {\r\n /* c1 */\r\n do {\r\n c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];\r\n } while (i < len && c1 == -1);\r\n if (c1 == -1)\r\n break;\r\n\r\n /* c2 */\r\n do {\r\n c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];\r\n } while (i < len && c2 == -1);\r\n if (c2 == -1)\r\n break;\r\n\r\n out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));\r\n\r\n /* c3 */\r\n do {\r\n c3 = str.charCodeAt(i++) & 0xff;\r\n if (c3 == 61)\r\n return out;\r\n c3 = base64DecodeChars[c3];\r\n } while (i < len && c3 == -1);\r\n if (c3 == -1)\r\n break;\r\n\r\n out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));\r\n\r\n /* c4 */\r\n do {\r\n c4 = str.charCodeAt(i++) & 0xff;\r\n if (c4 == 61)\r\n return out;\r\n c4 = base64DecodeChars[c4];\r\n } while (i < len && c4 == -1);\r\n if (c4 == -1)\r\n break;\r\n out += String.fromCharCode(((c3 & 0x03) << 6) | c4);\r\n }\r\n return out;\r\n}\r\n\r\nfunction SubmitForm() {\r\n var Username = document.getElementById('txt_Username');\r\n var Password = document.getElementById('txt_Password');\r\nvar appName = navigator.appName;\r\nvar version = navigator.appVersion;\r\n \r\nif (Language == \"chinese\") {\r\nif (appName == \"Microsoft Internet Explorer\")\r\n{\r\nvar versionNumber = version.split(\" \")[3];\r\nif (parseInt(versionNumber.split(\";\")[0]) < 6)\r\n{\r\nalert(\"\u4e0d\u652f\u6301IE6.0\u4ee5\u4e0b\u7248\u672c\u3002\");\r\nreturn false;\r\n}\r\n}\r\n\r\nif (Username.value == \"\") {\r\nalert(\"\u7528\u6237\u540d\u4e0d\u80fd\u4e3a\u7a7a\u3002\");\r\nUsername.focus();\r\n return false;\r\n}\r\n\r\nif (!isValidAscii(Username.value))\r\n{\r\nalert(\"\u7528\u6237\u540d\u5305\u542b\u975eASCII\u5b57\u7b26\u3002\");\r\nUsername.focus();\r\nreturn false;\r\n}\r\n\r\nif (Password.value == \"\") {\r\nalert(\"\u5bc6\u7801\u4e0d\u80fd\u4e3a\u7a7a\u3002\");\r\nPassword.focus();\r\n return false;\r\n}\r\n\r\nif (!isValidAscii(Password.value))\r\n{\r\nalert(\"\u5bc6\u7801\u5305\u542b\u975eASCII\u5b57\u7b26\u3002\");\r\nPassword.focus();\r\nreturn false;\r\n}\r\n\r\n}\r\nelse\r\n{\r\nif (appName == \"Microsoft Internet Explorer\")\r\n{\r\nvar versionNumber = version.split(\" \")[3];\r\nif (parseInt(versionNumber.split(\";\")[0]) < 6)\r\n{\r\nalert(\"We cannot support the IE version which is lower than 6.0.\");\r\nreturn false;\r\n}\r\n}\r\n\r\nif (Username.value == \"\") {\r\nalert(\"Account is a required field.\");\r\nUsername.focus();\r\n return false;\r\n}\r\n\r\nif (!isValidAscii(Username.value))\r\n{\r\nalert(\"Account is invalid.\");\r\nUsername.focus();\r\nreturn false;\r\n}\r\n\r\nif (Password.value == \"\") {\r\nalert(\"Password is a required field.\");\r\nPassword.focus();\r\n return false;\r\n}\r\n\r\nif (!isValidAscii(Username.value))\r\n{\r\nalert(\"Password is invalid.\");\r\nPassword.focus();\r\nreturn false;\r\n}\r\n\r\n}\r\n\r\n var cookie = \"Cookie=\" + \"UserName:\" + Username.value + \":\" + \"PassWord:\" + base64encode(Password.value) + \":\" + \"Language:\" + Language + \":\" + \"id=-1;path=/\";\r\n document.cookie = cookie;\r\n Username.disabled = true;\r\n Password.disabled = true;\r\n\r\n window.location.replace('/login.asp');\r\n return true;\r\n}\r\n\r\nfunction LoadFrame() {\r\n document.getElementById('txt_Username').focus();\r\n\r\n var UserLeveladmin = '1';\r\n\r\n if (Var_DefaultLang == \"chinese\") {\r\n document.getElementById('Chinese').style.color = '#9b0000';\r\n document.getElementById('English').style.color = '#434343';\r\ndocument.getElementById('account').innerHTML = '\u7528\u6237\u540d';\r\ndocument.getElementById('Password').innerHTML = '\u5bc6 \u7801';\r\ndocument.getElementById('button').innerHTML = '\u767b\u5f55';\r\ndocument.getElementById('footer').innerHTML = '\u7248\u6743\u6240\u6709 \u00a9 \u534e\u4e3a\u6280\u672f\u6709\u9650\u516c\u53f8 2009-2012\u3002\u4fdd\u7559\u4e00\u5207\u6743\u5229\u3002';\r\n } else {\r\n document.getElementById('Chinese').style.color = '#434343';\r\n document.getElementById('English').style.color = '#9b0000';\r\ndocument.getElementById('account').innerHTML = 'Account';\r\ndocument.getElementById('Password').innerHTML = 'Password';\r\ndocument.getElementById('button').innerHTML = 'Login';\r\ndocument.getElementById('footer').innerHTML = 'Copyright \u00a9 Huawei Technologies Co., Ltd 2009-2012. All rights reserved';\r\n }\r\n\r\n if ((LoginTimes != null) && (LoginTimes != '') && (LoginTimes > 0)) {\r\n document.getElementById('loginfail').style.display = '';\r\n setErrorStatus();\r\n }\r\n init();\r\n\r\nif((UserLeveladmin == '0')) \r\n{\r\nif (Var_DefaultLang == \"chinese\") \r\n{\r\nalert(\"\u7ba1\u7406\u5458\u7528\u6237\u4e0d\u5141\u8bb8\u767b\u5f55\u9875\u9762\u3002\");\r\nreturn false;\r\n}\r\nelse\r\n{\r\nalert(\"Administrator is not allowed to open this Web page.\");\r\nreturn false;\r\n}\r\n } \r\n }\r\n\r\nfunction init() {\r\n if (document.addEventListener) {\r\n document.addEventListener(\"keypress\", onHandleKeyDown, false);\r\n } else {\r\n document.onkeypress = onHandleKeyDown;\r\n }\r\n}\r\nfunction onHandleKeyDown(event) {\r\n var e = event || window.event;\r\n var code = e.charCode || e.keyCode;\r\n\r\n if (code == 13) {\r\n SubmitForm();\r\n }\r\n}\r\nfunction onChangeLanguage(language) {\r\n Language = language;\r\n if (language == \"chinese\") {\r\n document.getElementById('Chinese').style.color = '#9b0000';\r\n document.getElementById('English').style.color = '#434343';\r\ndocument.getElementById('account').innerHTML = '\u7528\u6237\u540d';\r\ndocument.getElementById('Password').innerHTML = '\u5bc6 \u7801';\r\ndocument.getElementById('button').innerHTML = '\u767b\u5f55';\r\ndocument.getElementById('footer').innerHTML = '\u7248\u6743\u6240\u6709 \u00a9 \u534e\u4e3a\u6280\u672f\u6709\u9650\u516c\u53f8 2009-2012\u3002\u4fdd\u7559\u4e00\u5207\u6743\u5229\u3002';\r\n } else {\r\n document.getElementById('Chinese').style.color = '#434343';\r\n document.getElementById('English').style.color = '#9b0000';\r\ndocument.getElementById('account').innerHTML = 'Account';\r\ndocument.getElementById('Password').innerHTML = 'Password';\r\ndocument.getElementById('button').innerHTML = 'Login';\r\ndocument.getElementById('footer').innerHTML = 'Copyright \u00a9 Huawei Technologies Co., Ltd 2009-2012. All rights reserved.';\r\n }\r\n\r\nif ((LoginTimes != null) && (LoginTimes != '') && (LoginTimes > 0)) \r\n{\r\nsetErrorStatus();\r\n }\r\n}\r\n</script>\r\n</head>\r\n<body onLoad=\"LoadFrame();\">\r\n<div id=\"main_wrapper\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n<tr>\r\n <td align=\"center\" height=\"210\" valign=\"bottom\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"36%\">\r\n<tr>\r\n<td align=\"center\" width=\"29%\">\r\n<img height=\"75\" src=\"images/logo.gif\" width=\"70\" alt=\"\">\r\n</td>\r\n<td class=\"hg_logo\" width=\"21%\" id=\"hg_logo\">\r\n <script language=\"JavaScript\" type=\"text/javascript\">\r\ndocument.write(ProductName);\r\n</script>\r\n</td>\r\n <td valign=\"bottom\" width=\"50%\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"text_copyright\" width=\"100%\">\r\n<tr>\r\n<td width=\"47%\">\r\n<a id=\"English\" href=\"#\" name=\"English\" onClick=\"onChangeLanguage('english');\" title=\"English\" style=\"font-size:12px;font-family:Arial;\">[English]</a>\r\n</td>\r\n<td width=\"53%\">\r\n<a id=\"Chinese\" href=\"#\" name=\"Chinese\" onClick=\"onChangeLanguage('chinese');\" title=\"Chinese\" style=\"font-size:12px;font-family:Arial;\">[\u4e2d\u6587]</a>\r\n</td>\r\n</tr>\r\n</table>\r\n </td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\" height=\"65\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"tblcalss\" height=\"65\" width=\"40%\">\r\n<tr>\r\n<td class=\"whitebold\" height=\"37\" align=\"right\" width=\"20%\" id=\"account\">Account</td>\r\n<td class=\"whitebold\" height=\"37\" align=\"center\" width=\"2%\">:</td>\r\n<td width=\"78%\" align=left>\r\n<input style=\"font-size:12px;font-family:Tahoma,Arial;\" id=\"txt_Username\" class=\"input_login\" name=\"txt_Username\" type=\"text\" maxlength=\"31\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"whitebold\" height=\"28\" align=\"right\" id=\"Password\">Password</td>\r\n<td class=\"whitebold\" height=\"28\" align=\"center\" >:</td>\r\n<td align=left>\r\n<input style=\"font-size:12px;font-family:Tahoma,Arial;\" id=\"txt_Password\" class=\"input_login\" name=\"txt_Password\" type=\"password\" maxlength=\"127\"> \r\n<button style=\"font-size:12px;font-family:Tahoma,Arial;\" id=\"button\" class=\"submit\" name=\"Submit\" onClick=\"SubmitForm();\" type=\"button\">Login</button>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"info_text\" height=\"25\" id=\"footer\">Copyright \u00a9 Huawei Technologies Co., Ltd 2009-2012. All rights reserved. </td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"300\" width=\"490\" style=\"background: url('images/pic.jpg') no-repeat center;\">\r\n<tr>\r\n<td valign=\"top\" style=\"padding-top: 20px;\">\r\n<div id=\"loginfail\" style=\"display: none\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"5\" height=\"33\" width=\"99%\">\r\n<tr>\r\n<td align=\"center\" bgcolor=\"#FFFFFF\" height=\"21\">\r\n<span style=\"color:red;font-size:12px;font-family:Arial;\">\r\n<div id=\"DivErrPage\"></div>\r\n</span>\r\n </td>\r\n</tr>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n</div>\r\n\r\n</body>\r\n</html>\r\n",
"datamd5" : "c3b2137838c65392b5cd284670954075",
"datammh3" : -1048511247,
"device" : {
"class" : "<enterprise field>: device.class",
"product" : "<enterprise field>: device.product",
"productvendor" : "<enterprise field>: device.productvendor"
},
"geolocus" : {
"asn" : "AS45090",
"continent" : "AS",
"continentname" : "Asia",
"country" : "CN",
"countryname" : "China",
"domain" : [
"cnnic.cn",
"tencent.com"
],
"isineu" : "false",
"latitude" : "35.86166",
"location" : "35.86166,104.195397",
"longitude" : "104.195397",
"netname" : "TencentCloud",
"organization" : "Shenzhen Tencent Computer Systems Company Limited",
"subnet" : "115.159.0.0/16"
},
"ip" : "115.159.90.69",
"ipv6" : "false",
"latitude" : "34.7732",
"location" : "34.7732,113.7220",
"longitude" : "113.7220",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "Shenzhen Tencent Computer Systems Company Limited",
"os" : "Linux Kernel",
"osvendor" : "Linux",
"port" : 49153,
"protocol" : "http",
"protocolversion" : "1.0",
"reason" : "OK",
"seen_date" : "2024-11-07",
"source" : "datascan",
"status" : 200,
"subnet" : "115.159.0.0/16",
"tag" : "<enterprise field>: tag",
"tls" : "false",
"transport" : "tcp",
"url" : "/"
}