HTTP/1.1 200 OK
Server: WebServer
Date: Thu, 21 Nov 2024 08:43:55 GMT
Transfer-Encoding: chunked
Connection: close
fff
<html>
<head>
<title>D-LINK</title>
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/css">
<link rel="stylesheet" type="text/css" href="css/style_sharePort.css" media="all" />
<link rel=stylesheet type="text/css" href="/css/jquery.selectbox.css" />
<script type="text/javascript" src="js/jquery-1.8.2.min.js" tppabs="/webaccess/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/jquery.selectbox-0.2_new.js" tppabs="/webaccess/js/jquery.selectbox-0.2_new.js"></script>
<script type="text/javascript" src="fancybox/json2.js" tppabs="/webaccess/fancybox/json2.js"></script>
<script language="JavaScript" src="js/object.js" tppabs="/webaccess/js/object.js"></script>
<script language="JavaScript" src="js/xml.js" tppabs="/webaccess/js/xml.js"></script>
<script language="JavaScript" src="js/public.js" tppabs="/webaccess/js/public.js"></script>
<script language="JavaScript" src="js/md5.js" tppabs="/webaccess/js/md5.js"></script>
<script language="JavaScript" src="js/libajax.js"></script>
<script language="JavaScript" src="js/i18n.js"></script>
<script type="text/javascript">
// Auto Detecting Language, Timmy 2013/05/03, 2013/05/31(Modify)
var SetLang = 0;
var IsPrivateBrowseing = 0;
try
{
// Try to set localstorage
localStorage.setItem('Test', 'test');
localStorage.removeItem('Test');
// Language List
var LangList = new Array("en-us", "zh-tw", "zh-cn", "ko-kr", "fr-fr", "pt-br", "es-es", "it-it", "de-de", "ru-ru");
if (localStorage.getItem('language') === null)
{
if (navigator.appName == 'Netscape')
{
var language = navigator.language;
}
else
{
var language = navigator.browserLanguage;
}
var SetLanguage = language.toLowerCase();
var IsSuccessSetupLang = "false";
for (var i = 0; i < LangList.length; i ++)
{
if (SetLanguage == LangList[i])
{
localStorage.setItem('language', LangList[i]);
localStorage.language = LangList[i];
InitLANG(localStorage.language);
IsSuccessSetupLang = "true";
SetLang = i;
}
}
//If the language of the browser is not in LangList array, use English to initial.
if (localStorage.getItem('language') === null) InitLANG("en-us");
}
else
{
InitLANG(localStorage.language);
for (var i = 0; i < LangList.length; i ++)
{
if (localStorage.language == LangList[i])
{
SetLang = i;
}
}
}
}
catch (error)
{
if (error.code === DOMException.QUOTA_EXCEEDED_ERR && localStorage.length === 0)
{
InitLANG("en-us");
alert(I18N("j", "The Private Browsing feature of Safari is incompatible with this device's interface. You will need to disable Private Browsing to log in."));
IsPrivateBrowseing = 1;
}
else throw error;
}
function switch_Language(value)
{
localStorage.setItem('language', LangList[value]);
localStorage.language = LangList[value];
location.reload();
}
</script>
<script language="JavaScript">
var my_xml;
var media_info;
load_lang_obj(); // you have to load language object for displaying words in each html page and load html object for the redirect or return page
document.onkeypress = login_key_handler; //click the "Enter" Key can also browse web gui
function get_settings_xml(http_req){
my_xml = http_req.responseXML;
disable_all_btn(false);
}
function show_auth_fail(){
alert(I18N("j", "User Name or Password is incorrect."));
disable_all_btn(false);
}
function redirect_category_page(http_req){
var my_txt = http_req.responseText;
var resp_info;
try {
resp_info = JSON.parse(my_txt);
} catch(e) {
show_auth_fail();
return;
}
if (resp_info.status == "ok" && resp_info.error == null){
location.href = "category_view.php"/*tpa=/webaccess/category_view.php*/;
}else if (resp
1000
_info.error == 5003){
show_auth_fail();
}else show_auth_fail();
}
function send_request(){
var xml_request = new XMLRequest(redirect_category_page);
var user_name = (get_by_id("user_name").value).toLowerCase(); // always make user name to lowercase
var user_pwd = get_by_id("user_pwd").value;
var digest;
var para;
digest = hex_hmac_md5(user_pwd, user_name + media_info.challenge);
para = "id=" + user_name + "&password=" + digest;
xml_request.exec_auth_cgi(para);
}
function get_auth_info_result(http_req){
var my_txt = http_req.responseText;
try {
media_info = JSON.parse(my_txt);
} catch(e) {
show_auth_fail();
return;
}
document.cookie = "uid=" + media_info.uid+";path=/";
send_request();
}
function get_auth_info(){
var xml_request = new XMLRequest(get_auth_info_result);
xml_request.exec_auth_cgi();
}
function login_key_handler(e){
var which_key;
if (document.all) {
which_key = window.event.keyCode;
}else{
which_key = e.which;
}
if (which_key == 13){ //click the "Enter" Key can also browse web gui
get_auth_info();
}
}
function get_system_info_result(http_req){
my_xml = http_req.responseXML;
}
function get_system_info(){
var xml_request = new XMLRequest(get_system_info_result);
var para = "request=get_system_info";
xml_request.exec_webfile_cgi(para);
document.getElementById("Language").options[SetLang].selected = true;
$("#Language").selectbox('detach');
$("#Language").val(SetLang);
$("#Language").selectbox({width:120});
//Show the hyperlinks of device access if we make sure the IP is private IP.
if(window.location.hostname=="shareport.local" || window.location.hostname.substr(0, 8)=="192.168." || window.location.hostname.substr(0, 3)=="10." || window.location.hostname.substr(0, 7)=="172.16.")
document.getElementById("link").style.display = "";
}
function change_fontsize(){
var lang_tmp = localStorage.language;
if(lang_tmp == "fr-fr" || lang_tmp == "pt-br" || lang_tmp == "es-es" || lang_tmp == "ru-ru")
{
document.getElementById("Login_Username").style.fontSize = "11px";
document.getElementById("Login_Password").style.fontSize = "11px";
}
}
$(function () {
$("#Language").selectbox({width:120});
if (IsPrivateBrowseing == 1) {
$("#Language").selectbox("disable");
}
});
</script>
</head>
<!--body onLoad="disable_all_btn(false);get_by_id('user_name').focus();get_login_info('no_auth','fw_ver', 'hw_ver')"-->
<body onLoad="get_system_info();change_fontsize()">
<div id="wrapper">
<!-------------------- Logo ------------------------->
<div id="Lheader">
<div id="logo">
<img id="D-Link logo" src="webfile_images/logo_2.gif" width="105" height="95" />
</div>
<table class="versionTable" id="versionTable" border="0" cellspacing="0">
<tbody>
<thead>
<td><script>I18N("h", "Model Name");</script> : DIR-850L</td>
<td><script>I18N("h", "Hardware Version");</script> : B1</td>
<td><script>I18N("h", "Firmware Version");</script> : 2.07</td>
<td align="right"><script>I18N("h", "Language");</script>:</td>
<td>
<div class="styled-select">
<select name="Language" id="Language" onChange="switch_Language(this.value)">
<option value="0">English</option>
<option value="1">繁體中文</option>
<option value="2">简体中文</option>
<option value="3">한국</option>
<option value="4">français</option>
<option value="5">português</option>
<option value="6">Español</option>
<option value="7">Italiano</option>
<option value="8">Deutsch</option>
<option value="9">русский</option>
</select>
</div>
</td>
</thead>
</tbody>
</table>
</div>
<!-------------------- Content ---------------------->
<d
4b6
iv id="content">
<center><p id="title">SharePort Web Access</p></center>
<div id="logIn">
<table class="logInTable" id="logInTable" border="0" cellspacing="0">
<tbody>
<thead>
<tr>
<th><span id="Login_Username"><script>I18N("h", "Username");</script></span> : </th>
<td><input class="styled-text" type="text" name="user_name" size="20" id="user_name"></td>
</tr>
<tr>
<th><span id="Login_Password"><script>I18N("h", "Password");</script></span> : </th>
<td><input class="styled-text" type="password" name="user_pwd" size="20" id="user_pwd"></td>
</tr>
</thead>
</tbody>
</table>
<center><button type="button" id="logIn_btn" class="styled_button_s" onClick="get_auth_info()"><script>I18N("h", "Log In");</script></button></center>
</div>
</div>
<br />
<div id="link" style="display:none"><script>I18N("h", "To access device management,");</script> <a href="http://dlinkrouter.local/"><script>I18N("h", "click here.");</script></a></div>
<br /><br />
<div id="footer"><script>I18N("h", "COPYRIGHT");</script></div>
</div>
</body>
</html>
0
{
"@category" : "datascan",
"@timestamp" : "2024-11-21T08:43:57.000Z",
"app" : {
"extract" : {
"domain" : [
"dlinkrouter.local"
],
"file" : [
"category_view.php"
],
"hostname" : [
"dlinkrouter.local"
],
"url" : [
"http://dlinkrouter.local/"
]
},
"http" : {
"bodymd5" : "cd51a51ca9b87ffef63843e2d55bb625",
"bodymmh3" : -1490209218,
"component" : [
{
"productvendor" : "jQuery",
"productversion" : "1.8.2",
"product" : "jQuery"
}
],
"headermd5" : "81e18d58624f76e2617a6678bd934bb0",
"headermmh3" : 2015600794,
"title" : "D-LINK"
},
"length" : 9546
},
"asn" : "AS23969",
"city" : "Bangkok",
"country" : "TH",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nServer: WebServer\r\nDate: Thu, 21 Nov 2024 08:43:55 GMT\r\nTransfer-Encoding: chunked\r\nConnection: close\r\n\r\nfff\r\n<html>\n\t<head>\n\t\t<title>D-LINK</title>\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\">\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/css\">\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"css/style_sharePort.css\" media=\"all\" />\n\t\t<link rel=stylesheet type=\"text/css\" href=\"/css/jquery.selectbox.css\" />\n\t\t<script type=\"text/javascript\" src=\"js/jquery-1.8.2.min.js\" tppabs=\"/webaccess/js/jquery-1.8.2.min.js\"></script>\n\t\t<script type=\"text/javascript\" src=\"js/jquery.selectbox-0.2_new.js\" tppabs=\"/webaccess/js/jquery.selectbox-0.2_new.js\"></script>\n\t\t<script type=\"text/javascript\" src=\"fancybox/json2.js\" tppabs=\"/webaccess/fancybox/json2.js\"></script>\n <script language=\"JavaScript\" src=\"js/object.js\" tppabs=\"/webaccess/js/object.js\"></script>\n\t\t<script language=\"JavaScript\" src=\"js/xml.js\" tppabs=\"/webaccess/js/xml.js\"></script>\n\t\t<script language=\"JavaScript\" src=\"js/public.js\" tppabs=\"/webaccess/js/public.js\"></script>\n\t\t<script language=\"JavaScript\" src=\"js/md5.js\" tppabs=\"/webaccess/js/md5.js\"></script>\n\t\t<script language=\"JavaScript\" src=\"js/libajax.js\"></script>\n\t\t<script language=\"JavaScript\" src=\"js/i18n.js\"></script>\n\t\t<script type=\"text/javascript\">\n\t\t\t// Auto Detecting Language, Timmy 2013/05/03, 2013/05/31(Modify)\n\t\t\tvar SetLang = 0;\n\t\t\tvar IsPrivateBrowseing = 0;\n\n\t\t\ttry\n\t\t\t{\n\t\t\t\t// Try to set localstorage\n\t\t\t\tlocalStorage.setItem('Test', 'test');\n\t\t\t\tlocalStorage.removeItem('Test');\n\n\t\t\t\t// Language List\n\t\t\t\tvar LangList = new Array(\"en-us\", \"zh-tw\", \"zh-cn\", \"ko-kr\", \"fr-fr\", \"pt-br\", \"es-es\", \"it-it\", \"de-de\", \"ru-ru\");\n\n\t\t\t\tif (localStorage.getItem('language') === null)\n\t\t\t\t{\n\t\t\t\t\tif (navigator.appName == 'Netscape')\n\t\t\t\t\t{\n\t\t\t\t\t\tvar language = navigator.language;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tvar language = navigator.browserLanguage;\n\t\t\t\t\t}\n\n\t\t\t\t\tvar SetLanguage = language.toLowerCase();\n\t\t\t\t\tvar IsSuccessSetupLang = \"false\";\n\n\t\t\t\t\tfor (var i = 0; i < LangList.length; i ++)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (SetLanguage == LangList[i])\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlocalStorage.setItem('language', LangList[i]);\n\t\t\t\t\t\t\tlocalStorage.language = LangList[i];\n\t\t\t\t\t\t\tInitLANG(localStorage.language);\n\t\t\t\t\t\t\tIsSuccessSetupLang = \"true\";\n\t\t\t\t\t\t\tSetLang = i;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t//If the language of the browser is not in LangList array, use English to initial.\n\t\t\t\t\tif (localStorage.getItem('language') === null)\tInitLANG(\"en-us\");\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tInitLANG(localStorage.language);\n\t\t\t\t\tfor (var i = 0; i < LangList.length; i ++)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (localStorage.language == LangList[i])\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tSetLang = i;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tcatch (error)\n\t\t\t{\n\t\t\t\tif (error.code === DOMException.QUOTA_EXCEEDED_ERR && localStorage.length === 0)\n\t\t\t\t{\n\t\t\t\t\tInitLANG(\"en-us\");\n\t\t\t\t\talert(I18N(\"j\", \"The Private Browsing feature of Safari is incompatible with this device's interface. You will need to disable Private Browsing to log in.\"));\n\t\t\t\t\tIsPrivateBrowseing = 1;\n\t\t\t\t}\n\t\t\t\telse throw error;\n\t\t\t}\n\n\t\t\tfunction switch_Language(value)\n\t\t\t{\n\t\t\t\tlocalStorage.setItem('language', LangList[value]);\n\t\t\t\tlocalStorage.language = LangList[value];\n\t\t\t\tlocation.reload();\n\t\t\t}\n\t\t</script>\n\t\t<script language=\"JavaScript\">\n\t\t\tvar my_xml;\n\t\t\tvar media_info;\n\n\t\t\tload_lang_obj();\t// you have to load language object for displaying words in each html page and load html object for the redirect or return page\n\t\t\tdocument.onkeypress = login_key_handler; //click the \"Enter\" Key can also browse web gui\n\n\t\t\tfunction get_settings_xml(http_req){\n\t\t\t\tmy_xml = http_req.responseXML;\n\t\t\t\tdisable_all_btn(false);\n\t\t\t}\n\n\t\t\tfunction show_auth_fail(){\n\t\t\t\t\talert(I18N(\"j\", \"User Name or Password is incorrect.\"));\n\t\t\t\t\tdisable_all_btn(false);\n\t\t\t}\n\n\t\t\tfunction redirect_category_page(http_req){\n\t\t\t\tvar my_txt = http_req.responseText;\n\t\t\t\tvar resp_info;\n\n\t\t\t\ttry {\n\t\t\t\t\tresp_info = JSON.parse(my_txt);\n\t\t\t\t} catch(e) {\n\t\t\t\t\tshow_auth_fail();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (resp_info.status == \"ok\" && resp_info.error == null){\n\t\t\t\t\tlocation.href = \"category_view.php\"/*tpa=/webaccess/category_view.php*/;\n\t\t\t\t}else if (resp\r\n1000\r\n_info.error == 5003){\n\t\t\t\t\tshow_auth_fail();\n\t\t\t\t}else show_auth_fail();\n\t\t\t}\n\n\t\t\tfunction send_request(){\n\t\t\t\tvar xml_request = new XMLRequest(redirect_category_page);\n\t\t\t\tvar user_name = (get_by_id(\"user_name\").value).toLowerCase();\t// always make user name to lowercase\n\t\t\t\tvar user_pwd = get_by_id(\"user_pwd\").value;\n\t\t\t\tvar digest;\n\t\t\t\tvar para;\n\t\t\t\tdigest = hex_hmac_md5(user_pwd, user_name + media_info.challenge);\n\t\t\t\tpara = \"id=\" + user_name + \"&password=\" + digest;\n\n\t\t\t\txml_request.exec_auth_cgi(para);\n\t\t\t}\n\n\t\t\tfunction get_auth_info_result(http_req){\n\t\t\t\tvar my_txt = http_req.responseText;\n\t\t\t\ttry {\n\t\t\t\t\tmedia_info = JSON.parse(my_txt);\n\t\t\t\t} catch(e) {\n\t\t\t\t\tshow_auth_fail();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\tdocument.cookie\t= \"uid=\" + media_info.uid+\";path=/\";\n\t\t\t\t\tsend_request();\n\t\t\t\t}\n\n\t\t\tfunction get_auth_info(){\n\t\t\t\tvar xml_request = new XMLRequest(get_auth_info_result);\n\n\t\t\t\txml_request.exec_auth_cgi();\n\t\t\t}\n\n\t\t\tfunction login_key_handler(e){\n\t\t\t\tvar which_key;\n\n\t\t\t\tif (document.all) {\n\t\t\t\t\twhich_key = window.event.keyCode;\n\t\t\t\t}else{\n\t\t\t\t\twhich_key = e.which;\n\t\t\t\t}\n\n\t\t\t\tif (which_key == 13){ //click the \"Enter\" Key can also browse web gui\n\t\t\t\t\tget_auth_info();\n }\n\t\t\t}\n\n\t\t\tfunction get_system_info_result(http_req){\n\t\t\t\tmy_xml = http_req.responseXML;\n\t\t\t}\n\n\t\t\tfunction get_system_info(){\n\t\t\t\tvar xml_request = new XMLRequest(get_system_info_result);\n\t\t\t\tvar para = \"request=get_system_info\";\n\n\t\t\t\txml_request.exec_webfile_cgi(para);\n\n\t\t\t\tdocument.getElementById(\"Language\").options[SetLang].selected = true;\n\t\t\t\t$(\"#Language\").selectbox('detach');\n\t\t\t\t$(\"#Language\").val(SetLang);\n\t\t\t\t$(\"#Language\").selectbox({width:120});\n\n\t\t\t\t//Show the hyperlinks of device access if we make sure the IP is private IP.\n\t\t\t\tif(window.location.hostname==\"shareport.local\" || window.location.hostname.substr(0, 8)==\"192.168.\" || window.location.hostname.substr(0, 3)==\"10.\" || window.location.hostname.substr(0, 7)==\"172.16.\")\n\t\t\t\t\tdocument.getElementById(\"link\").style.display = \"\";\n\t\t\t}\n\t\t\t\n\t\t\tfunction change_fontsize(){\n\t\t\t\tvar lang_tmp = localStorage.language;\n\t\t\t\t\n\t\t\t\tif(lang_tmp == \"fr-fr\" || lang_tmp == \"pt-br\" || lang_tmp == \"es-es\" || lang_tmp == \"ru-ru\")\n\t\t\t\t{\n\t\t\t\t\tdocument.getElementById(\"Login_Username\").style.fontSize = \"11px\";\n\t\t\t\t\tdocument.getElementById(\"Login_Password\").style.fontSize = \"11px\";\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t$(function () {\n\t\t\t\t$(\"#Language\").selectbox({width:120});\n\t\t\t\tif (IsPrivateBrowseing == 1)\t{\n\t\t\t\t\t$(\"#Language\").selectbox(\"disable\");\n\t\t\t\t}\n\t\t\t});\n \t</script>\n\t</head>\n\t<!--body onLoad=\"disable_all_btn(false);get_by_id('user_name').focus();get_login_info('no_auth','fw_ver', 'hw_ver')\"-->\n\t<body onLoad=\"get_system_info();change_fontsize()\">\n\t\t<div id=\"wrapper\">\n\t\t\t<!-------------------- Logo ------------------------->\n\t\t\t<div id=\"Lheader\">\n\t\t\t\t<div id=\"logo\">\n\t\t\t\t\t\t<img id=\"D-Link logo\" src=\"webfile_images/logo_2.gif\" width=\"105\" height=\"95\" />\n\t\t\t\t</div>\n\t\t\t\t<table class=\"versionTable\" id=\"versionTable\" border=\"0\" cellspacing=\"0\">\n\t\t\t\t\t<tbody>\n\t\t\t\t\t\t<thead>\n\t\t\t\t\t <td><script>I18N(\"h\", \"Model Name\");</script> : DIR-850L</td>\n\t\t\t\t\t <td><script>I18N(\"h\", \"Hardware Version\");</script> : B1</td>\n\t\t\t\t\t <td><script>I18N(\"h\", \"Firmware Version\");</script> : 2.07</td>\n\t\t\t\t\t <td align=\"right\"><script>I18N(\"h\", \"Language\");</script>:</td>\n\t\t\t\t\t\t <td>\n\t\t\t\t \t\t<div class=\"styled-select\">\n\t\t\t\t\t\t\t\t<select name=\"Language\" id=\"Language\" onChange=\"switch_Language(this.value)\">\n\t\t\t\t\t\t\t\t\t<option value=\"0\">English</option>\n\t\t\t\t\t\t\t\t\t<option value=\"1\">\u7e41\u9ad4\u4e2d\u6587</option>\n\t\t\t\t\t\t\t\t\t<option value=\"2\">\u7b80\u4f53\u4e2d\u6587</option>\n\t\t\t\t\t\t\t\t\t<option value=\"3\">\ud55c\uad6d</option>\n\t\t\t\t\t\t\t\t\t<option value=\"4\">fran\u00e7ais</option>\n\t\t\t\t\t\t\t\t\t<option value=\"5\">portugu\u00eas</option>\n\t\t\t\t\t\t\t\t\t<option value=\"6\">Espa\u00f1ol</option>\n\t\t\t\t\t\t\t\t\t<option value=\"7\">Italiano</option>\n\t\t\t\t\t\t\t\t\t<option value=\"8\">Deutsch</option>\n\t\t\t\t\t\t\t\t\t<option value=\"9\">\u0440\u0443\u0441\u0441\u043a\u0438\u0439</option>\n\t\t\t\t\t\t\t\t</select>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t</thead>\n\t\t\t\t\t</tbody>\n\t\t\t\t</table>\n\t\t\t</div>\n\t\t\t<!-------------------- Content ---------------------->\n\t\t\t<d\r\n4b6\r\niv id=\"content\">\n\t\t\t\t<center><p id=\"title\">SharePort Web Access</p></center>\n\t\t\t\t<div id=\"logIn\">\n\t\t\t\t\t<table class=\"logInTable\" id=\"logInTable\" border=\"0\" cellspacing=\"0\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t<thead>\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t \t <th><span id=\"Login_Username\"><script>I18N(\"h\", \"Username\");</script></span> : </th>\n\t\t\t\t\t\t \t <td><input class=\"styled-text\" type=\"text\" name=\"user_name\" size=\"20\" id=\"user_name\"></td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t \t <th><span id=\"Login_Password\"><script>I18N(\"h\", \"Password\");</script></span> : </th>\n\t\t\t\t\t\t \t <td><input class=\"styled-text\" type=\"password\" name=\"user_pwd\" size=\"20\" id=\"user_pwd\"></td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t</thead>\n\t\t\t\t\t\t</tbody>\n\t\t\t\t\t</table>\n\t\t\t\t\t<center><button type=\"button\" id=\"logIn_btn\" class=\"styled_button_s\" onClick=\"get_auth_info()\"><script>I18N(\"h\", \"Log In\");</script></button></center>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t<div id=\"link\" style=\"display:none\"><script>I18N(\"h\", \"To access device management,\");</script> <a href=\"http://dlinkrouter.local/\"><script>I18N(\"h\", \"click here.\");</script></a></div>\n\t\t\t<br /><br />\n\t\t\t<div id=\"footer\"><script>I18N(\"h\", \"COPYRIGHT\");</script></div>\n\t\t</div>\n\t</body>\n</html>\n\r\n0\r\n\r\n",
"datamd5" : "2f7ddafc5fb3d9ffc367b376473d089b",
"datammh3" : -460828309,
"device" : {
"class" : "<enterprise field>: device.class",
"productvendor" : "<enterprise field>: device.productvendor"
},
"domain" : [
"totinternet.net"
],
"geolocus" : {
"asn" : "AS23969",
"continent" : "AS",
"continentname" : "Asia",
"country" : "TH",
"countryname" : "Thailand",
"domain" : [
"ntplc.co.th",
"totidc.net",
"totinternet.net",
"totisp.net"
],
"isineu" : "false",
"latitude" : "15.870032",
"location" : "15.870032,100.992541",
"longitude" : "100.992541",
"netname" : "TOT-AS-AP",
"organization" : "TOT Public Company Limited",
"subnet" : "101.51.0.0/16"
},
"host" : [
"node-lxj"
],
"hostname" : [
"node-lxj.pool-101-51.dynamic.totinternet.net"
],
"ip" : "101.51.111.7",
"ipv6" : "false",
"latitude" : "13.6671",
"location" : "13.6671,100.5775",
"longitude" : "100.5775",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "TOT Public Company Limited",
"os" : "Linux Kernel",
"osvendor" : "Linux",
"port" : 8181,
"product" : "WebServer",
"productvendor" : "WebServer",
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"reverse" : [
"node-lxj.pool-101-51.dynamic.totinternet.net"
],
"seen_date" : "2024-11-21",
"source" : "datascan",
"status" : 200,
"subdomains" : [
"dynamic.totinternet.net",
"pool-101-51.dynamic.totinternet.net"
],
"subnet" : "101.51.0.0/16",
"tag" : "<enterprise field>: tag",
"tld" : [
"net"
],
"tls" : "false",
"transport" : "tcp",
"url" : "/"
}