Returning 10 result(s) out of 21 in 0.308 second(s)

  • 14.100.118.170:3260 (tcp/http) - last seen on 2024-11-07 at 05:26:43 UTC

    • IP
      14.100.118.170
      Network
      14.100.0.0/17
      Device

      <enterprise field>: device.class <enterprise field>: device.productvendor

      Operating System
      Linux Linux 2
      URL

      http://14.100.118.170:3260/ 200

      HTTP Title
      ::: Login :::
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux 2
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      498757ed6cd314988f10f57b901a6c7b
      HTTP Header MD5
      15514d09ab3a6e41ccb6a3bff154ef8a
      HTTP Body MD5
      c1795339bfc5fbb0f593b34bec5a77c1
    • HTTP/1.1 200 OK
      Date: Thu, 07 Nov 2024 13:26:42 GMT
      Server: Linux/2.x UPnP/1.0 Avtech/1.0
      Connection: close
      Last-Modified: Wed, 19 Jul 2017 09:45:11 GMT
      Content-Type: text/html
      ETag: 162-15850-1500457511
      Content-Length: 15850
      
      <html>
      <head>
      <link rel="icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="shortcut icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="bookmark" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <meta name="googlebot" content="nosnippet">
      <meta name="robots" content="noarchive">
      <title>::: Login :::</title>
      <style>
      <!--
      body {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}
      td { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}
      .inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}
      .codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}
      .font0{font-size:36px;font-family:Arial; font-style:italic;}
      .font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}
      -->
      </style>
      <script language="JavaScript">
      //Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm
      if(document.URL.indexOf("?a=") > 0){
          var VerifyStr_Base64 = document.URL.split("?")[1].substring(2);
          location.href="/nobody/ez.htm?a="+VerifyStr_Base64+"&rnd=" + Math.random();
      }
      /* ========== loginQuickDevice.js ========== */
      function getCookie(c_name){
          if (document.cookie.length>0){
              c_start=document.cookie.indexOf(c_name + "=");
              if (c_start!=-1){ 
                  c_start=c_start + c_name.length+1; 
                  c_end=document.cookie.indexOf(";",c_start);
                  if (c_end==-1) c_end=document.cookie.length;
                  return unescape(document.cookie.substring(c_start,c_end));
              } 
          }
          return "";
      }
      
      function setCookie(c_name,value,expiredays){
          var exdate=new Date();
          exdate.setDate(exdate.getDate()+expiredays);
          document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
      }
      
      var w = window.screen.availWidth;
      
      if(getCookie("ViewMode")!="Classic"){
          if(w <= 800){//mobile screen width < 800
          	if(w >= 320)
          		location.href="/nobody/mobile320.htm?Login=Quick";
          	else
          		location.href="/nobody/mobile.htm?Login=Quick";
          }
      }
      
      //no use
      function isMobileBrowser(){
          var u = navigator.userAgent.toLowerCase();
          
          if(u.indexOf("midp") != -1)
          	return true;
          else if(u.indexOf("mobile") != -1)
          	return true;
          else if(u.indexOf("iphone") != -1 || u.indexOf("ipod") != -1)
          	return true;
          else if(u.indexOf("series60") != -1 || u.indexOf("symbian") != -1)
          	return true;
          else if(u.indexOf("blackberry") != -1)
          	return true;
          else if(u.indexOf("android") != -1)
          	return true;
          else if(u.indexOf("windows ce") != -1 || u.indexOf("windows phone") != -1)
          	return true;
          else if(u.indexOf("htc") != -1 || u.indexOf("hd2_") != -1)
          	return true;
          else if(u.indexOf("palm") != -1)
          	return true;
          else
          	return false;
      }
      
      
      /* ========== webtoolkit.base64.js ========== */
      var Base64 = {
      
      	// private property
      	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
      
      	// public method for encoding
      	encode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = Base64._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 +
      			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
      			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
      
      		}
      
      		return output;
      	},
      
      	// public method for decoding
      	decode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3;
      		var enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
      
      		while (i < input.length) {
      
      			enc1 = this._keyStr.indexOf(input.charAt(i++));
      			enc2 = this._keyStr.indexOf(input.charAt(i++));
      			enc3 = this._keyStr.indexOf(input.charAt(i++));
      			enc4 = this._keyStr.indexOf(input.charAt(i++));
      
      			chr1 = (enc1 << 2) | (enc2 >> 4);
      			chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
      			chr3 = ((enc3 & 3) << 6) | enc4;
      
      			output = output + String.fromCharCode(chr1);
      
      			if (enc3 != 64) {
      				output = output + String.fromCharCode(chr2);
      			}
      			if (enc4 != 64) {
      				output = output + String.fromCharCode(chr3);
      			}
      
      		}
      
      		output = Base64._utf8_decode(output);
      
      		return output;
      
      	},
      
      	// private method for UTF-8 encoding
      	_utf8_encode : function (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;
      	},
      
      	// private method for UTF-8 decoding
      	_utf8_decode : function (utftext) {
      		var string = "";
      		var i = 0;
      		var c = c1 = c2 = 0;
      
      		while ( i < utftext.length ) {
      
      			c = utftext.charCodeAt(i);
      
      			if (c < 128) {
      				string += String.fromCharCode(c);
      				i++;
      			}
      			else if((c > 191) && (c < 224)) {
      				c2 = utftext.charCodeAt(i+1);
      				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
      				i += 2;
      			}
      			else {
      				c2 = utftext.charCodeAt(i+1);
      				c3 = utftext.charCodeAt(i+2);
      				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
      				i += 3;
      			}
      
      		}
      
      		return string;
      	}
      
      }
      
      /* ========== loginQuick.js ========== */
      var ff;
      var CheckOnlySupportIE = false;
      var DVR_ONLY_SUPPORT_IE = "_042_082_162_046_";
      var isIEBrowser = false;
      
      if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC") && (navigator.platform != "Mac68k")) {
        isIEBrowser = true;
      }
      
      /* disabled backspace key */
      if(typeof window.event != 'undefined'){
          document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}
      }else{
          document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}
      }
      
      function init(){
      	ff = document.myForm;
      	ff.Username.value = "";
      	ff.Password.value = "";
      	ff.Username.focus();
      	//setTimeout("getCaptchaImg()", 1000);
      }
      
      function getCaptchaImg(){
      	document.getElementById("Captcha").src = "/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp";
      }
      
      function goCheck(e){
          if(window.event && e.keyCode ==13) //IE
              check(); 
          else if(e.which == 13) // Netscape/Firefox/Opera
              check();
      }
      
      function check(){
          if(!ff){return false;}
          
          document.cookie = "x=1";
          if (document.cookie.indexOf("x=")==-1){
              alert("Browser Cookie not supported.");
              frmReload();
              return false;
          }
          var actionStr = "/cgi-bin/nobody/VerifyCode.cgi"
          actionStr += "?account="+Base64.encode(ff.Username.value+":"+ff.Password.value);
          //actionStr += "&captcha_code="+ff.CaptchaCode.value;
          //actionStr += "&verify_code="+getCookie("captcha");
          actionStr += "&rnd="+Math.random();
      	var httpObj = createHttpRequestObj();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		tmpStr = objStr.strSrc.split("\n");
                  if (tmpStr[1] == "OK"){
                      getUserLevel();
                  }else{
                      alert(tmpStr[1]);
                      frmReload();
                  }
              }
          };
      	httpObj.open("get", actionStr, true);
      	httpObj.send(null);
      	return false;
      }
      
      function getUserLevel(){
      	/*
      	var httpObj = createHttpRequestObj();
      	requestData = "/cgi-bin/guest/Login.cgi?rnd="+Math.random();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		
          		if (CheckOnlySupportIE && GetCgiParam(objStr, "Product-ID-Minor=") == 1){
          		    var pid = objStr.strGet;
          		    var pidc = "_"+pid+"_";
          		    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){
          		        //alert("This machine is not supported, please visit 'www.avtech.com.tw' for more details.");
          		        if(confirm("This machine is not supported.\nDo you want to get more details?")){
          		            location.href = "http://www.eagleeyescctv.com/jump/dvr.htm";
          		        }
          		        return false;
          		    }
          		}
          		
          		if (GetCgiParam(objStr, "User-Level=") == 1){
          			setCookie("LifeTime", "");
          			setCookie("ReloWebTime", 0);
          			if(objStr.strGet == "SUPERVISOR")
                          location.href="/index.htm";
                      else
                          location.href="/index.htm";
      					//location.href="/default.htm";
                  }else{alert('Login Failed.');}
                  
          	}
          };
      	httpObj.open("get", requestData, true);
      	httpObj.send(null);
      	*/
      	setCookie("brokenhdd", "");
      	setCookie("LifeTime", "");
      	setCookie("ReloWebTime", 0);
      	location.href="/index.htm";
      }
      
      function frmReload(){
          ff.Username.value="";
          ff.Password.value="";
          //ff.CaptchaCode.value="";
          location.reload();
      }
      
      function createHttpRequestObj(){
      	var XMLhttpObject = null;
      	try {XMLhttpObject = new XMLHttpRequest();}
      	catch(e){
      		try {XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP");}
      		catch(e){
      			try {XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");}
      			catch(e) {return null;}
      		}
      	}
      	return XMLhttpObject;
      }
      
      function GetCgiParam(objStr, strSearch){
      	var curr_pos;var result;
      	objStr.strSearch=strSearch;
      	objStr.curr_pos=0;
      	do{
      		result = 1;
      		curr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);
      		if (curr_pos < 0){
      			result = 0;
      			break;
      		}
      		objStr.curr_pos = curr_pos + objStr.strSearch.length;
      		curr_pos = objStr.strSrc.indexOf('\n', objStr.curr_pos);
      		if (curr_pos < 0){
      			if (objStr.curr_pos < objStr.strSrc.length){
      				objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);
      				objStr.curr_pos = curr_pos;	
      				break;
      			}
      			result = 0;
      			break;
      		}
      		objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, curr_pos);
      		objStr.curr_pos = curr_pos;
      	} while(0);
      	return result;
      }
      
      function goMobile(){
          setCookie("ViewMode", "Mobile");
      	var w = window.screen.availWidth;
      	if(w >= 320)
      		location.href="/nobody/mobile320.htm?Login=Quick";
      	else
      		location.href="/nobody/mobile.htm?Login=Quick";
      }
      
      </script>
      </head>
      <body onload="init()">
      <form name="myForm" method="POST" target="_top" onSubmit="return check();">
      <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr><td width="778" height="197" valign="middle" >
              <table width="201" border="0" cellspacing="0" cellpadding="0">
                  <tr><td width="201" height="25">&nbsp;</td></tr>
              </table>
              <table width="467" height="88" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="493" height="53" class="font0">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>
                  <tr><td class="font1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>
              </table></td></tr>
          <tr><td height="114" valign="middle">
              <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="221" height="247" valign="top"></td>
              <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td height="94" valign="top"><table width="341" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="21"><img src="/nobody/jpg/lcorner.jpg" width="21" height="33" alt=""></td>
                      <td width="306" align="center" background="/nobody/jpg/banner.jpg"> Customer Login </td>
                      <td width="14"><img src="/nobody/jpg/rcor.jpg" width="18" height="33"></td>
                    </tr>
                  </table>
                          <table width="341" border="0" align="left" cellpadding="0" cellspacing="0">
                            <tr>
                              <td width="8%"><img src="/nobody/jpg/mem.jpg" width="83" height="168"></td>
                              <td width="87%" background="/nobody/jpg/bg09.gif">
                                  <!-- input box -->
                                  <table width="233" height="80" border="0" cellpadding="0" cellspacing="0">
                                  <tr>
                                    <td width="96" height="41" align="right">Username :&nbsp;</td>
                                    <td width="124"><input name="Username" maxlength="31" type="text" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  <tr>
                                    <td width="96" height="37" align="right">Password :&nbsp;</td>
                                    <td><input name="Password" maxlength="31" type="password" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  </table></td>
      
                              <td width="5%"><img src="/nobody/jpg/line11.jpg" width="18" height="168"></td>
                            </tr>
                        </table></td>
                </tr>
                <tr>
                  <td valign="top"><table width="341" border="0" align="center" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="17" valign="top" background="/nobody/jpg/bg14.jpg"><img src="/nobody/jpg/cor.jpg" width="17" height="46"></td>
                      <td width="305" background="/nobody/jpg/bg14.jpg">
                          <!-- button -->
                          <table width="100%" border="0" cellspacing="0" cellpadding="0">
                          <tr><td align="center"><img src="/nobody/jpg/login.gif" style="cursor:pointer" width="103" height="29" border="0" onClick="check();"></td></tr>
                          </table></td>
                      <td width="18" valign="top"><img src="/nobody/jpg/cor18.jpg" width="18" height="46"></td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
              <td width="218" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td></td>
                </tr>
                
              </table></td>
            </tr>
          </table>
          <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
              <td width="213"></td>
              <td width="339" height="132" align="center">View: <a href="#" style='color:#00ffff' onclick="goMobile()">Mobile</a> | PC</td>
              <td width="226"></td>
            </tr>
          </table></td>
        </tr>
      </table>
      </form>
      </body>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:26:43.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "eagleeyescctv.com"
               ],
               "file" : [
                  "verifycode.cgi"
               ],
               "hostname" : [
                  "www.eagleeyescctv.com"
               ],
               "url" : [
                  "http://www.eagleeyescctv.com/jump/dvr.htm"
               ]
            },
            "favicon" : {
               "url" : "/nobody/favicon.ico"
            },
            "http" : {
               "bodymd5" : "c1795339bfc5fbb0f593b34bec5a77c1",
               "bodymmh3" : -878287826,
               "header" : [
                  {
                     "value" : "Wed, 19 Jul 2017 09:45:11 GMT",
                     "name" : "Last-Modified"
                  },
                  {
                     "value" : "162-15850-1500457511",
                     "name" : "ETag"
                  }
               ],
               "headermd5" : "15514d09ab3a6e41ccb6a3bff154ef8a",
               "headermmh3" : 1751878380,
               "title" : "::: Login :::"
            },
            "length" : 16086
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nDate: Thu, 07 Nov 2024 13:26:42 GMT\r\nServer: Linux/2.x UPnP/1.0 Avtech/1.0\r\nConnection: close\r\nLast-Modified: Wed, 19 Jul 2017 09:45:11 GMT\r\nContent-Type: text/html\r\nETag: 162-15850-1500457511\r\nContent-Length: 15850\r\n\r\n<html>\r\n<head>\r\n<link rel=\"icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"shortcut icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"bookmark\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"googlebot\" content=\"nosnippet\">\r\n<meta name=\"robots\" content=\"noarchive\">\r\n<title>::: Login :::</title>\r\n<style>\r\n<!--\r\nbody {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}\r\ntd { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}\r\n.inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}\r\n.codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}\r\n.font0{font-size:36px;font-family:Arial; font-style:italic;}\r\n.font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}\r\n-->\r\n</style>\r\n<script language=\"JavaScript\">\r\n//Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm\r\nif(document.URL.indexOf(\"?a=\") > 0){\r\n    var VerifyStr_Base64 = document.URL.split(\"?\")[1].substring(2);\r\n    location.href=\"/nobody/ez.htm?a=\"+VerifyStr_Base64+\"&rnd=\" + Math.random();\r\n}\r\n/* ========== loginQuickDevice.js ========== */\r\nfunction getCookie(c_name){\r\n    if (document.cookie.length>0){\r\n        c_start=document.cookie.indexOf(c_name + \"=\");\r\n        if (c_start!=-1){ \r\n            c_start=c_start + c_name.length+1; \r\n            c_end=document.cookie.indexOf(\";\",c_start);\r\n            if (c_end==-1) c_end=document.cookie.length;\r\n            return unescape(document.cookie.substring(c_start,c_end));\r\n        } \r\n    }\r\n    return \"\";\r\n}\r\n\r\nfunction setCookie(c_name,value,expiredays){\r\n    var exdate=new Date();\r\n    exdate.setDate(exdate.getDate()+expiredays);\r\n    document.cookie=c_name+ \"=\" +escape(value)+((expiredays==null) ? \"\" : \";expires=\"+exdate.toGMTString());\r\n}\r\n\r\nvar w = window.screen.availWidth;\r\n\r\nif(getCookie(\"ViewMode\")!=\"Classic\"){\r\n    if(w <= 800){//mobile screen width < 800\r\n    \tif(w >= 320)\r\n    \t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n    \telse\r\n    \t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n    }\r\n}\r\n\r\n//no use\r\nfunction isMobileBrowser(){\r\n    var u = navigator.userAgent.toLowerCase();\r\n    \r\n    if(u.indexOf(\"midp\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"mobile\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"iphone\") != -1 || u.indexOf(\"ipod\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"series60\") != -1 || u.indexOf(\"symbian\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"blackberry\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"android\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"windows ce\") != -1 || u.indexOf(\"windows phone\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"htc\") != -1 || u.indexOf(\"hd2_\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"palm\") != -1)\r\n    \treturn true;\r\n    else\r\n    \treturn false;\r\n}\r\n\r\n\r\n/* ========== webtoolkit.base64.js ========== */\r\nvar Base64 = {\r\n\r\n\t// private property\r\n\t_keyStr : \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",\r\n\r\n\t// public method for encoding\r\n\tencode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3, enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = Base64._utf8_encode(input);\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tchr1 = input.charCodeAt(i++);\r\n\t\t\tchr2 = input.charCodeAt(i++);\r\n\t\t\tchr3 = input.charCodeAt(i++);\r\n\r\n\t\t\tenc1 = chr1 >> 2;\r\n\t\t\tenc2 = ((chr1 & 3) << 4) | (chr2 >> 4);\r\n\t\t\tenc3 = ((chr2 & 15) << 2) | (chr3 >> 6);\r\n\t\t\tenc4 = chr3 & 63;\r\n\r\n\t\t\tif (isNaN(chr2)) {\r\n\t\t\t\tenc3 = enc4 = 64;\r\n\t\t\t} else if (isNaN(chr3)) {\r\n\t\t\t\tenc4 = 64;\r\n\t\t\t}\r\n\r\n\t\t\toutput = output +\r\n\t\t\tthis._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +\r\n\t\t\tthis._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);\r\n\r\n\t\t}\r\n\r\n\t\treturn output;\r\n\t},\r\n\r\n\t// public method for decoding\r\n\tdecode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3;\r\n\t\tvar enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = input.replace(/[^A-Za-z0-9\\+\\/\\=]/g, \"\");\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tenc1 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc2 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc3 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc4 = this._keyStr.indexOf(input.charAt(i++));\r\n\r\n\t\t\tchr1 = (enc1 << 2) | (enc2 >> 4);\r\n\t\t\tchr2 = ((enc2 & 15) << 4) | (enc3 >> 2);\r\n\t\t\tchr3 = ((enc3 & 3) << 6) | enc4;\r\n\r\n\t\t\toutput = output + String.fromCharCode(chr1);\r\n\r\n\t\t\tif (enc3 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr2);\r\n\t\t\t}\r\n\t\t\tif (enc4 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr3);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\toutput = Base64._utf8_decode(output);\r\n\r\n\t\treturn output;\r\n\r\n\t},\r\n\r\n\t// private method for UTF-8 encoding\r\n\t_utf8_encode : function (string) {\r\n\t\tstring = string.replace(/\\r\\n/g,\"\\n\");\r\n\t\tvar utftext = \"\";\r\n\r\n\t\tfor (var n = 0; n < string.length; n++) {\r\n\r\n\t\t\tvar c = string.charCodeAt(n);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tutftext += String.fromCharCode(c);\r\n\t\t\t}\r\n\t\t\telse if((c > 127) && (c < 2048)) {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn utftext;\r\n\t},\r\n\r\n\t// private method for UTF-8 decoding\r\n\t_utf8_decode : function (utftext) {\r\n\t\tvar string = \"\";\r\n\t\tvar i = 0;\r\n\t\tvar c = c1 = c2 = 0;\r\n\r\n\t\twhile ( i < utftext.length ) {\r\n\r\n\t\t\tc = utftext.charCodeAt(i);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tstring += String.fromCharCode(c);\r\n\t\t\t\ti++;\r\n\t\t\t}\r\n\t\t\telse if((c > 191) && (c < 224)) {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tstring += String.fromCharCode(((c & 31) << 6) | (c2 & 63));\r\n\t\t\t\ti += 2;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tc3 = utftext.charCodeAt(i+2);\r\n\t\t\t\tstring += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));\r\n\t\t\t\ti += 3;\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn string;\r\n\t}\r\n\r\n}\r\n\r\n/* ========== loginQuick.js ========== */\r\nvar ff;\r\nvar CheckOnlySupportIE = false;\r\nvar DVR_ONLY_SUPPORT_IE = \"_042_082_162_046_\";\r\nvar isIEBrowser = false;\r\n\r\nif ((navigator.appName == \"Microsoft Internet Explorer\") && (navigator.platform != \"MacPPC\") && (navigator.platform != \"Mac68k\")) {\r\n  isIEBrowser = true;\r\n}\r\n\r\n/* disabled backspace key */\r\nif(typeof window.event != 'undefined'){\r\n    document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}\r\n}else{\r\n    document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}\r\n}\r\n\r\nfunction init(){\r\n\tff = document.myForm;\r\n\tff.Username.value = \"\";\r\n\tff.Password.value = \"\";\r\n\tff.Username.focus();\r\n\t//setTimeout(\"getCaptchaImg()\", 1000);\r\n}\r\n\r\nfunction getCaptchaImg(){\r\n\tdocument.getElementById(\"Captcha\").src = \"/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp\";\r\n}\r\n\r\nfunction goCheck(e){\r\n    if(window.event && e.keyCode ==13) //IE\r\n        check(); \r\n    else if(e.which == 13) // Netscape/Firefox/Opera\r\n        check();\r\n}\r\n\r\nfunction check(){\r\n    if(!ff){return false;}\r\n    \r\n    document.cookie = \"x=1\";\r\n    if (document.cookie.indexOf(\"x=\")==-1){\r\n        alert(\"Browser Cookie not supported.\");\r\n        frmReload();\r\n        return false;\r\n    }\r\n    var actionStr = \"/cgi-bin/nobody/VerifyCode.cgi\"\r\n    actionStr += \"?account=\"+Base64.encode(ff.Username.value+\":\"+ff.Password.value);\r\n    //actionStr += \"&captcha_code=\"+ff.CaptchaCode.value;\r\n    //actionStr += \"&verify_code=\"+getCookie(\"captcha\");\r\n    actionStr += \"&rnd=\"+Math.random();\r\n\tvar httpObj = createHttpRequestObj();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\ttmpStr = objStr.strSrc.split(\"\\n\");\r\n            if (tmpStr[1] == \"OK\"){\r\n                getUserLevel();\r\n            }else{\r\n                alert(tmpStr[1]);\r\n                frmReload();\r\n            }\r\n        }\r\n    };\r\n\thttpObj.open(\"get\", actionStr, true);\r\n\thttpObj.send(null);\r\n\treturn false;\r\n}\r\n\r\nfunction getUserLevel(){\r\n\t/*\r\n\tvar httpObj = createHttpRequestObj();\r\n\trequestData = \"/cgi-bin/guest/Login.cgi?rnd=\"+Math.random();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\t\r\n    \t\tif (CheckOnlySupportIE && GetCgiParam(objStr, \"Product-ID-Minor=\") == 1){\r\n    \t\t    var pid = objStr.strGet;\r\n    \t\t    var pidc = \"_\"+pid+\"_\";\r\n    \t\t    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){\r\n    \t\t        //alert(\"This machine is not supported, please visit 'www.avtech.com.tw' for more details.\");\r\n    \t\t        if(confirm(\"This machine is not supported.\\nDo you want to get more details?\")){\r\n    \t\t            location.href = \"http://www.eagleeyescctv.com/jump/dvr.htm\";\r\n    \t\t        }\r\n    \t\t        return false;\r\n    \t\t    }\r\n    \t\t}\r\n    \t\t\r\n    \t\tif (GetCgiParam(objStr, \"User-Level=\") == 1){\r\n    \t\t\tsetCookie(\"LifeTime\", \"\");\r\n    \t\t\tsetCookie(\"ReloWebTime\", 0);\r\n    \t\t\tif(objStr.strGet == \"SUPERVISOR\")\r\n                    location.href=\"/index.htm\";\r\n                else\r\n                    location.href=\"/index.htm\";\r\n\t\t\t\t\t//location.href=\"/default.htm\";\r\n            }else{alert('Login Failed.');}\r\n            \r\n    \t}\r\n    };\r\n\thttpObj.open(\"get\", requestData, true);\r\n\thttpObj.send(null);\r\n\t*/\r\n\tsetCookie(\"brokenhdd\", \"\");\r\n\tsetCookie(\"LifeTime\", \"\");\r\n\tsetCookie(\"ReloWebTime\", 0);\r\n\tlocation.href=\"/index.htm\";\r\n}\r\n\r\nfunction frmReload(){\r\n    ff.Username.value=\"\";\r\n    ff.Password.value=\"\";\r\n    //ff.CaptchaCode.value=\"\";\r\n    location.reload();\r\n}\r\n\r\nfunction createHttpRequestObj(){\r\n\tvar XMLhttpObject = null;\r\n\ttry {XMLhttpObject = new XMLHttpRequest();}\r\n\tcatch(e){\r\n\t\ttry {XMLhttpObject = new ActiveXObject(\"Msxml2.XMLHTTP\");}\r\n\t\tcatch(e){\r\n\t\t\ttry {XMLhttpObject = new ActiveXObject(\"Microsoft.XMLHTTP\");}\r\n\t\t\tcatch(e) {return null;}\r\n\t\t}\r\n\t}\r\n\treturn XMLhttpObject;\r\n}\r\n\r\nfunction GetCgiParam(objStr, strSearch){\r\n\tvar curr_pos;var result;\r\n\tobjStr.strSearch=strSearch;\r\n\tobjStr.curr_pos=0;\r\n\tdo{\r\n\t\tresult = 1;\r\n\t\tcurr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.curr_pos = curr_pos + objStr.strSearch.length;\r\n\t\tcurr_pos = objStr.strSrc.indexOf('\\n', objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tif (objStr.curr_pos < objStr.strSrc.length){\r\n\t\t\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);\r\n\t\t\t\tobjStr.curr_pos = curr_pos;\t\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, curr_pos);\r\n\t\tobjStr.curr_pos = curr_pos;\r\n\t} while(0);\r\n\treturn result;\r\n}\r\n\r\nfunction goMobile(){\r\n    setCookie(\"ViewMode\", \"Mobile\");\r\n\tvar w = window.screen.availWidth;\r\n\tif(w >= 320)\r\n\t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n\telse\r\n\t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n}\r\n\r\n</script>\r\n</head>\r\n<body onload=\"init()\">\r\n<form name=\"myForm\" method=\"POST\" target=\"_top\" onSubmit=\"return check();\">\r\n<table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tr><td width=\"778\" height=\"197\" valign=\"middle\" >\r\n        <table width=\"201\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr><td width=\"201\" height=\"25\">&nbsp;</td></tr>\r\n        </table>\r\n        <table width=\"467\" height=\"88\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"493\" height=\"53\" class=\"font0\">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>\r\n            <tr><td class=\"font1\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>\r\n        </table></td></tr>\r\n    <tr><td height=\"114\" valign=\"middle\">\r\n        <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"221\" height=\"247\" valign=\"top\"></td>\r\n        <td valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td height=\"94\" valign=\"top\"><table width=\"341\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n              <tr>\r\n                <td width=\"21\"><img src=\"/nobody/jpg/lcorner.jpg\" width=\"21\" height=\"33\" alt=\"\"></td>\r\n                <td width=\"306\" align=\"center\" background=\"/nobody/jpg/banner.jpg\"> Customer Login </td>\r\n                <td width=\"14\"><img src=\"/nobody/jpg/rcor.jpg\" width=\"18\" height=\"33\"></td>\r\n              </tr>\r\n            </table>\r\n                    <table width=\"341\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td width=\"8%\"><img src=\"/nobody/jpg/mem.jpg\" width=\"83\" height=\"168\"></td>\r\n                        <td width=\"87%\" background=\"/nobody/jpg/bg09.gif\">\r\n                            <!-- input box -->\r\n                            <table width=\"233\" height=\"80\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                            <tr>\r\n                              <td width=\"96\" height=\"41\" align=\"right\">Username :&nbsp;</td>\r\n                              <td width=\"124\"><input name=\"Username\" maxlength=\"31\" type=\"text\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            <tr>\r\n                              <td width=\"96\" height=\"37\" align=\"right\">Password :&nbsp;</td>\r\n                              <td><input name=\"Password\" maxlength=\"31\" type=\"password\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            </table></td>\r\n\r\n                        <td width=\"5%\"><img src=\"/nobody/jpg/line11.jpg\" width=\"18\" height=\"168\"></td>\r\n                      </tr>\r\n                  </table></td>\r\n          </tr>\r\n          <tr>\r\n            <td valign=\"top\"><table width=\"341\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n                <td width=\"17\" valign=\"top\" background=\"/nobody/jpg/bg14.jpg\"><img src=\"/nobody/jpg/cor.jpg\" width=\"17\" height=\"46\"></td>\r\n                <td width=\"305\" background=\"/nobody/jpg/bg14.jpg\">\r\n                    <!-- button -->\r\n                    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                    <tr><td align=\"center\"><img src=\"/nobody/jpg/login.gif\" style=\"cursor:pointer\" width=\"103\" height=\"29\" border=\"0\" onClick=\"check();\"></td></tr>\r\n                    </table></td>\r\n                <td width=\"18\" valign=\"top\"><img src=\"/nobody/jpg/cor18.jpg\" width=\"18\" height=\"46\"></td>\r\n              </tr>\r\n            </table></td>\r\n          </tr>\r\n        </table></td>\r\n        <td width=\"218\" valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td></td>\r\n          </tr>\r\n          \r\n        </table></td>\r\n      </tr>\r\n    </table>\r\n    <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n        <td width=\"213\"></td>\r\n        <td width=\"339\" height=\"132\" align=\"center\">View: <a href=\"#\" style='color:#00ffff' onclick=\"goMobile()\">Mobile</a> | PC</td>\r\n        <td width=\"226\"></td>\r\n      </tr>\r\n    </table></td>\r\n  </tr>\r\n</table>\r\n</form>\r\n</body>\r\n</html>",
         "datamd5" : "498757ed6cd314988f10f57b901a6c7b",
         "datammh3" : -1933980046,
         "device" : {
            "class" : "<enterprise field>: device.class",
            "productvendor" : "<enterprise field>: device.productvendor"
         },
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "14.100.0.0/17"
         },
         "ip" : "14.100.118.170",
         "ipv6" : "false",
         "latitude" : "1.3248",
         "location" : "1.3248,103.7799",
         "longitude" : "103.7799",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux",
         "osvendor" : "Linux",
         "osversion" : "2",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "14.100.0.0/17",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 116.15.48.37:3260 (tcp/http) - last seen on 2024-11-07 at 03:15:28 UTC

    • IP
      116.15.48.37
      Network
      116.15.0.0/18
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://116.15.48.37:3260/ 200

      Reverse DNS
      bb116-15-48-37.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      F5 Nginx
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      3d029073a160c198d3155d58727a3f3c
      HTTP Header MD5
      e95353e6c88f3e96a977c5f942702ad1
      HTTP Body MD5
      cb1a5007a60faece0a1b494f7df8b60c
    • HTTP/1.1 200 OK
      Server: nginx
      Content-Length: 736
      Content-Type: text/html
      Connection: close
      
      <!DOCTYPE html>
      <html lang="en">
      
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <link rel="icon" href="./favicon.ico" type="image/x-icon" />
        <link rel="stylesheet" href="./dist/style.css">
        <title></title>
      </head>
      
      <body>
        <div id="app"></div>
        <script type="text/javascript" src="view1.js"></script>
        <script src="./dist/build.js"></script>
        <script src="./dist/import.js"></script>
        <script src="./main.js"></script>
        <!-- <script type="text/javascript" src="xml.js"></script> -->
        <script type="text/javascript" src="swfobject.js"></script>
        <script>
        </script>
      </body>
      
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T03:15:28.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "cb1a5007a60faece0a1b494f7df8b60c",
               "bodymmh3" : -275841746,
               "headermd5" : "e95353e6c88f3e96a977c5f942702ad1",
               "headermmh3" : -61428028
            },
            "length" : 835
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nServer: nginx\r\nContent-Length: 736\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n  <meta charset=\"utf-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\r\n  <link rel=\"icon\" href=\"./favicon.ico\" type=\"image/x-icon\" />\r\n  <link rel=\"stylesheet\" href=\"./dist/style.css\">\r\n  <title></title>\r\n</head>\r\n\r\n<body>\r\n  <div id=\"app\"></div>\r\n  <script type=\"text/javascript\" src=\"view1.js\"></script>\r\n  <script src=\"./dist/build.js\"></script>\r\n  <script src=\"./dist/import.js\"></script>\r\n  <script src=\"./main.js\"></script>\r\n  <!-- <script type=\"text/javascript\" src=\"xml.js\"></script> -->\r\n  <script type=\"text/javascript\" src=\"swfobject.js\"></script>\r\n  <script>\r\n  </script>\r\n</body>\r\n\r\n</html>\r\n",
         "datamd5" : "3d029073a160c198d3155d58727a3f3c",
         "datammh3" : -92932080,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "116.14.0.0/15"
         },
         "host" : [
            "bb116-15-48-37"
         ],
         "hostname" : [
            "bb116-15-48-37.singnet.com.sg"
         ],
         "ip" : "116.15.48.37",
         "ipv6" : "false",
         "latitude" : "1.3856",
         "location" : "1.3856,103.8658",
         "longitude" : "103.8658",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "Nginx",
         "productvendor" : "F5",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb116-15-48-37.singnet.com.sg"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "116.15.0.0/18",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.4.230:3260 (tcp/http) - last seen on 2024-11-06 at 23:38:48 UTC

    • IP
      219.74.4.230
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.4.230:3260/ 200

      Reverse DNS
      bb219-74-4-230.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      c03ea71cf5d488ef183005e3486689bd
      HTTP Header MD5
      fd8e0a765092d70d012b61df4ef95edf
      HTTP Body MD5
      167b799d5d5294a1c72f3865f37e43c3
      Favicon MD5
      89b932fcc47cf4ca3faadb0cfdef89cf
      Favicon MMH3
      999357577
    • HTTP/1.1 200 OK
      Vary: Accept-Encoding
      X-Frame-Options: SAMEORIGIN
      Content-Type: text/html
      X-Content-Type-Options: nosniff
      Date: Thu, 07 Nov 2024 06:54:08 GMT
      ETag: 1728304293
      Content-Length: 481
      X-XSS-Protection: 1; mode=block
      Last-Modified: Tue, 20 Jun 2023 03:52:36 GMT
      Connection: close
      Accept-Ranges: bytes
      
      <!doctype html>
      <html>
      <head>
      	<title></title>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      	<meta http-equiv="X-UA-Compatible" content="IE=edge" >
      	<meta http-equiv="Pragma" content="no-cache" />
      	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
      	<meta http-equiv="Expires" content="0" />
      </head>
      <body>
      </body>
      <script>
      	window.location.href = "./doc/page/login.asp?_" + (new Date()).getTime();
      </script>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-06T23:38:48.000Z",
         "app" : {
            "favicon" : {
               "image" : "AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkJCSYJCQksmQkJL/kJCS/5CQkv+QkJL/kJCS/5CQkv+QkJL/kJCS/5CQkv+QkJL/kJCS25CQknIAAAAAkpKUb6Cgov/ExMr/0tLY/9LS2P/S0tj/0tLY/9LS2P/S0tj/0tLY/9LS2P/S0tj/0tLY/8nJzv+np6r/kpKUkJWVlti/v8D/xsbI/8bGyP/CwsT/jo6Q/11dXv8vLy//KCgp/1FRUv+OjpD/wMDC/8bGyP/Gxsj/xcXH/5iYmf+YmJn/x8fI/8fHyP/Dw8T/aGhp/xISEv8HBwf/FxcV/x4eHP8JCQn/CAgI/z09Pf/CwsL/x8fI/8fHyP+goKH/m5ud/8jIyf/IyMn/kJCQ/xEREf8YGBf/R0dG/2BgZf9/fYT/pqaj/1paVf8CAgL/X19g/8jIyf/IyMn/o6Ol/5+fof/Kysv/w8PD/yEgIf8XFxf/NDQ0/ygpLP8SECj/Cwk5/0VEdP+rqLT/b3Fs/wAAAP+jo6T/ysrL/6enqP+ioqT/zMzN/4ODhP8TExP/IiIi/wwNDf8AAAD/AAAm/ywpcP8rKW//JiNp/5eWnP8sLCn/OTk6/8zMzf+pqav/pqao/8/Pz/9ZWVn/Ghoa/xUUE/8mIA7/FxQQ/wAAMP9xbb3/jYnQ/wsLTP9CQWP/UFBK/wUFBf/Pz8//ra2v/6urrf/T09T/XV1d/xsbHv8iHxL/s5tV/0E4H/9wY0L/LSg1/wICPv8AADD/Hx5C/0pKRv8HBwb/09PU/7KytP+vr7H/3t7f/4iIif8nJyv/FhQL/8etXf+mkU7/V04y/y0pF/8AAAD/AAAM/ycmNP80NDP/Kysr/97e3/+3t7n/srK0/+Pj5P/Fxcb/SkpL/wMFBf+WgkT/07Vj/6+WUv9HPSH/BQQA/wUFBf82Njb/FRUU/4qKi//j4+T/u7u8/7a2uP/o6Or/6Ojq/4+Pj/84ODv/AAAA/415Qf+xmFT/SD4i/wYFBf8dHR3/JiYm/ysrK//l5ef/6Ojq/7+/wf+5ubz/7u7w/+7u8P/p6ev/l5eY/z9AQf8JCw7/AAAC/wcHCP8XFxf/Hx8f/0tLTP/f3+D/7u7w/+7u8P/CwsX/vLy/2+vr7f/z8/X/8/P1//Pz9f/ExMb/hYWG/0xMTv8/QUH/aGho/6Ojpf/z8/X/8/P1//Pz9f/y8vT/wMDD/7+/wXLNzc//7u7x//b2+f/29vn/9vb5//b2+f/29vn/9vb5//b2+f/29vn/9vb5//b2+f/x8fT/1NTX/7+/wZAAAAAAwcHDcsHBw9vBwcP/wcHD/8HBw//BwcP/wcHD/8HBw//BwcP/wcHD/8HBw//BwcP/wcHD6sHBw4EAAAAAgAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAEAAA==",
               "imagemd5" : "89b932fcc47cf4ca3faadb0cfdef89cf",
               "imagemmh3" : 999357577,
               "length" : 1150,
               "url" : "/favicon.ico"
            },
            "http" : {
               "bodymd5" : "167b799d5d5294a1c72f3865f37e43c3",
               "bodymmh3" : -370724244,
               "header" : [
                  {
                     "value" : 1728304293,
                     "name" : "ETag"
                  },
                  {
                     "name" : "Last-Modified",
                     "value" : "Tue, 20 Jun 2023 03:52:36 GMT"
                  }
               ],
               "headermd5" : "fd8e0a765092d70d012b61df4ef95edf",
               "headermmh3" : -1631335429
            },
            "length" : 806
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Type: text/html\r\nX-Content-Type-Options: nosniff\r\nDate: Thu, 07 Nov 2024 06:54:08 GMT\r\nETag: 1728304293\r\nContent-Length: 481\r\nX-XSS-Protection: 1; mode=block\r\nLast-Modified: Tue, 20 Jun 2023 03:52:36 GMT\r\nConnection: close\r\nAccept-Ranges: bytes\r\n\r\n\ufeff<!doctype html>\r\n<html>\r\n<head>\r\n\t<title></title>\r\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" >\r\n\t<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n\t<meta http-equiv=\"Cache-Control\" content=\"no-cache, must-revalidate\" />\r\n\t<meta http-equiv=\"Expires\" content=\"0\" />\r\n</head>\r\n<body>\r\n</body>\r\n<script>\r\n\twindow.location.href = \"./doc/page/login.asp?_\" + (new Date()).getTime();\r\n</script>\r\n</html>",
         "datamd5" : "c03ea71cf5d488ef183005e3486689bd",
         "datammh3" : 734548108,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-4-230"
         ],
         "hostname" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "ip" : "219.74.4.230",
         "ipv6" : "false",
         "latitude" : "1.3216",
         "location" : "1.3216,103.8789",
         "longitude" : "103.8789",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "seen_date" : "2024-11-06",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.4.230:3260 (tcp/http) - last seen on 2024-11-06 at 22:54:10 UTC

    • IP
      219.74.4.230
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.4.230:3260/ 200

      Reverse DNS
      bb219-74-4-230.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      c03ea71cf5d488ef183005e3486689bd
      HTTP Header MD5
      fd8e0a765092d70d012b61df4ef95edf
      HTTP Body MD5
      167b799d5d5294a1c72f3865f37e43c3
    • HTTP/1.1 200 OK
      Vary: Accept-Encoding
      X-Frame-Options: SAMEORIGIN
      Content-Type: text/html
      X-Content-Type-Options: nosniff
      Date: Thu, 07 Nov 2024 06:54:08 GMT
      ETag: 1728304293
      Content-Length: 481
      X-XSS-Protection: 1; mode=block
      Last-Modified: Tue, 20 Jun 2023 03:52:36 GMT
      Connection: close
      Accept-Ranges: bytes
      
      <!doctype html>
      <html>
      <head>
      	<title></title>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      	<meta http-equiv="X-UA-Compatible" content="IE=edge" >
      	<meta http-equiv="Pragma" content="no-cache" />
      	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
      	<meta http-equiv="Expires" content="0" />
      </head>
      <body>
      </body>
      <script>
      	window.location.href = "./doc/page/login.asp?_" + (new Date()).getTime();
      </script>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-06T22:54:10.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "167b799d5d5294a1c72f3865f37e43c3",
               "bodymmh3" : -370724244,
               "header" : [
                  {
                     "name" : "ETag",
                     "value" : 1728304293
                  },
                  {
                     "value" : "Tue, 20 Jun 2023 03:52:36 GMT",
                     "name" : "Last-Modified"
                  }
               ],
               "headermd5" : "fd8e0a765092d70d012b61df4ef95edf",
               "headermmh3" : -1631335429
            },
            "length" : 806
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Type: text/html\r\nX-Content-Type-Options: nosniff\r\nDate: Thu, 07 Nov 2024 06:54:08 GMT\r\nETag: 1728304293\r\nContent-Length: 481\r\nX-XSS-Protection: 1; mode=block\r\nLast-Modified: Tue, 20 Jun 2023 03:52:36 GMT\r\nConnection: close\r\nAccept-Ranges: bytes\r\n\r\n\ufeff<!doctype html>\r\n<html>\r\n<head>\r\n\t<title></title>\r\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" >\r\n\t<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n\t<meta http-equiv=\"Cache-Control\" content=\"no-cache, must-revalidate\" />\r\n\t<meta http-equiv=\"Expires\" content=\"0\" />\r\n</head>\r\n<body>\r\n</body>\r\n<script>\r\n\twindow.location.href = \"./doc/page/login.asp?_\" + (new Date()).getTime();\r\n</script>\r\n</html>",
         "datamd5" : "c03ea71cf5d488ef183005e3486689bd",
         "datammh3" : 734548108,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-4-230"
         ],
         "hostname" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "ip" : "219.74.4.230",
         "ipv6" : "false",
         "latitude" : "1.3216",
         "location" : "1.3216,103.8789",
         "longitude" : "103.8789",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "seen_date" : "2024-11-06",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.79.96:3260 (tcp/http) - last seen on 2024-11-02 at 18:49:35 UTC

    • IP
      219.74.79.96
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.79.96:3260/ 200

      HTTP Title
      Home Assistant
      Reverse DNS
      bb219-74-79-96.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      cca342594e92676e69fb7cc0cd5e6a35
      HTTP Header MD5
      189276425e4a6a6c7adb0c33241a94b3
      HTTP Body MD5
      fae0e8eae68e884c64686cc4e8889dba
    • HTTP/1.1 200 OK
      Content-Type: text/html; charset=utf-8
      Content-Length: 9174
      Date: Sat, 02 Nov 2024 18:49:35 GMT
      Server: Python/3.10 aiohttp/3.8.4
      Connection: close
      
      <!DOCTYPE html><html><head><title>Home Assistant</title><meta charset="utf-8"><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="icon" href="/static/icons/favicon.ico"><link rel="modulepreload" href="/frontend_latest/core-hpNqcTVzWqI.js" crossorigin="use-credentials"><link rel="modulepreload" href="/frontend_latest/app-26IZhTwuAxk.js" crossorigin="use-credentials"><link rel="mask-icon" href="/static/icons/mask-icon.svg" color="#03a9f4"><link rel="apple-touch-icon" sizes="180x180" href="/static/icons/favicon-apple-180x180.png"><meta name="apple-itunes-app" content="app-id=1099568401"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="Home Assistant"><meta name="msapplication-square70x70logo" content="/static/icons/tile-win-70x70.png"><meta name="msapplication-square150x150logo" content="/static/icons/tile-win-150x150.png"><meta name="msapplication-wide310x150logo" content="/static/icons/tile-win-310x150.png"><meta name="msapplication-square310x310logo" content="/static/icons/tile-win-310x310.png"><meta name="msapplication-TileColor" content="#03a9f4ff"><meta name="mobile-web-app-capable" content="yes"><meta name="referrer" content="same-origin"><meta name="theme-color" content="#03A9F4"><meta name="color-scheme" content="dark light"><meta name="viewport" content="width=device-width,user-scalable=no,viewport-fit=cover,initial-scale=1"><style>body{font-family:Roboto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;padding:0;height:100%}</style><style>html{background-color:var(--primary-background-color,#fafafa);color:var(--primary-text-color,#212121)}@media (prefers-color-scheme:dark){html{background-color:var(--primary-background-color,#111);color:var(--primary-text-color,#e1e1e1)}}body{font-family:Roboto,Noto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;height:100vh;margin:0;padding:0}#ha-launch-screen{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}#ha-launch-screen svg{width:170px;flex-shrink:0}#ha-launch-screen .ha-launch-screen-spacer{flex:1}</style></head><body><div id="ha-launch-screen"><div class="ha-launch-screen-spacer"></div><svg version="1.1" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><rect fill="#41bdf5" width="200" height="200" ry="16.4"/><path fill="#fff" d="m38.416 165.29v-53.456h-13.901a3.7332 3.7332 0 0 1-2.662-6.3504l74.804-76.084c1.8068-1.8376 4.7612-1.8628 6.5992-0.056l0.048 0.048 39.04 39.518v-7.3188a3.1112 3.1112 0 0 1 3.1112-3.1112h12.964a3.1112 3.1112 0 0 1 3.1116 3.1112v26.855l16.627 17.047a3.7332 3.7332 0 0 1-2.6728 6.34h-13.954v53.456a3.1112 3.1112 0 0 1-3.1112 3.1112h-116.89a3.1112 3.1112 0 0 1-3.1112-3.1112zm82.556-65.304a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0176 5.996 6.0176c0.9256 0 1.802-0.2108 2.5848-0.5868l8.6072 8.6384v8.3672l-10.792 10.831v-7.936a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v11.947l-9.9932 10.029v-58.912l8.2076-8.2368a5.9544 5.9544 0 0 0 2.5848 0.5864c3.3116 0 5.996-2.694 5.996-6.0176 0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 0.9292 0.2096 1.8088 0.584 2.5944l-7.3792 7.406-7.3796-7.406a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 3.3236 2.6844 6.0176 5.996 6.0176 0.9256 0 1.802-0.2108 2.5848-0.5864l8.2072 8.2368v42.064l-14.39-14.442v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-11.192-11.232v-11.145a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v12.807l12.363 12.407h-7.108c-0.8232-2.3372-3.044-4.0116-5.6548-4.0116-3.3112 0-5.996 2.694-5.996 6.0172 0 3.3236 2.6848 6.0176 5.996 6.0176 2.6108 0 4.832-1.6744 5.6548-4.012h11.105l17.216 17.278v30.03l-9.1932-9.2264v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.996 2.694-5.996 6.0172 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-13.376-13.423a6.0116 6.0116 0 0 0 0.5844-2.5944c0-3.3232-2.684-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0172 5.996 6.0172c0.9256 0 1.8024-0.2104 2.5848-0.5864l13.376 13.424h-7.108c-0.8232-2.3372-3.044-4.012-5.6548-4.012-3.3112 0-5.996 2.6944-5.996 6.0176s2.6848 6.0172 5.996 6.0172c2.6108 0 4.8316-1.6744 5.6548-4.0116h11.105l11.192 11.232h5.6528l11.592-11.633h10.705c0.8232 2.3368 3.044 4.0112 5.6548 4.0112 3.3112 0 5.996-2.694 5.996-6.0172s-2.6848-6.0172-5.996-6.0172c-2.6108 0-4.8316 1.6744-5.6548 4.0116h-12.361l-10.764 10.802v-13.18l12.82-12.866h20.698c0.8232 2.3372 3.044 4.0116 5.6544 4.0116 3.3116 0 5.996-2.694 5.996-6.0172 0-3.3236-2.6844-6.0176-5.996-6.0176-2.6104 0-4.8312 1.6744-5.6544 4.012h-16.702l11.963-12.006v-10.029l8.6068-8.6384a5.9544 5.9544 0 0 0 2.5852 0.5868c3.3112 0 5.996-2.6944 5.996-6.0176s-2.6848-6.0172-5.996-6.0172-5.996 2.694-5.996 6.0172c0 0.9292 0.21 1.8088 0.5844 2.5944l-5.7804 5.8016v-18.367a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v18.366l-5.7808-5.8016zm-51.78 57.58c-1.3244 0-2.3984-1.0776-2.3984-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm17.588-18.052c-1.3248 0-2.3988-1.0776-2.3988-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm-20.786-2.808c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm-1.9988-20.058c-1.3244 0-2.398-1.0776-2.398-2.4072 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm49.964 2.808c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm27.181 18.453c-1.324 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-10.392 19.255c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm11.192-57.364c-1.3244 0-2.3984-1.078-2.3984-2.4072s1.074-2.4068 2.3984-2.4068 2.3984 1.0776 2.3984 2.4068-1.074 2.4072-2.3984 2.4072zm-13.191-15.645c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-15.989-9.628c-1.3244 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-25.582 0c-1.324 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-20.785 9.2268c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072s2.3984 1.0776 2.3984 2.4072c0 1.3292-1.074 2.4068-2.3984 2.4068zm15.189 14.843c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm33.976 1.2036c-1.324 0-2.398-1.078-2.398-2.4072s1.0736-2.4068 2.398-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4072-2.3984 2.4072z"/></svg><div id="ha-launch-screen-info-box" class="ha-launch-screen-spacer"></div></div><home-assistant></home-assistant><script>function _ls(e){var t=document.documentElement,n=t.insertBefore(document.createElement("script"),t.lastChild);return n.defer=!0,n.src=e,n}window.polymerSkipLoadingFontRoboto=!0,"customElements"in window&&"content"in document.createElement("template")||document.write("<script src='/static/polyfills/webcomponents-bundle.js'><\/script>");var isS11_12=/(?:.*(?:iPhone|iPad).*OS (?:11|12)_\d)|(?:.*Version\/(?:11|12)(?:\.\d+)*.*Safari\/)/.test(navigator.userAgent)</script><script>if(-1===navigator.userAgent.indexOf("Android")&&-1===navigator.userAgent.indexOf("CrOS")){function _pf(o,t){var n=document.createElement("link");n.rel="preload",n.as="font",n.type="font/woff2",n.href=o,n.crossOrigin="anonymous",document.head.appendChild(n)}_pf("/static/fonts/roboto/Roboto-Regular.woff2"),_pf("/static/fonts/roboto/Roboto-Medium.woff2")}</script><script crossorigin="use-credentials">window.globalThis||(window.globalThis=window),isS11_12||(import("/frontend_latest/core-hpNqcTVzWqI.js"),import("/frontend_latest/app-26IZhTwuAxk.js"),window.customPanelJS="/frontend_latest/custom-panel-X5yTL_rGmM4.js",window.latestJS=!0)</script><script></script><script>window.latestJS||(window.customPanelJS="/frontend_es5/custom-panel-7kF_XDyVc0Y.js",_ls("/frontend_es5/core-kQwhyYWUS0s.js"),_ls("/frontend_es5/app-NI6Q2j7JpPI.js"))</script><script>if (!window.latestJS) {}</script></body></html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-02T18:49:35.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "w3.org"
               ],
               "file" : [
                  "manifest.json"
               ],
               "hostname" : [
                  "www.w3.org"
               ],
               "url" : [
                  "http://www.w3.org/2000/svg"
               ]
            },
            "http" : {
               "bodymd5" : "fae0e8eae68e884c64686cc4e8889dba",
               "bodymmh3" : -818347864,
               "headermd5" : "189276425e4a6a6c7adb0c33241a94b3",
               "headermmh3" : 521700394,
               "title" : "Home Assistant"
            },
            "length" : 9346
         },
         "asn" : "AS9506",
         "city" : "Tampines New Town",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=utf-8\r\nContent-Length: 9174\r\nDate: Sat, 02 Nov 2024 18:49:35 GMT\r\nServer: Python/3.10 aiohttp/3.8.4\r\nConnection: close\r\n\r\n<!DOCTYPE html><html><head><title>Home Assistant</title><meta charset=\"utf-8\"><link rel=\"manifest\" href=\"/manifest.json\" crossorigin=\"use-credentials\"><link rel=\"icon\" href=\"/static/icons/favicon.ico\"><link rel=\"modulepreload\" href=\"/frontend_latest/core-hpNqcTVzWqI.js\" crossorigin=\"use-credentials\"><link rel=\"modulepreload\" href=\"/frontend_latest/app-26IZhTwuAxk.js\" crossorigin=\"use-credentials\"><link rel=\"mask-icon\" href=\"/static/icons/mask-icon.svg\" color=\"#03a9f4\"><link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/static/icons/favicon-apple-180x180.png\"><meta name=\"apple-itunes-app\" content=\"app-id=1099568401\"><meta name=\"apple-mobile-web-app-capable\" content=\"yes\"><meta name=\"apple-mobile-web-app-status-bar-style\" content=\"default\"><meta name=\"apple-mobile-web-app-title\" content=\"Home Assistant\"><meta name=\"msapplication-square70x70logo\" content=\"/static/icons/tile-win-70x70.png\"><meta name=\"msapplication-square150x150logo\" content=\"/static/icons/tile-win-150x150.png\"><meta name=\"msapplication-wide310x150logo\" content=\"/static/icons/tile-win-310x150.png\"><meta name=\"msapplication-square310x310logo\" content=\"/static/icons/tile-win-310x310.png\"><meta name=\"msapplication-TileColor\" content=\"#03a9f4ff\"><meta name=\"mobile-web-app-capable\" content=\"yes\"><meta name=\"referrer\" content=\"same-origin\"><meta name=\"theme-color\" content=\"#03A9F4\"><meta name=\"color-scheme\" content=\"dark light\"><meta name=\"viewport\" content=\"width=device-width,user-scalable=no,viewport-fit=cover,initial-scale=1\"><style>body{font-family:Roboto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;padding:0;height:100%}</style><style>html{background-color:var(--primary-background-color,#fafafa);color:var(--primary-text-color,#212121)}@media (prefers-color-scheme:dark){html{background-color:var(--primary-background-color,#111);color:var(--primary-text-color,#e1e1e1)}}body{font-family:Roboto,Noto,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;height:100vh;margin:0;padding:0}#ha-launch-screen{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}#ha-launch-screen svg{width:170px;flex-shrink:0}#ha-launch-screen .ha-launch-screen-spacer{flex:1}</style></head><body><div id=\"ha-launch-screen\"><div class=\"ha-launch-screen-spacer\"></div><svg version=\"1.1\" viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"#41bdf5\" width=\"200\" height=\"200\" ry=\"16.4\"/><path fill=\"#fff\" d=\"m38.416 165.29v-53.456h-13.901a3.7332 3.7332 0 0 1-2.662-6.3504l74.804-76.084c1.8068-1.8376 4.7612-1.8628 6.5992-0.056l0.048 0.048 39.04 39.518v-7.3188a3.1112 3.1112 0 0 1 3.1112-3.1112h12.964a3.1112 3.1112 0 0 1 3.1116 3.1112v26.855l16.627 17.047a3.7332 3.7332 0 0 1-2.6728 6.34h-13.954v53.456a3.1112 3.1112 0 0 1-3.1112 3.1112h-116.89a3.1112 3.1112 0 0 1-3.1112-3.1112zm82.556-65.304a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0176 5.996 6.0176c0.9256 0 1.802-0.2108 2.5848-0.5868l8.6072 8.6384v8.3672l-10.792 10.831v-7.936a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v11.947l-9.9932 10.029v-58.912l8.2076-8.2368a5.9544 5.9544 0 0 0 2.5848 0.5864c3.3116 0 5.996-2.694 5.996-6.0176 0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 0.9292 0.2096 1.8088 0.584 2.5944l-7.3792 7.406-7.3796-7.406a6.0116 6.0116 0 0 0 0.584-2.5944c0-3.3232-2.684-6.0172-5.9956-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172 0 3.3236 2.6844 6.0176 5.996 6.0176 0.9256 0 1.802-0.2108 2.5848-0.5864l8.2072 8.2368v42.064l-14.39-14.442v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-11.192-11.232v-11.145a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.6944-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v12.807l12.363 12.407h-7.108c-0.8232-2.3372-3.044-4.0116-5.6548-4.0116-3.3112 0-5.996 2.694-5.996 6.0172 0 3.3236 2.6848 6.0176 5.996 6.0176 2.6108 0 4.832-1.6744 5.6548-4.012h11.105l17.216 17.278v30.03l-9.1932-9.2264v-11.546a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3232-2.6844-6.0172-5.996-6.0172-3.3112 0-5.996 2.694-5.996 6.0172 0 2.62 1.6688 4.8488 3.9976 5.6748v7.5348l-13.376-13.423a6.0116 6.0116 0 0 0 0.5844-2.5944c0-3.3232-2.684-6.0172-5.996-6.0172-3.3112 0-5.9956 2.694-5.9956 6.0172s2.6844 6.0172 5.996 6.0172c0.9256 0 1.8024-0.2104 2.5848-0.5864l13.376 13.424h-7.108c-0.8232-2.3372-3.044-4.012-5.6548-4.012-3.3112 0-5.996 2.6944-5.996 6.0176s2.6848 6.0172 5.996 6.0172c2.6108 0 4.8316-1.6744 5.6548-4.0116h11.105l11.192 11.232h5.6528l11.592-11.633h10.705c0.8232 2.3368 3.044 4.0112 5.6548 4.0112 3.3112 0 5.996-2.694 5.996-6.0172s-2.6848-6.0172-5.996-6.0172c-2.6108 0-4.8316 1.6744-5.6548 4.0116h-12.361l-10.764 10.802v-13.18l12.82-12.866h20.698c0.8232 2.3372 3.044 4.0116 5.6544 4.0116 3.3116 0 5.996-2.694 5.996-6.0172 0-3.3236-2.6844-6.0176-5.996-6.0176-2.6104 0-4.8312 1.6744-5.6544 4.012h-16.702l11.963-12.006v-10.029l8.6068-8.6384a5.9544 5.9544 0 0 0 2.5852 0.5868c3.3112 0 5.996-2.6944 5.996-6.0176s-2.6848-6.0172-5.996-6.0172-5.996 2.694-5.996 6.0172c0 0.9292 0.21 1.8088 0.5844 2.5944l-5.7804 5.8016v-18.367a6.0184 6.0184 0 0 0 3.9972-5.6748c0-3.3236-2.6844-6.0176-5.996-6.0176-3.3112 0-5.996 2.694-5.996 6.0176 0 2.62 1.6688 4.8488 3.9976 5.6748v18.366l-5.7808-5.8016zm-51.78 57.58c-1.3244 0-2.3984-1.0776-2.3984-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm17.588-18.052c-1.3248 0-2.3988-1.0776-2.3988-2.4068s1.074-2.4068 2.3984-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4068-2.3984 2.4068zm-20.786-2.808c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm-1.9988-20.058c-1.3244 0-2.398-1.0776-2.398-2.4072 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm49.964 2.808c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm27.181 18.453c-1.324 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-10.392 19.255c-1.3248 0-2.3984-1.0776-2.3984-2.4068s1.0736-2.4068 2.3984-2.4068c1.3244 0 2.3984 1.0776 2.3984 2.4068s-1.074 2.4068-2.3984 2.4068zm11.192-57.364c-1.3244 0-2.3984-1.078-2.3984-2.4072s1.074-2.4068 2.3984-2.4068 2.3984 1.0776 2.3984 2.4068-1.074 2.4072-2.3984 2.4072zm-13.191-15.645c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm-15.989-9.628c-1.3244 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-25.582 0c-1.324 0-2.398-1.0772-2.398-2.4068 0-1.3292 1.0736-2.4068 2.398-2.4068 1.3248 0 2.3984 1.0776 2.3984 2.4068 0 1.3296-1.0736 2.4072-2.3984 2.4072zm-20.785 9.2268c-1.3244 0-2.3984-1.0776-2.3984-2.4068 0-1.3296 1.074-2.4072 2.3984-2.4072s2.3984 1.0776 2.3984 2.4072c0 1.3292-1.074 2.4068-2.3984 2.4068zm15.189 14.843c-1.3244 0-2.398-1.0776-2.398-2.4068 0-1.3296 1.0736-2.4072 2.398-2.4072 1.3248 0 2.3984 1.0776 2.3984 2.4072 0 1.3292-1.0736 2.4068-2.3984 2.4068zm33.976 1.2036c-1.324 0-2.398-1.078-2.398-2.4072s1.0736-2.4068 2.398-2.4068c1.3248 0 2.3984 1.0776 2.3984 2.4068s-1.0736 2.4072-2.3984 2.4072z\"/></svg><div id=\"ha-launch-screen-info-box\" class=\"ha-launch-screen-spacer\"></div></div><home-assistant></home-assistant><script>function _ls(e){var t=document.documentElement,n=t.insertBefore(document.createElement(\"script\"),t.lastChild);return n.defer=!0,n.src=e,n}window.polymerSkipLoadingFontRoboto=!0,\"customElements\"in window&&\"content\"in document.createElement(\"template\")||document.write(\"<script src='/static/polyfills/webcomponents-bundle.js'><\\/script>\");var isS11_12=/(?:.*(?:iPhone|iPad).*OS (?:11|12)_\\d)|(?:.*Version\\/(?:11|12)(?:\\.\\d+)*.*Safari\\/)/.test(navigator.userAgent)</script><script>if(-1===navigator.userAgent.indexOf(\"Android\")&&-1===navigator.userAgent.indexOf(\"CrOS\")){function _pf(o,t){var n=document.createElement(\"link\");n.rel=\"preload\",n.as=\"font\",n.type=\"font/woff2\",n.href=o,n.crossOrigin=\"anonymous\",document.head.appendChild(n)}_pf(\"/static/fonts/roboto/Roboto-Regular.woff2\"),_pf(\"/static/fonts/roboto/Roboto-Medium.woff2\")}</script><script crossorigin=\"use-credentials\">window.globalThis||(window.globalThis=window),isS11_12||(import(\"/frontend_latest/core-hpNqcTVzWqI.js\"),import(\"/frontend_latest/app-26IZhTwuAxk.js\"),window.customPanelJS=\"/frontend_latest/custom-panel-X5yTL_rGmM4.js\",window.latestJS=!0)</script><script></script><script>window.latestJS||(window.customPanelJS=\"/frontend_es5/custom-panel-7kF_XDyVc0Y.js\",_ls(\"/frontend_es5/core-kQwhyYWUS0s.js\"),_ls(\"/frontend_es5/app-NI6Q2j7JpPI.js\"))</script><script>if (!window.latestJS) {}</script></body></html>",
         "datamd5" : "cca342594e92676e69fb7cc0cd5e6a35",
         "datammh3" : -1135114610,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-79-96"
         ],
         "hostname" : [
            "bb219-74-79-96.singnet.com.sg"
         ],
         "ip" : "219.74.79.96",
         "ipv6" : "false",
         "latitude" : "1.3579",
         "location" : "1.3579,103.9429",
         "longitude" : "103.9429",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-79-96.singnet.com.sg"
         ],
         "seen_date" : "2024-11-02",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 220.255.248.205:3260 (tcp/http) - last seen on 2024-11-02 at 12:20:53 UTC

    • IP
      220.255.248.205
      Network
      220.255.128.0/17
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://220.255.248.205:3260/ 200

      Reverse DNS
      bb220-255-248-205.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      HTTP Component(s)
      jQuery jQuery 1.10.2
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      53f80d777e475e2bdeb8b59f90b90831
      HTTP Header MD5
      aba654277d72afb8c8f30185ef490f81
      HTTP Body MD5
      85d274008c028df152663b291e2e3d7f
    • HTTP/1.1 200 OK
      Date: Sat, 02 Nov 2024 12:21:45 GMT
      Last-Modified: Wed, 04 Jul 2018 08:17:49 GMT
      Etag: "5b3c82ad.7993"
      Content-Type: text/html
      Content-Length: 7993
      Connection: close
      Accept-Ranges: bytes
      Content-Security-Policy: img-src 'self' data:; default-src 'self' 'unsafe-inline' 'unsafe-eval'
      X-Content-Type-Options: nosniff
      X-Frame-Options: SAMEORIGIN
      x-xss-protection: 1; mode=block
      
      <!DOCTYPE html>
      <html>
          <head>
              <script>
                  /**
                   * 防止浏览器缓存导致登录页的js文件加载失败
                   * 如果url中没有参数则为url上加上一个随机数重新加载,需要过滤cloud方式登录
                   * @return {[type]} [description]
                   */
                  (function(){
                      var href = window.location.href;
                      var ran = Math.round(Math.random() * 1000000000000);
                      if (-1 === href.indexOf('?')){
                          window.location.href = href + '?_=' + ran;
                      } else if (-1 === href.indexOf('_=') && -1 === href.indexOf('/?')){
                          window.location.href = href + '&_=' + ran;
                      }
                  })();
              </script>
              <meta http-equiv="X-UA-Compatible" content="edge" />
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <meta content="favicon.ico" itemprop="image" />
              <link rel="stylesheet" href="/style/index_3050207.css" />
              <link rel="stylesheet" href="style/color.css" />
              <title data-text="Text.VideoManageSystem"></title>
          </head>
          <body id="login_body" class="login_min_height_width">
              <div class="pluginTip" id="pluginTip">
                  <div class="pluginVersionTip" id="pluginVersionTip" data-title="Text.TipDbClickClose3"></div>
              </div>
              <div class="login_fullPage login_min_height_width">
                  <div class="login_placeHolder">
                      <div class="login_minHeight"></div>
                  </div>
                  <div class="login_form">
                      <div class="login_header">
                          <div class="logo" style="background-image: url(/images/logo.png);"></div>
                      </div>
                      <form action="cgi-bin/main-cgi" method="post" name="loginForm" id="loginForm">
                          <table class="login_table">
                              <tr class="login_line">
                                  <td id="ErrorMsg" class="login_msg" colspan="2">
                                      <span id="idErrorMsg"></span>
                                      <span id="idErrorInfo"></span>
                                  </td>
                              </tr>
                              <tr class="login_line hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='lLan' data-text="Text.Lang"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <select class="in_select" name="lLan" id="language">
                                          <!-- <option value="0" data-text="Text.SimplifyChinese"></option> -->
                                          <!-- <option value="1">简体中文</option> -->
                                          <!-- <option value="2">English</option> -->
                                      </select>
                                  </td>
                              </tr>
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='szUserName' data-text="Text.UserName"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <input type="text" class="in_text" name="szUserName" id="szUserName" autocomplete="off" />
                                  </td>
                              </tr>
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left">
                                      <div class="login_label_div">
                                          <label class="login_label" for='szUserLoginCert' data-text="Text.Passwd"></label>
                                      </div>
                                  </td>
                                  <td class="login_right">
                                      <input type=password class="in_text nor-submit-pwd" id="szUserPasswdSrc" maxlength="20" value="" autocomplete="off" />
                                      <input type="hidden" name="szUserLoginCert" id="szUserLoginCert" />
                                      <!--
                                      <input type="hidden" name="szUserLoginCertEx" id="szUserLoginCertEx" />
                                      -->
                                      <input type="hidden" name="nonce" id="nonce" />
                                      <input type="hidden" name="szServIpAddr" id="szServIpAddr" />
                                  </td>
                              </tr>
                              <!-- <tr class="login_line">
                                  <td class="login_left">
                                  </td>
                                  <td class="login_right login_remPwd">
                                      <input type="checkbox" name="recordPassword" id="recordPassword" class="login_autoLogin" />
                                      <label for='autoLogin' class="login_autoLoginLabel">自动登录</label>
                                  </td>
                              </tr> -->
                              <tr class="login_line all_login_hidden">
                                  <td class="login_left"></td>
                                  <td class="login_right">
                                      <div id="wanlanid" class="wanlan">
                                          <input id="lan" name="wanlanswitch" type="radio" checked="checked" value="1" />
                                          <label data-text="Text.LAN" for="lan" class="config-label-right-swich-lable">
                                          </label>
                                          <input id="wan" name="wanlanswitch" type="radio" value="0" />
                                          <label data-text="Text.WAN" for="wan" class="config-label-right-swich-lable">
                                          </label>
                                      </div>
                                      <a name="login" type="submit" id="login" class="login-button noMarginLeft">
                                          <span class="custom-btn-left"></span><span class="custom-btn-center ellipsis width70" data-text="Text.Login" data-title="Text.Login"></span><span class="custom-btn-right"></span>
                                      </a>
                                      <a name="reset" type="submit" id="reset" class="login-button">
                                          <span class="custom-btn-left"></span><span class="custom-btn-center ellipsis width70" data-text="Text.Reset" data-title="Text.Reset"></span><span class="custom-btn-right"></span>
                                      </a>
                                  </td>
                              </tr>
                          </table>
      
                      </form>
                      <div class="login_tips">
                          <p data-text="Text.SuggestResolution"></p>
                      </div>
                      <div id="insecurityPasswd" class="login_hidden">
                      </div>
                  </div>
              </div>
              <div style="width:0;height:0;" id="loginPlugs"></div>
          </body>
          <!--[if IE & (lt IE 9)]>
          <script src="/script/plugins/json2_f4e6ebd.js"></script>
          <![endif]-->
          <script src="/script/plugins/MD5_f913ed0.js"></script>
          <script src="/script/plugins/jquery-1.10.2.min_954ab71.js"></script>
          <script src="/script/plugins/jquery.xml2json_0bb5881.js"></script>
          <script src="/script/plugins/base64.min_ae031ff.js"></script>
          <script src="/script/common_378e5b5.js"></script>
          <script src="/script/index_20336a1.js"></script>
          <script src="/script/static_1a0f49b.js"></script>
          <script src="/script/plugins/jquery.cookie_a5283b2.js"></script>
      </html>
      
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-02T12:20:53.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "85d274008c028df152663b291e2e3d7f",
               "bodymmh3" : 532341275,
               "component" : [
                  {
                     "product" : "jQuery",
                     "productvendor" : "jQuery",
                     "productversion" : "1.10.2"
                  }
               ],
               "header" : [
                  {
                     "name" : "Last-Modified",
                     "value" : "Wed, 04 Jul 2018 08:17:49 GMT"
                  },
                  {
                     "name" : "Etag",
                     "value" : "5b3c82ad.7993"
                  }
               ],
               "headermd5" : "aba654277d72afb8c8f30185ef490f81",
               "headermmh3" : 558298413
            },
            "length" : 8398
         },
         "asn" : "AS9506",
         "city" : "Woodlands",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nDate: Sat, 02 Nov 2024 12:21:45 GMT\r\nLast-Modified: Wed, 04 Jul 2018 08:17:49 GMT\r\nEtag: \"5b3c82ad.7993\"\r\nContent-Type: text/html\r\nContent-Length: 7993\r\nConnection: close\r\nAccept-Ranges: bytes\r\nContent-Security-Policy: img-src 'self' data:; default-src 'self' 'unsafe-inline' 'unsafe-eval'\r\nX-Content-Type-Options: nosniff\r\nX-Frame-Options: SAMEORIGIN\r\nx-xss-protection: 1; mode=block\r\n\r\n<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <script>\r\n            /**\r\n             * \u9632\u6b62\u6d4f\u89c8\u5668\u7f13\u5b58\u5bfc\u81f4\u767b\u5f55\u9875\u7684js\u6587\u4ef6\u52a0\u8f7d\u5931\u8d25\r\n             * \u5982\u679curl\u4e2d\u6ca1\u6709\u53c2\u6570\u5219\u4e3aurl\u4e0a\u52a0\u4e0a\u4e00\u4e2a\u968f\u673a\u6570\u91cd\u65b0\u52a0\u8f7d\uff0c\u9700\u8981\u8fc7\u6ee4cloud\u65b9\u5f0f\u767b\u5f55\r\n             * @return {[type]} [description]\r\n             */\r\n            (function(){\r\n                var href = window.location.href;\r\n                var ran = Math.round(Math.random() * 1000000000000);\r\n                if (-1 === href.indexOf('?')){\r\n                    window.location.href = href + '?_=' + ran;\r\n                } else if (-1 === href.indexOf('_=') && -1 === href.indexOf('/?')){\r\n                    window.location.href = href + '&_=' + ran;\r\n                }\r\n            })();\r\n        </script>\r\n        <meta http-equiv=\"X-UA-Compatible\" content=\"edge\" />\r\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n        <meta content=\"favicon.ico\" itemprop=\"image\" />\r\n        <link rel=\"stylesheet\" href=\"/style/index_3050207.css\" />\r\n        <link rel=\"stylesheet\" href=\"style/color.css\" />\r\n        <title data-text=\"Text.VideoManageSystem\"></title>\r\n    </head>\r\n    <body id=\"login_body\" class=\"login_min_height_width\">\r\n        <div class=\"pluginTip\" id=\"pluginTip\">\r\n            <div class=\"pluginVersionTip\" id=\"pluginVersionTip\" data-title=\"Text.TipDbClickClose3\"></div>\r\n        </div>\r\n        <div class=\"login_fullPage login_min_height_width\">\r\n            <div class=\"login_placeHolder\">\r\n                <div class=\"login_minHeight\"></div>\r\n            </div>\r\n            <div class=\"login_form\">\r\n                <div class=\"login_header\">\r\n                    <div class=\"logo\" style=\"background-image: url(/images/logo.png);\"></div>\r\n                </div>\r\n                <form action=\"cgi-bin/main-cgi\" method=\"post\" name=\"loginForm\" id=\"loginForm\">\r\n                    <table class=\"login_table\">\r\n                        <tr class=\"login_line\">\r\n                            <td id=\"ErrorMsg\" class=\"login_msg\" colspan=\"2\">\r\n                                <span id=\"idErrorMsg\"></span>\r\n                                <span id=\"idErrorInfo\"></span>\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='lLan' data-text=\"Text.Lang\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <select class=\"in_select\" name=\"lLan\" id=\"language\">\r\n                                    <!-- <option value=\"0\" data-text=\"Text.SimplifyChinese\"></option> -->\r\n                                    <!-- <option value=\"1\">\u7b80\u4f53\u4e2d\u6587</option> -->\r\n                                    <!-- <option value=\"2\">English</option> -->\r\n                                </select>\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='szUserName' data-text=\"Text.UserName\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <input type=\"text\" class=\"in_text\" name=\"szUserName\" id=\"szUserName\" autocomplete=\"off\" />\r\n                            </td>\r\n                        </tr>\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\">\r\n                                <div class=\"login_label_div\">\r\n                                    <label class=\"login_label\" for='szUserLoginCert' data-text=\"Text.Passwd\"></label>\r\n                                </div>\r\n                            </td>\r\n                            <td class=\"login_right\">\r\n                                <input type=password class=\"in_text nor-submit-pwd\" id=\"szUserPasswdSrc\" maxlength=\"20\" value=\"\" autocomplete=\"off\" />\r\n                                <input type=\"hidden\" name=\"szUserLoginCert\" id=\"szUserLoginCert\" />\r\n                                <!--\r\n                                <input type=\"hidden\" name=\"szUserLoginCertEx\" id=\"szUserLoginCertEx\" />\r\n                                -->\r\n                                <input type=\"hidden\" name=\"nonce\" id=\"nonce\" />\r\n                                <input type=\"hidden\" name=\"szServIpAddr\" id=\"szServIpAddr\" />\r\n                            </td>\r\n                        </tr>\r\n                        <!-- <tr class=\"login_line\">\r\n                            <td class=\"login_left\">\r\n                            </td>\r\n                            <td class=\"login_right login_remPwd\">\r\n                                <input type=\"checkbox\" name=\"recordPassword\" id=\"recordPassword\" class=\"login_autoLogin\" />\r\n                                <label for='autoLogin' class=\"login_autoLoginLabel\">\u81ea\u52a8\u767b\u5f55</label>\r\n                            </td>\r\n                        </tr> -->\r\n                        <tr class=\"login_line all_login_hidden\">\r\n                            <td class=\"login_left\"></td>\r\n                            <td class=\"login_right\">\r\n                                <div id=\"wanlanid\" class=\"wanlan\">\r\n                                    <input id=\"lan\" name=\"wanlanswitch\" type=\"radio\" checked=\"checked\" value=\"1\" />\r\n                                    <label data-text=\"Text.LAN\" for=\"lan\" class=\"config-label-right-swich-lable\">\r\n                                    </label>\r\n                                    <input id=\"wan\" name=\"wanlanswitch\" type=\"radio\" value=\"0\" />\r\n                                    <label data-text=\"Text.WAN\" for=\"wan\" class=\"config-label-right-swich-lable\">\r\n                                    </label>\r\n                                </div>\r\n                                <a name=\"login\" type=\"submit\" id=\"login\" class=\"login-button noMarginLeft\">\r\n                                    <span class=\"custom-btn-left\"></span><span class=\"custom-btn-center ellipsis width70\" data-text=\"Text.Login\" data-title=\"Text.Login\"></span><span class=\"custom-btn-right\"></span>\r\n                                </a>\r\n                                <a name=\"reset\" type=\"submit\" id=\"reset\" class=\"login-button\">\r\n                                    <span class=\"custom-btn-left\"></span><span class=\"custom-btn-center ellipsis width70\" data-text=\"Text.Reset\" data-title=\"Text.Reset\"></span><span class=\"custom-btn-right\"></span>\r\n                                </a>\r\n                            </td>\r\n                        </tr>\r\n                    </table>\r\n\r\n                </form>\r\n                <div class=\"login_tips\">\r\n                    <p data-text=\"Text.SuggestResolution\"></p>\r\n                </div>\r\n                <div id=\"insecurityPasswd\" class=\"login_hidden\">\r\n                </div>\r\n            </div>\r\n        </div>\r\n        <div style=\"width:0;height:0;\" id=\"loginPlugs\"></div>\r\n    </body>\r\n    <!--[if IE & (lt IE 9)]>\r\n    <script src=\"/script/plugins/json2_f4e6ebd.js\"></script>\r\n    <![endif]-->\r\n    <script src=\"/script/plugins/MD5_f913ed0.js\"></script>\r\n    <script src=\"/script/plugins/jquery-1.10.2.min_954ab71.js\"></script>\r\n    <script src=\"/script/plugins/jquery.xml2json_0bb5881.js\"></script>\r\n    <script src=\"/script/plugins/base64.min_ae031ff.js\"></script>\r\n    <script src=\"/script/common_378e5b5.js\"></script>\r\n    <script src=\"/script/index_20336a1.js\"></script>\r\n    <script src=\"/script/static_1a0f49b.js\"></script>\r\n    <script src=\"/script/plugins/jquery.cookie_a5283b2.js\"></script>\r\n</html>\r\n\r\n",
         "datamd5" : "53f80d777e475e2bdeb8b59f90b90831",
         "datammh3" : -1438186925,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "220.255.128.0/17"
         },
         "host" : [
            "bb220-255-248-205"
         ],
         "hostname" : [
            "bb220-255-248-205.singnet.com.sg"
         ],
         "ip" : "220.255.248.205",
         "ipv6" : "false",
         "latitude" : "1.4223",
         "location" : "1.4223,103.7825",
         "longitude" : "103.7825",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb220-255-248-205.singnet.com.sg"
         ],
         "seen_date" : "2024-11-02",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "220.255.128.0/17",
         "tag" : "<enterprise field>: tag",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 220.255.190.184:3260 (tcp/http) - last seen on 2024-11-01 at 06:04:16 UTC

    • IP
      220.255.190.184
      Network
      220.255.128.0/17
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://220.255.190.184:3260/ 200

      Reverse DNS
      bb220-255-190-184.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      71da636c7a8a66e6a99d1f183cc45528
      HTTP Header MD5
      39a76a08713988e0b8112063391db3e8
      HTTP Body MD5
      94fadb1244584e3380be18ea111c083f
    • HTTP/1.0 200 OK
      Server: alphapd/2.1.8
      Date: Fri Nov  1 14:04:16 2024
      Pragma: no-cache
      Cache-Control: no-cache
      Content-type: text/html
      Content-length: 224
      
      <html><body><font size=5 color=red><br><p>The browser you are using may have difficulty receiving images and video. If you experience any issues viewing this page, we suggest using Internet Explorer.</p></font></body></html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-01T06:04:16.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "94fadb1244584e3380be18ea111c083f",
               "bodymmh3" : 1823088568,
               "headermd5" : "39a76a08713988e0b8112063391db3e8",
               "headermmh3" : -542081376
            },
            "length" : 389
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.0 200 OK\r\nServer: alphapd/2.1.8\r\nDate: Fri Nov  1 14:04:16 2024\r\nPragma: no-cache\r\nCache-Control: no-cache\r\nContent-type: text/html\r\nContent-length: 224\r\n\r\n<html><body><font size=5 color=red><br><p>The browser you are using may have difficulty receiving images and video. If you experience any issues viewing this page, we suggest using Internet Explorer.</p></font></body></html>\r\n",
         "datamd5" : "71da636c7a8a66e6a99d1f183cc45528",
         "datammh3" : -1458262977,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "220.255.128.0/17"
         },
         "host" : [
            "bb220-255-190-184"
         ],
         "hostname" : [
            "bb220-255-190-184.singnet.com.sg"
         ],
         "ip" : "220.255.190.184",
         "ipv6" : "false",
         "latitude" : "1.3110",
         "location" : "1.3110,103.8500",
         "longitude" : "103.8500",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.0",
         "reason" : "OK",
         "reverse" : [
            "bb220-255-190-184.singnet.com.sg"
         ],
         "seen_date" : "2024-11-01",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "220.255.128.0/17",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.156.31:3260 (tcp/http) - last seen on 2024-10-28 at 06:38:29 UTC

    • IP
      219.74.156.31
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.156.31:3260/ 200

      HTTP Title
      WebViewer
      Reverse DNS
      bb219-74-156-31.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      Product
      lighttpd lighttpd 1.4.32
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      647101318eafb6ddd7ff47360c5409c4
      HTTP Header MD5
      25fddd8ba30b2cf5c64dc2249a4b2317
      HTTP Body MD5
      e17be321cc44bdbd68b3f66ed22ef735
    • HTTP/1.1 200 OK
      Content-Type: text/html
      Accept-Ranges: bytes
      ETag: "1171554110"
      Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT
      Content-Length: 5040
      Connection: close
      Date: Mon, 28 Oct 2024 06:38:28 GMT
      Server: lighttpd/1.4.32
      
      <html>
      	<head>
      		<script type="text/javascript" src="script.js"></script>
      		<script language="JavaScript" type="text/JavaScript">
      			function do_submit() {
      				//login.action = "./webviewer.php" ;
      				if (!document.login.USER_NAME.value) {
      					alert("User ID is missing!");
      					document.login.USER_NAME.focus();
      					return;
      				}
      				if (!document.login.USER_PASSWD.value) {
      					alert("Password is missing!");
      					document.login.USER_PASSWD.focus();
      					return;
      				}
      
      				var saveid;
      				if (document.login.SAVE_ID.checked) {
      					saveid = document.login.USER_NAME.value;
      					SetCookie2('saveid', saveid);
      				} else {
      					SetCookie2('saveid', "");
      				}
      
      				document.location = "./webviewer.htm";
      			
      				SetCookie('user', document.login.USER_NAME.value);
      				SetCookie('pass', document.login.USER_PASSWD.value);
      			}
      
      			function keyDown() {
      				key = event.keyCode;
      				if (key == 13)
      					do_submit();
      			}
      
      			function LoadSavedID() {
      				var user = GetCookie('saveid');
      				if (user) {
      					document.login.USER_NAME.value = user;
      					document.login.USER_PASSWD.focus();
      					document.login.SAVE_ID.checked = true;
      				}
      			}
      
      		</script>
      		<title>WebViewer</title>
      	</head>
      
      	<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" OnLoad="preload_img(false, 'images/btn_login_red.gif', 'images/btn_reset_red.gif'); placeFocus();na_preload_img(false, 'img/login_btn2.gif', 'img/login_btn4.gif'); LoadSavedID();">
      		<form name="login" onSubmit="return false" >
      			<table border="0" cellpadding="0" cellspacing="0" width="682">
      				<tr>
      					<td width="680" height="35">
      					<p>&nbsp; </p>
      					<span> <font face="Arial" size="5">ActiveX viewer for internet Explorer 7.0 or later. </font> </span>
      					</td>
      				</tr>
      				<tr>
      				</tr>
      					<td width="680">
      					<p align="right"><img src="img/login_title.gif" width="134" height="34" border="0">
      					</p></td>
      				</tr>
      				<tr>
      					<td width="680" height="89" >
      					<table border="0" cellpadding="0" cellspacing="0" width="682" background="img/login_body.gif" height="296">
      						<tr>
      							<td width="283" height="137">&nbsp;</td>
      							<td width="399" height="137" align="left" valign="bottom">
      							<p>
      								<input type="text" name="USER_NAME" maxlength="15" size="25" class="login_box">
      								<input type="checkbox" name="SAVE_ID" />
      								<span style="font-size:9pt;font-family:Arial">Save ID</span>
      							</p></td>
      						</tr>
      						<tr>
      							<td width="283" height="30">&nbsp;</td>
      							<td width="399" height="30" align="left" valign="bottom">
      							<p>
      								<input type="password" name="USER_PASSWD" maxlength="15" size="27"  class="login_box" onKeyDown="keyDown();">
      							</p></td>
      						</tr>
      						<tr>
      							<td width="283" height="30">&nbsp;</td>
      							<td width="399" height="120" valign="top">&nbsp; <span style="font-size:9pt;font-family:Arial;color:white">
      								<p>&nbsp;</p>
      								<p>&nbsp;</p>
      							</td>
      						</tr>
      					</table>
      					</td>
      				</tr>
      				<tr>
      					<td width="680">
      					<table border="0" cellpadding="0" cellspacing="0" width="681">
      						<tr>
      							<td width="681" colspan="3" height="5"></td>
      						</tr>
      						<tr>
      							<td width="546">&nbsp;</td>
      							<td width="65"><a href="javascript:do_submit();" OnMouseOut="na_restore_img_src('image1', 'document')" OnMouseOver="na_change_img_src('image1', 'document', 'img/login_btn2.gif', true)"><img border="0" src="img/login_btn1.gif" width="68" height="19" name="image1"></a></td>
      							<td width="70"><a href="javascript:document.login.reset();" OnMouseOut="na_restore_img_src('image2', 'document')" OnMouseOver="na_change_img_src('image2', 'document', 'img/login_btn4.gif', true)"><img border="0" src="img/login_btn3.gif" width="68" height="19" name="image2"></a></td>
      						</tr>
      					</table></td>
      				</tr>
      				<tr>
      					<td width="680">
      					</td>
      				</tr>
      				<tr>
      					<td width="680" height="35">
      					<br/>
      					<span> <font face="Arial" size="5">Windows Service Pack for Webviewer </font> </span>
      					<br/>
      					<span style="font-family:Arial;color=#aaaaaa">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Download </span><a href="http://www.webgateinc.com/webviewer/vcredist_x86.exe">Microsoft Service Pack</a> 
      					<br/>
      					<br/>
      					<span> <font face="Arial" size="5">Java viewer for Mac/Windows, Java runtime 1.6 or later. </font> </span>
      					<br/>
      					<span style="font-family:Arial;color=#aaaaaa">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- To download the latest Java runtime, please visit </span><a href="http://www.java.com">http://www.java.com</a>
      					<br/>
      					<span style="font-family:Arial;color=#aaaaaa">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Download </span><a href="./JViewer.zip">JViewer.zip</a>
      					</td>
      				</tr>
      				<tr>
      					<td width="100%" height="15"></td>
      				</tr>
      			</table>
      			<p></p>
      
      		</form>
      	</body>
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-10-28T06:38:29.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "java.com",
                  "webgateinc.com"
               ],
               "file" : [
                  "jviewer.zip",
                  "webviewer.php",
                  "vcredist_x86.exe"
               ],
               "hostname" : [
                  "www.java.com",
                  "www.webgateinc.com"
               ],
               "url" : [
                  "http://www.java.com",
                  "http://www.webgateinc.com/webviewer/vcredist_x86.exe"
               ]
            },
            "http" : {
               "bodymd5" : "e17be321cc44bdbd68b3f66ed22ef735",
               "bodymmh3" : 2014367531,
               "header" : [
                  {
                     "name" : "ETag",
                     "value" : 1171554110
                  },
                  {
                     "name" : "Last-Modified",
                     "value" : "Thu, 01 Jan 1970 00:00:00 GMT"
                  }
               ],
               "headermd5" : "25fddd8ba30b2cf5c64dc2249a4b2317",
               "headermmh3" : -204136706,
               "title" : "WebViewer"
            },
            "length" : 5275
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\nAccept-Ranges: bytes\r\nETag: \"1171554110\"\r\nLast-Modified: Thu, 01 Jan 1970 00:00:00 GMT\r\nContent-Length: 5040\r\nConnection: close\r\nDate: Mon, 28 Oct 2024 06:38:28 GMT\r\nServer: lighttpd/1.4.32\r\n\r\n<html>\r\n\t<head>\r\n\t\t<script type=\"text/javascript\" src=\"script.js\"></script>\r\n\t\t<script language=\"JavaScript\" type=\"text/JavaScript\">\r\n\t\t\tfunction do_submit() {\r\n\t\t\t\t//login.action = \"./webviewer.php\" ;\r\n\t\t\t\tif (!document.login.USER_NAME.value) {\r\n\t\t\t\t\talert(\"User ID is missing!\");\r\n\t\t\t\t\tdocument.login.USER_NAME.focus();\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\t\t\t\tif (!document.login.USER_PASSWD.value) {\r\n\t\t\t\t\talert(\"Password is missing!\");\r\n\t\t\t\t\tdocument.login.USER_PASSWD.focus();\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar saveid;\r\n\t\t\t\tif (document.login.SAVE_ID.checked) {\r\n\t\t\t\t\tsaveid = document.login.USER_NAME.value;\r\n\t\t\t\t\tSetCookie2('saveid', saveid);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tSetCookie2('saveid', \"\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\tdocument.location = \"./webviewer.htm\";\r\n\t\t\t\r\n\t\t\t\tSetCookie('user', document.login.USER_NAME.value);\r\n\t\t\t\tSetCookie('pass', document.login.USER_PASSWD.value);\r\n\t\t\t}\r\n\r\n\t\t\tfunction keyDown() {\r\n\t\t\t\tkey = event.keyCode;\r\n\t\t\t\tif (key == 13)\r\n\t\t\t\t\tdo_submit();\r\n\t\t\t}\r\n\r\n\t\t\tfunction LoadSavedID() {\r\n\t\t\t\tvar user = GetCookie('saveid');\r\n\t\t\t\tif (user) {\r\n\t\t\t\t\tdocument.login.USER_NAME.value = user;\r\n\t\t\t\t\tdocument.login.USER_PASSWD.focus();\r\n\t\t\t\t\tdocument.login.SAVE_ID.checked = true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t</script>\r\n\t\t<title>WebViewer</title>\r\n\t</head>\r\n\r\n\t<body bgcolor=\"white\" text=\"black\" link=\"blue\" vlink=\"purple\" alink=\"red\" leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" OnLoad=\"preload_img(false, 'images/btn_login_red.gif', 'images/btn_reset_red.gif'); placeFocus();na_preload_img(false, 'img/login_btn2.gif', 'img/login_btn4.gif'); LoadSavedID();\">\r\n\t\t<form name=\"login\" onSubmit=\"return false\" >\r\n\t\t\t<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"682\">\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"680\" height=\"35\">\r\n\t\t\t\t\t<p>&nbsp; </p>\r\n\t\t\t\t\t<span> <font face=\"Arial\" size=\"5\">ActiveX viewer for internet Explorer 7.0 or later. </font> </span>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t</tr>\r\n\t\t\t\t\t<td width=\"680\">\r\n\t\t\t\t\t<p align=\"right\"><img src=\"img/login_title.gif\" width=\"134\" height=\"34\" border=\"0\">\r\n\t\t\t\t\t</p></td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"680\" height=\"89\" >\r\n\t\t\t\t\t<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"682\" background=\"img/login_body.gif\" height=\"296\">\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td width=\"283\" height=\"137\">&nbsp;</td>\r\n\t\t\t\t\t\t\t<td width=\"399\" height=\"137\" align=\"left\" valign=\"bottom\">\r\n\t\t\t\t\t\t\t<p>\r\n\t\t\t\t\t\t\t\t<input type=\"text\" name=\"USER_NAME\" maxlength=\"15\" size=\"25\" class=\"login_box\">\r\n\t\t\t\t\t\t\t\t<input type=\"checkbox\" name=\"SAVE_ID\" />\r\n\t\t\t\t\t\t\t\t<span style=\"font-size:9pt;font-family:Arial\">Save ID</span>\r\n\t\t\t\t\t\t\t</p></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td width=\"283\" height=\"30\">&nbsp;</td>\r\n\t\t\t\t\t\t\t<td width=\"399\" height=\"30\" align=\"left\" valign=\"bottom\">\r\n\t\t\t\t\t\t\t<p>\r\n\t\t\t\t\t\t\t\t<input type=\"password\" name=\"USER_PASSWD\" maxlength=\"15\" size=\"27\"  class=\"login_box\" onKeyDown=\"keyDown();\">\r\n\t\t\t\t\t\t\t</p></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td width=\"283\" height=\"30\">&nbsp;</td>\r\n\t\t\t\t\t\t\t<td width=\"399\" height=\"120\" valign=\"top\">&nbsp; <span style=\"font-size:9pt;font-family:Arial;color:white\">\r\n\t\t\t\t\t\t\t\t<p>&nbsp;</p>\r\n\t\t\t\t\t\t\t\t<p>&nbsp;</p>\r\n\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t</table>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"680\">\r\n\t\t\t\t\t<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"681\">\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td width=\"681\" colspan=\"3\" height=\"5\"></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td width=\"546\">&nbsp;</td>\r\n\t\t\t\t\t\t\t<td width=\"65\"><a href=\"javascript:do_submit();\" OnMouseOut=\"na_restore_img_src('image1', 'document')\" OnMouseOver=\"na_change_img_src('image1', 'document', 'img/login_btn2.gif', true)\"><img border=\"0\" src=\"img/login_btn1.gif\" width=\"68\" height=\"19\" name=\"image1\"></a></td>\r\n\t\t\t\t\t\t\t<td width=\"70\"><a href=\"javascript:document.login.reset();\" OnMouseOut=\"na_restore_img_src('image2', 'document')\" OnMouseOver=\"na_change_img_src('image2', 'document', 'img/login_btn4.gif', true)\"><img border=\"0\" src=\"img/login_btn3.gif\" width=\"68\" height=\"19\" name=\"image2\"></a></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t</table></td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"680\">\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"680\" height=\"35\">\r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<span> <font face=\"Arial\" size=\"5\">Windows Service Pack for Webviewer </font> </span>\r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<span style=\"font-family:Arial;color=#aaaaaa\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Download </span><a href=\"http://www.webgateinc.com/webviewer/vcredist_x86.exe\">Microsoft Service Pack</a> \r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<span> <font face=\"Arial\" size=\"5\">Java viewer for Mac/Windows, Java runtime 1.6 or later. </font> </span>\r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<span style=\"font-family:Arial;color=#aaaaaa\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- To download the latest Java runtime, please visit </span><a href=\"http://www.java.com\">http://www.java.com</a>\r\n\t\t\t\t\t<br/>\r\n\t\t\t\t\t<span style=\"font-family:Arial;color=#aaaaaa\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Download </span><a href=\"./JViewer.zip\">JViewer.zip</a>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"100%\" height=\"15\"></td>\r\n\t\t\t\t</tr>\r\n\t\t\t</table>\r\n\t\t\t<p></p>\r\n\r\n\t\t</form>\r\n\t</body>\r\n</html>\r\n",
         "datamd5" : "647101318eafb6ddd7ff47360c5409c4",
         "datammh3" : -515183268,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-156-31"
         ],
         "hostname" : [
            "bb219-74-156-31.singnet.com.sg"
         ],
         "ip" : "219.74.156.31",
         "ipv6" : "false",
         "latitude" : "1.3347",
         "location" : "1.3347,103.8728",
         "longitude" : "103.8728",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "product" : "lighttpd",
         "productvendor" : "lighttpd",
         "productversion" : "1.4.32",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-156-31.singnet.com.sg"
         ],
         "seen_date" : "2024-10-28",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tag" : "<enterprise field>: tag",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 14.100.118.170:3260 (tcp/http) - last seen on 2024-10-27 at 23:39:33 UTC

    • IP
      14.100.118.170
      Network
      14.100.0.0/17
      Device

      <enterprise field>: device.class <enterprise field>: device.productvendor

      Operating System
      Linux Linux 2
      URL

      http://14.100.118.170:3260/ 200

      HTTP Title
      ::: Login :::
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux 2
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      498757ed6cd314988f10f57b901a6c7b
      HTTP Header MD5
      15514d09ab3a6e41ccb6a3bff154ef8a
      HTTP Body MD5
      c1795339bfc5fbb0f593b34bec5a77c1
    • HTTP/1.1 200 OK
      Date: Mon, 28 Oct 2024 07:39:33 GMT
      Server: Linux/2.x UPnP/1.0 Avtech/1.0
      Connection: close
      Last-Modified: Wed, 19 Jul 2017 09:45:11 GMT
      Content-Type: text/html
      ETag: 162-15850-1500457511
      Content-Length: 15850
      
      <html>
      <head>
      <link rel="icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="shortcut icon" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <link rel="bookmark" href="/nobody/favicon.ico" type="image/vnd.microsoft.icon" />
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <meta name="googlebot" content="nosnippet">
      <meta name="robots" content="noarchive">
      <title>::: Login :::</title>
      <style>
      <!--
      body {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}
      td { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}
      .inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}
      .codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}
      .font0{font-size:36px;font-family:Arial; font-style:italic;}
      .font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}
      -->
      </style>
      <script language="JavaScript">
      //Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm
      if(document.URL.indexOf("?a=") > 0){
          var VerifyStr_Base64 = document.URL.split("?")[1].substring(2);
          location.href="/nobody/ez.htm?a="+VerifyStr_Base64+"&rnd=" + Math.random();
      }
      /* ========== loginQuickDevice.js ========== */
      function getCookie(c_name){
          if (document.cookie.length>0){
              c_start=document.cookie.indexOf(c_name + "=");
              if (c_start!=-1){ 
                  c_start=c_start + c_name.length+1; 
                  c_end=document.cookie.indexOf(";",c_start);
                  if (c_end==-1) c_end=document.cookie.length;
                  return unescape(document.cookie.substring(c_start,c_end));
              } 
          }
          return "";
      }
      
      function setCookie(c_name,value,expiredays){
          var exdate=new Date();
          exdate.setDate(exdate.getDate()+expiredays);
          document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
      }
      
      var w = window.screen.availWidth;
      
      if(getCookie("ViewMode")!="Classic"){
          if(w <= 800){//mobile screen width < 800
          	if(w >= 320)
          		location.href="/nobody/mobile320.htm?Login=Quick";
          	else
          		location.href="/nobody/mobile.htm?Login=Quick";
          }
      }
      
      //no use
      function isMobileBrowser(){
          var u = navigator.userAgent.toLowerCase();
          
          if(u.indexOf("midp") != -1)
          	return true;
          else if(u.indexOf("mobile") != -1)
          	return true;
          else if(u.indexOf("iphone") != -1 || u.indexOf("ipod") != -1)
          	return true;
          else if(u.indexOf("series60") != -1 || u.indexOf("symbian") != -1)
          	return true;
          else if(u.indexOf("blackberry") != -1)
          	return true;
          else if(u.indexOf("android") != -1)
          	return true;
          else if(u.indexOf("windows ce") != -1 || u.indexOf("windows phone") != -1)
          	return true;
          else if(u.indexOf("htc") != -1 || u.indexOf("hd2_") != -1)
          	return true;
          else if(u.indexOf("palm") != -1)
          	return true;
          else
          	return false;
      }
      
      
      /* ========== webtoolkit.base64.js ========== */
      var Base64 = {
      
      	// private property
      	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
      
      	// public method for encoding
      	encode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = Base64._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 +
      			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
      			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
      
      		}
      
      		return output;
      	},
      
      	// public method for decoding
      	decode : function (input) {
      		var output = "";
      		var chr1, chr2, chr3;
      		var enc1, enc2, enc3, enc4;
      		var i = 0;
      
      		input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
      
      		while (i < input.length) {
      
      			enc1 = this._keyStr.indexOf(input.charAt(i++));
      			enc2 = this._keyStr.indexOf(input.charAt(i++));
      			enc3 = this._keyStr.indexOf(input.charAt(i++));
      			enc4 = this._keyStr.indexOf(input.charAt(i++));
      
      			chr1 = (enc1 << 2) | (enc2 >> 4);
      			chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
      			chr3 = ((enc3 & 3) << 6) | enc4;
      
      			output = output + String.fromCharCode(chr1);
      
      			if (enc3 != 64) {
      				output = output + String.fromCharCode(chr2);
      			}
      			if (enc4 != 64) {
      				output = output + String.fromCharCode(chr3);
      			}
      
      		}
      
      		output = Base64._utf8_decode(output);
      
      		return output;
      
      	},
      
      	// private method for UTF-8 encoding
      	_utf8_encode : function (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;
      	},
      
      	// private method for UTF-8 decoding
      	_utf8_decode : function (utftext) {
      		var string = "";
      		var i = 0;
      		var c = c1 = c2 = 0;
      
      		while ( i < utftext.length ) {
      
      			c = utftext.charCodeAt(i);
      
      			if (c < 128) {
      				string += String.fromCharCode(c);
      				i++;
      			}
      			else if((c > 191) && (c < 224)) {
      				c2 = utftext.charCodeAt(i+1);
      				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
      				i += 2;
      			}
      			else {
      				c2 = utftext.charCodeAt(i+1);
      				c3 = utftext.charCodeAt(i+2);
      				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
      				i += 3;
      			}
      
      		}
      
      		return string;
      	}
      
      }
      
      /* ========== loginQuick.js ========== */
      var ff;
      var CheckOnlySupportIE = false;
      var DVR_ONLY_SUPPORT_IE = "_042_082_162_046_";
      var isIEBrowser = false;
      
      if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC") && (navigator.platform != "Mac68k")) {
        isIEBrowser = true;
      }
      
      /* disabled backspace key */
      if(typeof window.event != 'undefined'){
          document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}
      }else{
          document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}
      }
      
      function init(){
      	ff = document.myForm;
      	ff.Username.value = "";
      	ff.Password.value = "";
      	ff.Username.focus();
      	//setTimeout("getCaptchaImg()", 1000);
      }
      
      function getCaptchaImg(){
      	document.getElementById("Captcha").src = "/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp";
      }
      
      function goCheck(e){
          if(window.event && e.keyCode ==13) //IE
              check(); 
          else if(e.which == 13) // Netscape/Firefox/Opera
              check();
      }
      
      function check(){
          if(!ff){return false;}
          
          document.cookie = "x=1";
          if (document.cookie.indexOf("x=")==-1){
              alert("Browser Cookie not supported.");
              frmReload();
              return false;
          }
          var actionStr = "/cgi-bin/nobody/VerifyCode.cgi"
          actionStr += "?account="+Base64.encode(ff.Username.value+":"+ff.Password.value);
          //actionStr += "&captcha_code="+ff.CaptchaCode.value;
          //actionStr += "&verify_code="+getCookie("captcha");
          actionStr += "&rnd="+Math.random();
      	var httpObj = createHttpRequestObj();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		tmpStr = objStr.strSrc.split("\n");
                  if (tmpStr[1] == "OK"){
                      getUserLevel();
                  }else{
                      alert(tmpStr[1]);
                      frmReload();
                  }
              }
          };
      	httpObj.open("get", actionStr, true);
      	httpObj.send(null);
      	return false;
      }
      
      function getUserLevel(){
      	/*
      	var httpObj = createHttpRequestObj();
      	requestData = "/cgi-bin/guest/Login.cgi?rnd="+Math.random();
      	httpObj.onreadystatechange = function(){
          	if (httpObj.readyState == 4 && httpObj.status == 200){
          		var objStr    = new Object();
          		objStr.strSrc = httpObj.responseText;
          		
          		if (CheckOnlySupportIE && GetCgiParam(objStr, "Product-ID-Minor=") == 1){
          		    var pid = objStr.strGet;
          		    var pidc = "_"+pid+"_";
          		    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){
          		        //alert("This machine is not supported, please visit 'www.avtech.com.tw' for more details.");
          		        if(confirm("This machine is not supported.\nDo you want to get more details?")){
          		            location.href = "http://www.eagleeyescctv.com/jump/dvr.htm";
          		        }
          		        return false;
          		    }
          		}
          		
          		if (GetCgiParam(objStr, "User-Level=") == 1){
          			setCookie("LifeTime", "");
          			setCookie("ReloWebTime", 0);
          			if(objStr.strGet == "SUPERVISOR")
                          location.href="/index.htm";
                      else
                          location.href="/index.htm";
      					//location.href="/default.htm";
                  }else{alert('Login Failed.');}
                  
          	}
          };
      	httpObj.open("get", requestData, true);
      	httpObj.send(null);
      	*/
      	setCookie("brokenhdd", "");
      	setCookie("LifeTime", "");
      	setCookie("ReloWebTime", 0);
      	location.href="/index.htm";
      }
      
      function frmReload(){
          ff.Username.value="";
          ff.Password.value="";
          //ff.CaptchaCode.value="";
          location.reload();
      }
      
      function createHttpRequestObj(){
      	var XMLhttpObject = null;
      	try {XMLhttpObject = new XMLHttpRequest();}
      	catch(e){
      		try {XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP");}
      		catch(e){
      			try {XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");}
      			catch(e) {return null;}
      		}
      	}
      	return XMLhttpObject;
      }
      
      function GetCgiParam(objStr, strSearch){
      	var curr_pos;var result;
      	objStr.strSearch=strSearch;
      	objStr.curr_pos=0;
      	do{
      		result = 1;
      		curr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);
      		if (curr_pos < 0){
      			result = 0;
      			break;
      		}
      		objStr.curr_pos = curr_pos + objStr.strSearch.length;
      		curr_pos = objStr.strSrc.indexOf('\n', objStr.curr_pos);
      		if (curr_pos < 0){
      			if (objStr.curr_pos < objStr.strSrc.length){
      				objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);
      				objStr.curr_pos = curr_pos;	
      				break;
      			}
      			result = 0;
      			break;
      		}
      		objStr.strGet 	= objStr.strSrc.substring(objStr.curr_pos, curr_pos);
      		objStr.curr_pos = curr_pos;
      	} while(0);
      	return result;
      }
      
      function goMobile(){
          setCookie("ViewMode", "Mobile");
      	var w = window.screen.availWidth;
      	if(w >= 320)
      		location.href="/nobody/mobile320.htm?Login=Quick";
      	else
      		location.href="/nobody/mobile.htm?Login=Quick";
      }
      
      </script>
      </head>
      <body onload="init()">
      <form name="myForm" method="POST" target="_top" onSubmit="return check();">
      <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr><td width="778" height="197" valign="middle" >
              <table width="201" border="0" cellspacing="0" cellpadding="0">
                  <tr><td width="201" height="25">&nbsp;</td></tr>
              </table>
              <table width="467" height="88" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="493" height="53" class="font0">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>
                  <tr><td class="font1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>
              </table></td></tr>
          <tr><td height="114" valign="middle">
              <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr><td width="221" height="247" valign="top"></td>
              <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td height="94" valign="top"><table width="341" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="21"><img src="/nobody/jpg/lcorner.jpg" width="21" height="33" alt=""></td>
                      <td width="306" align="center" background="/nobody/jpg/banner.jpg"> Customer Login </td>
                      <td width="14"><img src="/nobody/jpg/rcor.jpg" width="18" height="33"></td>
                    </tr>
                  </table>
                          <table width="341" border="0" align="left" cellpadding="0" cellspacing="0">
                            <tr>
                              <td width="8%"><img src="/nobody/jpg/mem.jpg" width="83" height="168"></td>
                              <td width="87%" background="/nobody/jpg/bg09.gif">
                                  <!-- input box -->
                                  <table width="233" height="80" border="0" cellpadding="0" cellspacing="0">
                                  <tr>
                                    <td width="96" height="41" align="right">Username :&nbsp;</td>
                                    <td width="124"><input name="Username" maxlength="31" type="text" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  <tr>
                                    <td width="96" height="37" align="right">Password :&nbsp;</td>
                                    <td><input name="Password" maxlength="31" type="password" class="inputTxt" size="17" onkeydown="goCheck(event);"></td>
                                  </tr>
                                  </table></td>
      
                              <td width="5%"><img src="/nobody/jpg/line11.jpg" width="18" height="168"></td>
                            </tr>
                        </table></td>
                </tr>
                <tr>
                  <td valign="top"><table width="341" border="0" align="center" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="17" valign="top" background="/nobody/jpg/bg14.jpg"><img src="/nobody/jpg/cor.jpg" width="17" height="46"></td>
                      <td width="305" background="/nobody/jpg/bg14.jpg">
                          <!-- button -->
                          <table width="100%" border="0" cellspacing="0" cellpadding="0">
                          <tr><td align="center"><img src="/nobody/jpg/login.gif" style="cursor:pointer" width="103" height="29" border="0" onClick="check();"></td></tr>
                          </table></td>
                      <td width="18" valign="top"><img src="/nobody/jpg/cor18.jpg" width="18" height="46"></td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
              <td width="218" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td></td>
                </tr>
                
              </table></td>
            </tr>
          </table>
          <table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
              <td width="213"></td>
              <td width="339" height="132" align="center">View: <a href="#" style='color:#00ffff' onclick="goMobile()">Mobile</a> | PC</td>
              <td width="226"></td>
            </tr>
          </table></td>
        </tr>
      </table>
      </form>
      </body>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-10-27T23:39:33.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "eagleeyescctv.com"
               ],
               "file" : [
                  "verifycode.cgi"
               ],
               "hostname" : [
                  "www.eagleeyescctv.com"
               ],
               "url" : [
                  "http://www.eagleeyescctv.com/jump/dvr.htm"
               ]
            },
            "favicon" : {
               "url" : "/nobody/favicon.ico"
            },
            "http" : {
               "bodymd5" : "c1795339bfc5fbb0f593b34bec5a77c1",
               "bodymmh3" : -878287826,
               "header" : [
                  {
                     "name" : "Last-Modified",
                     "value" : "Wed, 19 Jul 2017 09:45:11 GMT"
                  },
                  {
                     "value" : "162-15850-1500457511",
                     "name" : "ETag"
                  }
               ],
               "headermd5" : "15514d09ab3a6e41ccb6a3bff154ef8a",
               "headermmh3" : -1216334748,
               "title" : "::: Login :::"
            },
            "length" : 16086
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nDate: Mon, 28 Oct 2024 07:39:33 GMT\r\nServer: Linux/2.x UPnP/1.0 Avtech/1.0\r\nConnection: close\r\nLast-Modified: Wed, 19 Jul 2017 09:45:11 GMT\r\nContent-Type: text/html\r\nETag: 162-15850-1500457511\r\nContent-Length: 15850\r\n\r\n<html>\r\n<head>\r\n<link rel=\"icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"shortcut icon\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<link rel=\"bookmark\" href=\"/nobody/favicon.ico\" type=\"image/vnd.microsoft.icon\" />\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"googlebot\" content=\"nosnippet\">\r\n<meta name=\"robots\" content=\"noarchive\">\r\n<title>::: Login :::</title>\r\n<style>\r\n<!--\r\nbody {background-image: url(/nobody/jpg/bg.jpg); margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}\r\ntd { font-size:14px;color:#FFFFFF;font-weight:bold; font-family:Arial;}\r\n.inputTxt{ width:120px; font-family:Courier New, Arial; border-right: #acacac 1px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #acacac 1px solid; background-color: #ffffff; height:20px;}\r\n.codeBorder{border-right: #696969 2px solid; border-top: #acacac 1px solid; border-left: #acacac 1px solid; border-bottom: #696969 2px solid; background-color: #ffffff;}\r\n.font0{font-size:36px;font-family:Arial; font-style:italic;}\r\n.font1{font-size:24px;font-family:Arial; font-style:italic; color:#EDEDED;}\r\n-->\r\n</style>\r\n<script language=\"JavaScript\">\r\n//Kelvin++ 2014-07-31 check is it opening from EZ server, then auto-login use ez.htm\r\nif(document.URL.indexOf(\"?a=\") > 0){\r\n    var VerifyStr_Base64 = document.URL.split(\"?\")[1].substring(2);\r\n    location.href=\"/nobody/ez.htm?a=\"+VerifyStr_Base64+\"&rnd=\" + Math.random();\r\n}\r\n/* ========== loginQuickDevice.js ========== */\r\nfunction getCookie(c_name){\r\n    if (document.cookie.length>0){\r\n        c_start=document.cookie.indexOf(c_name + \"=\");\r\n        if (c_start!=-1){ \r\n            c_start=c_start + c_name.length+1; \r\n            c_end=document.cookie.indexOf(\";\",c_start);\r\n            if (c_end==-1) c_end=document.cookie.length;\r\n            return unescape(document.cookie.substring(c_start,c_end));\r\n        } \r\n    }\r\n    return \"\";\r\n}\r\n\r\nfunction setCookie(c_name,value,expiredays){\r\n    var exdate=new Date();\r\n    exdate.setDate(exdate.getDate()+expiredays);\r\n    document.cookie=c_name+ \"=\" +escape(value)+((expiredays==null) ? \"\" : \";expires=\"+exdate.toGMTString());\r\n}\r\n\r\nvar w = window.screen.availWidth;\r\n\r\nif(getCookie(\"ViewMode\")!=\"Classic\"){\r\n    if(w <= 800){//mobile screen width < 800\r\n    \tif(w >= 320)\r\n    \t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n    \telse\r\n    \t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n    }\r\n}\r\n\r\n//no use\r\nfunction isMobileBrowser(){\r\n    var u = navigator.userAgent.toLowerCase();\r\n    \r\n    if(u.indexOf(\"midp\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"mobile\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"iphone\") != -1 || u.indexOf(\"ipod\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"series60\") != -1 || u.indexOf(\"symbian\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"blackberry\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"android\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"windows ce\") != -1 || u.indexOf(\"windows phone\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"htc\") != -1 || u.indexOf(\"hd2_\") != -1)\r\n    \treturn true;\r\n    else if(u.indexOf(\"palm\") != -1)\r\n    \treturn true;\r\n    else\r\n    \treturn false;\r\n}\r\n\r\n\r\n/* ========== webtoolkit.base64.js ========== */\r\nvar Base64 = {\r\n\r\n\t// private property\r\n\t_keyStr : \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",\r\n\r\n\t// public method for encoding\r\n\tencode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3, enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = Base64._utf8_encode(input);\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tchr1 = input.charCodeAt(i++);\r\n\t\t\tchr2 = input.charCodeAt(i++);\r\n\t\t\tchr3 = input.charCodeAt(i++);\r\n\r\n\t\t\tenc1 = chr1 >> 2;\r\n\t\t\tenc2 = ((chr1 & 3) << 4) | (chr2 >> 4);\r\n\t\t\tenc3 = ((chr2 & 15) << 2) | (chr3 >> 6);\r\n\t\t\tenc4 = chr3 & 63;\r\n\r\n\t\t\tif (isNaN(chr2)) {\r\n\t\t\t\tenc3 = enc4 = 64;\r\n\t\t\t} else if (isNaN(chr3)) {\r\n\t\t\t\tenc4 = 64;\r\n\t\t\t}\r\n\r\n\t\t\toutput = output +\r\n\t\t\tthis._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +\r\n\t\t\tthis._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);\r\n\r\n\t\t}\r\n\r\n\t\treturn output;\r\n\t},\r\n\r\n\t// public method for decoding\r\n\tdecode : function (input) {\r\n\t\tvar output = \"\";\r\n\t\tvar chr1, chr2, chr3;\r\n\t\tvar enc1, enc2, enc3, enc4;\r\n\t\tvar i = 0;\r\n\r\n\t\tinput = input.replace(/[^A-Za-z0-9\\+\\/\\=]/g, \"\");\r\n\r\n\t\twhile (i < input.length) {\r\n\r\n\t\t\tenc1 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc2 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc3 = this._keyStr.indexOf(input.charAt(i++));\r\n\t\t\tenc4 = this._keyStr.indexOf(input.charAt(i++));\r\n\r\n\t\t\tchr1 = (enc1 << 2) | (enc2 >> 4);\r\n\t\t\tchr2 = ((enc2 & 15) << 4) | (enc3 >> 2);\r\n\t\t\tchr3 = ((enc3 & 3) << 6) | enc4;\r\n\r\n\t\t\toutput = output + String.fromCharCode(chr1);\r\n\r\n\t\t\tif (enc3 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr2);\r\n\t\t\t}\r\n\t\t\tif (enc4 != 64) {\r\n\t\t\t\toutput = output + String.fromCharCode(chr3);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\toutput = Base64._utf8_decode(output);\r\n\r\n\t\treturn output;\r\n\r\n\t},\r\n\r\n\t// private method for UTF-8 encoding\r\n\t_utf8_encode : function (string) {\r\n\t\tstring = string.replace(/\\r\\n/g,\"\\n\");\r\n\t\tvar utftext = \"\";\r\n\r\n\t\tfor (var n = 0; n < string.length; n++) {\r\n\r\n\t\t\tvar c = string.charCodeAt(n);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tutftext += String.fromCharCode(c);\r\n\t\t\t}\r\n\t\t\telse if((c > 127) && (c < 2048)) {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn utftext;\r\n\t},\r\n\r\n\t// private method for UTF-8 decoding\r\n\t_utf8_decode : function (utftext) {\r\n\t\tvar string = \"\";\r\n\t\tvar i = 0;\r\n\t\tvar c = c1 = c2 = 0;\r\n\r\n\t\twhile ( i < utftext.length ) {\r\n\r\n\t\t\tc = utftext.charCodeAt(i);\r\n\r\n\t\t\tif (c < 128) {\r\n\t\t\t\tstring += String.fromCharCode(c);\r\n\t\t\t\ti++;\r\n\t\t\t}\r\n\t\t\telse if((c > 191) && (c < 224)) {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tstring += String.fromCharCode(((c & 31) << 6) | (c2 & 63));\r\n\t\t\t\ti += 2;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tc2 = utftext.charCodeAt(i+1);\r\n\t\t\t\tc3 = utftext.charCodeAt(i+2);\r\n\t\t\t\tstring += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));\r\n\t\t\t\ti += 3;\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\treturn string;\r\n\t}\r\n\r\n}\r\n\r\n/* ========== loginQuick.js ========== */\r\nvar ff;\r\nvar CheckOnlySupportIE = false;\r\nvar DVR_ONLY_SUPPORT_IE = \"_042_082_162_046_\";\r\nvar isIEBrowser = false;\r\n\r\nif ((navigator.appName == \"Microsoft Internet Explorer\") && (navigator.platform != \"MacPPC\") && (navigator.platform != \"Mac68k\")) {\r\n  isIEBrowser = true;\r\n}\r\n\r\n/* disabled backspace key */\r\nif(typeof window.event != 'undefined'){\r\n    document.onkeydown = function(){if(event.srcElement.tagName.toUpperCase() != 'INPUT'){return (event.keyCode != 8);}}\r\n}else{\r\n    document.onkeypress = function(e){if(e.target.nodeName.toUpperCase() != 'INPUT'){return (e.keyCode != 8);}}\r\n}\r\n\r\nfunction init(){\r\n\tff = document.myForm;\r\n\tff.Username.value = \"\";\r\n\tff.Password.value = \"\";\r\n\tff.Username.focus();\r\n\t//setTimeout(\"getCaptchaImg()\", 1000);\r\n}\r\n\r\nfunction getCaptchaImg(){\r\n\tdocument.getElementById(\"Captcha\").src = \"/cgi-bin/nobody/Captcha.cgi?action=get&image=login_bmp\";\r\n}\r\n\r\nfunction goCheck(e){\r\n    if(window.event && e.keyCode ==13) //IE\r\n        check(); \r\n    else if(e.which == 13) // Netscape/Firefox/Opera\r\n        check();\r\n}\r\n\r\nfunction check(){\r\n    if(!ff){return false;}\r\n    \r\n    document.cookie = \"x=1\";\r\n    if (document.cookie.indexOf(\"x=\")==-1){\r\n        alert(\"Browser Cookie not supported.\");\r\n        frmReload();\r\n        return false;\r\n    }\r\n    var actionStr = \"/cgi-bin/nobody/VerifyCode.cgi\"\r\n    actionStr += \"?account=\"+Base64.encode(ff.Username.value+\":\"+ff.Password.value);\r\n    //actionStr += \"&captcha_code=\"+ff.CaptchaCode.value;\r\n    //actionStr += \"&verify_code=\"+getCookie(\"captcha\");\r\n    actionStr += \"&rnd=\"+Math.random();\r\n\tvar httpObj = createHttpRequestObj();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\ttmpStr = objStr.strSrc.split(\"\\n\");\r\n            if (tmpStr[1] == \"OK\"){\r\n                getUserLevel();\r\n            }else{\r\n                alert(tmpStr[1]);\r\n                frmReload();\r\n            }\r\n        }\r\n    };\r\n\thttpObj.open(\"get\", actionStr, true);\r\n\thttpObj.send(null);\r\n\treturn false;\r\n}\r\n\r\nfunction getUserLevel(){\r\n\t/*\r\n\tvar httpObj = createHttpRequestObj();\r\n\trequestData = \"/cgi-bin/guest/Login.cgi?rnd=\"+Math.random();\r\n\thttpObj.onreadystatechange = function(){\r\n    \tif (httpObj.readyState == 4 && httpObj.status == 200){\r\n    \t\tvar objStr    = new Object();\r\n    \t\tobjStr.strSrc = httpObj.responseText;\r\n    \t\t\r\n    \t\tif (CheckOnlySupportIE && GetCgiParam(objStr, \"Product-ID-Minor=\") == 1){\r\n    \t\t    var pid = objStr.strGet;\r\n    \t\t    var pidc = \"_\"+pid+\"_\";\r\n    \t\t    if(!isIEBrowser && DVR_ONLY_SUPPORT_IE.indexOf(pidc) != -1){\r\n    \t\t        //alert(\"This machine is not supported, please visit 'www.avtech.com.tw' for more details.\");\r\n    \t\t        if(confirm(\"This machine is not supported.\\nDo you want to get more details?\")){\r\n    \t\t            location.href = \"http://www.eagleeyescctv.com/jump/dvr.htm\";\r\n    \t\t        }\r\n    \t\t        return false;\r\n    \t\t    }\r\n    \t\t}\r\n    \t\t\r\n    \t\tif (GetCgiParam(objStr, \"User-Level=\") == 1){\r\n    \t\t\tsetCookie(\"LifeTime\", \"\");\r\n    \t\t\tsetCookie(\"ReloWebTime\", 0);\r\n    \t\t\tif(objStr.strGet == \"SUPERVISOR\")\r\n                    location.href=\"/index.htm\";\r\n                else\r\n                    location.href=\"/index.htm\";\r\n\t\t\t\t\t//location.href=\"/default.htm\";\r\n            }else{alert('Login Failed.');}\r\n            \r\n    \t}\r\n    };\r\n\thttpObj.open(\"get\", requestData, true);\r\n\thttpObj.send(null);\r\n\t*/\r\n\tsetCookie(\"brokenhdd\", \"\");\r\n\tsetCookie(\"LifeTime\", \"\");\r\n\tsetCookie(\"ReloWebTime\", 0);\r\n\tlocation.href=\"/index.htm\";\r\n}\r\n\r\nfunction frmReload(){\r\n    ff.Username.value=\"\";\r\n    ff.Password.value=\"\";\r\n    //ff.CaptchaCode.value=\"\";\r\n    location.reload();\r\n}\r\n\r\nfunction createHttpRequestObj(){\r\n\tvar XMLhttpObject = null;\r\n\ttry {XMLhttpObject = new XMLHttpRequest();}\r\n\tcatch(e){\r\n\t\ttry {XMLhttpObject = new ActiveXObject(\"Msxml2.XMLHTTP\");}\r\n\t\tcatch(e){\r\n\t\t\ttry {XMLhttpObject = new ActiveXObject(\"Microsoft.XMLHTTP\");}\r\n\t\t\tcatch(e) {return null;}\r\n\t\t}\r\n\t}\r\n\treturn XMLhttpObject;\r\n}\r\n\r\nfunction GetCgiParam(objStr, strSearch){\r\n\tvar curr_pos;var result;\r\n\tobjStr.strSearch=strSearch;\r\n\tobjStr.curr_pos=0;\r\n\tdo{\r\n\t\tresult = 1;\r\n\t\tcurr_pos = objStr.strSrc.indexOf(objStr.strSearch, objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.curr_pos = curr_pos + objStr.strSearch.length;\r\n\t\tcurr_pos = objStr.strSrc.indexOf('\\n', objStr.curr_pos);\r\n\t\tif (curr_pos < 0){\r\n\t\t\tif (objStr.curr_pos < objStr.strSrc.length){\r\n\t\t\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, objStr.strSrc.length);\r\n\t\t\t\tobjStr.curr_pos = curr_pos;\t\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tresult = 0;\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\tobjStr.strGet \t= objStr.strSrc.substring(objStr.curr_pos, curr_pos);\r\n\t\tobjStr.curr_pos = curr_pos;\r\n\t} while(0);\r\n\treturn result;\r\n}\r\n\r\nfunction goMobile(){\r\n    setCookie(\"ViewMode\", \"Mobile\");\r\n\tvar w = window.screen.availWidth;\r\n\tif(w >= 320)\r\n\t\tlocation.href=\"/nobody/mobile320.htm?Login=Quick\";\r\n\telse\r\n\t\tlocation.href=\"/nobody/mobile.htm?Login=Quick\";\r\n}\r\n\r\n</script>\r\n</head>\r\n<body onload=\"init()\">\r\n<form name=\"myForm\" method=\"POST\" target=\"_top\" onSubmit=\"return check();\">\r\n<table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tr><td width=\"778\" height=\"197\" valign=\"middle\" >\r\n        <table width=\"201\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr><td width=\"201\" height=\"25\">&nbsp;</td></tr>\r\n        </table>\r\n        <table width=\"467\" height=\"88\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"493\" height=\"53\" class=\"font0\">&nbsp;&nbsp;&nbsp;Any time &amp; Any where</td></tr>\r\n            <tr><td class=\"font1\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP Surveillance for Your Life</td></tr>\r\n        </table></td></tr>\r\n    <tr><td height=\"114\" valign=\"middle\">\r\n        <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr><td width=\"221\" height=\"247\" valign=\"top\"></td>\r\n        <td valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td height=\"94\" valign=\"top\"><table width=\"341\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n              <tr>\r\n                <td width=\"21\"><img src=\"/nobody/jpg/lcorner.jpg\" width=\"21\" height=\"33\" alt=\"\"></td>\r\n                <td width=\"306\" align=\"center\" background=\"/nobody/jpg/banner.jpg\"> Customer Login </td>\r\n                <td width=\"14\"><img src=\"/nobody/jpg/rcor.jpg\" width=\"18\" height=\"33\"></td>\r\n              </tr>\r\n            </table>\r\n                    <table width=\"341\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td width=\"8%\"><img src=\"/nobody/jpg/mem.jpg\" width=\"83\" height=\"168\"></td>\r\n                        <td width=\"87%\" background=\"/nobody/jpg/bg09.gif\">\r\n                            <!-- input box -->\r\n                            <table width=\"233\" height=\"80\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                            <tr>\r\n                              <td width=\"96\" height=\"41\" align=\"right\">Username :&nbsp;</td>\r\n                              <td width=\"124\"><input name=\"Username\" maxlength=\"31\" type=\"text\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            <tr>\r\n                              <td width=\"96\" height=\"37\" align=\"right\">Password :&nbsp;</td>\r\n                              <td><input name=\"Password\" maxlength=\"31\" type=\"password\" class=\"inputTxt\" size=\"17\" onkeydown=\"goCheck(event);\"></td>\r\n                            </tr>\r\n                            </table></td>\r\n\r\n                        <td width=\"5%\"><img src=\"/nobody/jpg/line11.jpg\" width=\"18\" height=\"168\"></td>\r\n                      </tr>\r\n                  </table></td>\r\n          </tr>\r\n          <tr>\r\n            <td valign=\"top\"><table width=\"341\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n                <td width=\"17\" valign=\"top\" background=\"/nobody/jpg/bg14.jpg\"><img src=\"/nobody/jpg/cor.jpg\" width=\"17\" height=\"46\"></td>\r\n                <td width=\"305\" background=\"/nobody/jpg/bg14.jpg\">\r\n                    <!-- button -->\r\n                    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                    <tr><td align=\"center\"><img src=\"/nobody/jpg/login.gif\" style=\"cursor:pointer\" width=\"103\" height=\"29\" border=\"0\" onClick=\"check();\"></td></tr>\r\n                    </table></td>\r\n                <td width=\"18\" valign=\"top\"><img src=\"/nobody/jpg/cor18.jpg\" width=\"18\" height=\"46\"></td>\r\n              </tr>\r\n            </table></td>\r\n          </tr>\r\n        </table></td>\r\n        <td width=\"218\" valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tr>\r\n            <td></td>\r\n          </tr>\r\n          \r\n        </table></td>\r\n      </tr>\r\n    </table>\r\n    <table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n        <td width=\"213\"></td>\r\n        <td width=\"339\" height=\"132\" align=\"center\">View: <a href=\"#\" style='color:#00ffff' onclick=\"goMobile()\">Mobile</a> | PC</td>\r\n        <td width=\"226\"></td>\r\n      </tr>\r\n    </table></td>\r\n  </tr>\r\n</table>\r\n</form>\r\n</body>\r\n</html>",
         "datamd5" : "498757ed6cd314988f10f57b901a6c7b",
         "datammh3" : -1933980046,
         "device" : {
            "class" : "<enterprise field>: device.class",
            "productvendor" : "<enterprise field>: device.productvendor"
         },
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "14.100.0.0/17"
         },
         "ip" : "14.100.118.170",
         "ipv6" : "false",
         "latitude" : "1.3248",
         "location" : "1.3248,103.7799",
         "longitude" : "103.7799",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux",
         "osvendor" : "Linux",
         "osversion" : "2",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "seen_date" : "2024-10-27",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "14.100.0.0/17",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 219.74.4.230:3260 (tcp/http) - last seen on 2024-10-27 at 17:05:05 UTC

    • IP
      219.74.4.230
      Network
      219.74.0.0/16
      Domain(s)
      singnet.com.sg
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://219.74.4.230:3260/ 200

      Reverse DNS
      bb219-74-4-230.singnet.com.sg
      ASN
      AS9506
      Organization
      Singtel Fibre Broadband
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      c03ea71cf5d488ef183005e3486689bd
      HTTP Header MD5
      fd8e0a765092d70d012b61df4ef95edf
      HTTP Body MD5
      167b799d5d5294a1c72f3865f37e43c3
    • HTTP/1.1 200 OK
      Vary: Accept-Encoding
      X-Frame-Options: SAMEORIGIN
      Content-Type: text/html
      X-Content-Type-Options: nosniff
      Date: Mon, 28 Oct 2024 01:05:03 GMT
      ETag: 1728304293
      Content-Length: 481
      X-XSS-Protection: 1; mode=block
      Last-Modified: Tue, 20 Jun 2023 03:52:36 GMT
      Connection: close
      Accept-Ranges: bytes
      
      <!doctype html>
      <html>
      <head>
      	<title></title>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      	<meta http-equiv="X-UA-Compatible" content="IE=edge" >
      	<meta http-equiv="Pragma" content="no-cache" />
      	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
      	<meta http-equiv="Expires" content="0" />
      </head>
      <body>
      </body>
      <script>
      	window.location.href = "./doc/page/login.asp?_" + (new Date()).getTime();
      </script>
      </html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-10-27T17:05:05.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "167b799d5d5294a1c72f3865f37e43c3",
               "bodymmh3" : -370724244,
               "header" : [
                  {
                     "name" : "ETag",
                     "value" : 1728304293
                  },
                  {
                     "name" : "Last-Modified",
                     "value" : "Tue, 20 Jun 2023 03:52:36 GMT"
                  }
               ],
               "headermd5" : "fd8e0a765092d70d012b61df4ef95edf",
               "headermmh3" : 2046769519
            },
            "length" : 806
         },
         "asn" : "AS9506",
         "city" : "Singapore",
         "country" : "SG",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Type: text/html\r\nX-Content-Type-Options: nosniff\r\nDate: Mon, 28 Oct 2024 01:05:03 GMT\r\nETag: 1728304293\r\nContent-Length: 481\r\nX-XSS-Protection: 1; mode=block\r\nLast-Modified: Tue, 20 Jun 2023 03:52:36 GMT\r\nConnection: close\r\nAccept-Ranges: bytes\r\n\r\n\ufeff<!doctype html>\r\n<html>\r\n<head>\r\n\t<title></title>\r\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" >\r\n\t<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n\t<meta http-equiv=\"Cache-Control\" content=\"no-cache, must-revalidate\" />\r\n\t<meta http-equiv=\"Expires\" content=\"0\" />\r\n</head>\r\n<body>\r\n</body>\r\n<script>\r\n\twindow.location.href = \"./doc/page/login.asp?_\" + (new Date()).getTime();\r\n</script>\r\n</html>",
         "datamd5" : "c03ea71cf5d488ef183005e3486689bd",
         "datammh3" : 734548108,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "singnet.com.sg"
         ],
         "geolocus" : {
            "asn" : "AS9506",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "SG",
            "countryname" : "Singapore",
            "domain" : [
               "apnic.net",
               "singnet.com.sg"
            ],
            "isineu" : "false",
            "latitude" : "1.352083",
            "location" : "1.352083,103.819836",
            "longitude" : "103.819836",
            "netname" : "SINGNET-SG",
            "organization" : "SingNet Pte Ltd",
            "subnet" : "219.74.0.0/16"
         },
         "host" : [
            "bb219-74-4-230"
         ],
         "hostname" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "ip" : "219.74.4.230",
         "ipv6" : "false",
         "latitude" : "1.3216",
         "location" : "1.3216,103.8789",
         "longitude" : "103.8789",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Singtel Fibre Broadband",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 3260,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "bb219-74-4-230.singnet.com.sg"
         ],
         "seen_date" : "2024-10-27",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "219.74.0.0/16",
         "tld" : [
            "com.sg"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }