103.53.184.129:88 (tcp/http) - last seen on 2024-11-07 at 03:25:56 UTC
-
- IP
- 103.53.184.129
- Network
- 103.53.184.0/23
- Device
-
<enterprise field>: device.class <enterprise field>: device.productvendor
- Operating System
- Mikrotik RouterOS
- URL
-
http://103.53.184.129:88/ 200
- HTTP Title
- RouterOS router configuration page
- ASN
- AS63874
- Organization
- PT Celebes Media Jaringan
- Protocol
- http
- Source
- datascan
-
- Operating System
- Mikrotik RouterOS
- CPE(s)
-
<enterprise field>: cpe
This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.
-
- Data MD5
- 85f62eea1b87fd1fdd5045981a60337a
- HTTP Header MD5
- 508070579d3bda9d98e9ba0408c62fd3
- HTTP Body MD5
- 91e377f29922ef39edb4a61b5a49def2
-
HTTP/1.1 200 OK Connection: close Content-Length: 7065 Content-Type: text/html Date: Thu, 07 Nov 2024 03:31:21 GMT Expires: 0 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="icon" href="/favicon.png"/> <title>RouterOS router configuration page</title> <style type="text/css"> body { font-family: Verdana, Geneva, sans-serif; font-size: 11px; } img {border: none} img:hover {opacity: 0.8;} h1 { font-size: 1.7em; display: inline; margin-bottom: 10px; } fieldset { margin-top: 20px; background: #fff; padding: 20px; border: 1px solid #c1c1c1; } #container { width: 70%; margin: 10% auto; } #box { background-color: #fff; -moz-border-radius: 7px; -webkit-border-radius: 7px; border: 1px solid #c1c1c1; padding: 30px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3'); /* for IE */ background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); /* for webkit browsers */ background: -moz-linear-gradient(top, #fff, #f3f3f3); /* for firefox 3.6+ */ } .floater {float: left; margin-right: 10px;} .floater label {display: block; text-align: center;} #login { margin: 2em 0 4em 0; } #login h2 { font-weight: normal; font-size: 14px; margin: 0 0 0.5em 1em; } #login td { padding: 0 4px 0 0; } #login td.label { text-align: right; } #login td.toolbar { padding: 0 0 0 1em; vertical-align: top; } #login ul.toolbar { margin: 0; } #login input { margin: 2px; padding: 2px; border: 1px solid #888; box-shadow: 1px 1px 3px rgba(0,0,0,0.3); -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); } #error { display:none; color:red; padding: 1em 0 0 0; } ul.toolbar { font-size: 11px; text-align: left; list-style-type: none; padding: 0; margin: 2px 0 4px 2px; } ul.toolbar li { float: left; vertical-align: middle; } ul.toolbar a { float: none; display: block; margin: 2px 4px 2px 0; padding: 5px; background: #ddd; border: 1px solid #888; border-radius: 3px; -moz-border-radius: 3px; box-shadow: 1px 1px 2px rgba(255,255,255,0.8) inset, 0 10px 10px -5px rgba(255,255,255,0.5) inset, /* top gradient */ 1px 1px 2px rgba(0,0,0,0.2); /* shadow */ -webkit-box-shadow: 1px 1px 2px rgba(255,255,255,0.8) inset, 0 10px 10px -5px rgba(255,255,255,0.5) inset, 1px 1px 2px rgba(0,0,0,0.2); -moz-box-shadow: 1px 1px 2px rgba(255,255,255,0.8) inset, 0 10px 10px -5px rgba(255,255,255,0.5) inset, 1px 1px 2px rgba(0,0,0,0.2); color: #000; text-decoration: none; text-align: center; white-space: nowrap; cursor: inherit; min-width: 4em; -webkit-transition: background 0.2s linear, box-shadow 0.2s ease-out; -moz-transition: background 0.2s linear, box-shadow 0.2s ease-out; } ul.toolbar a:hover { background: #eee; } ul.toolbar a:active { background: #aaa; box-shadow: 1px 1px 2px #999 inset; -webkit-box-shadow: 1px 1px 2px #999 inset; -moz-box-shadow: 1px 1px 2px #999 inset; } </style> <script> function get(id) { return document.getElementById(id); } function trim(str) { return str.replace(/^\s+|\s+$/g, ''); } function login(user, pwd, autologin) { var expires = new Date(); expires.setTime(expires.getTime() + (30 * 24 * 60 * 60 * 1000)); document.cookie = 'username=' + user + '; expires=' + expires.toGMTString() + '; path=/'; window.name = (autologin ? 'autologin=' : 'login=') + user + '|' + pwd; window.location.replace('/webfig/' + window.location.hash); } function dologin() { login(get('name').value, get('password').value); } function loaded() { var p = window.name.split('='); if (p[0] == 'error' && p[1]) { var err = get('error'); err.appendChild(document.createTextNode(p[1])); err.style.display = 'block'; } else if (p[0] != 'noautologin' || p[1] != 1) { var user = ''; if (user) { login(user, '', true); return; } } window.name = ''; document.onkeydown = function(e) { e = e || event; if (e.keyCode == 13) { dologin(); return false; } return true; }; var username = null; var cookies = document.cookie.split(';'); for (var i in cookies) { var c = trim(cookies[i]).split('='); if (c[0] == 'username') { username = c[1]; break; } } if (username != null) { get('name').value = username; get('password').focus(); } else { get('name').value = 'admin'; get('name').focus(); } } </script> </head> <body onload="loaded()"> <div id="container"> <div id="box"> <a href="http://mikrotik.com"><img src="mikrotik_logo.png" style="float: right;" /></a> <br style="clear: both;"/> <h1>RouterOS v6.48.1</h1> <p>You have connected to a router. Administrative access only. If this device is not in your possession, please contact your local network administrator. </p> <table id="login"> <tr><td colspan="3"><h2>WebFig Login:</h2> <tr><td class="label">Login: <td><input id="name" type="text" tabindex="1"> <td class="toolbar" rowspan="2"> <ul class="toolbar"> <li><a onclick="dologin()" ondragstart="return false;"><span>Login</span></a></li> </ul> <tr><td class="label">Password: <td><input id="password" type="password" tabindex="2"> <tr><td colspan="3"> <div id="error"></div> </table> <fieldset> <div class="floater"> <a href="http://www.mikrotik.com/download/winbox.exe"><img src="winbox.png"/></a><br/> <label>Winbox</label> </div> <div class="floater"> <a href="telnet://<ip>"><img src="console.png"/></a><br/> <label>Telnet</label> </div> <div class="floater"> <a href="/graphs"><img src="green.png"/></a><br/> <label>Graphs</label> </div> <div class="floater"> <a href="/help/license.html"><img src="license.png"/></a><br/> <label>License</label> </div> <div class="floater"> <a href="http://wiki.mikrotik.com"><img src="help.png"/></a><br/> <label>Help</label> </div> </fieldset> <br style="clear: both"/> <div style="float: right">© mikrotik</div> </div> </div> </div> </body> </html>
-
{ "@category" : "datascan", "@timestamp" : "2024-11-07T03:25:56.000Z", "app" : { "extract" : { "domain" : [ "w3.org", "mikrotik.com" ], "file" : [ "winbox.exe" ], "hostname" : [ "mikrotik.com", "wiki.mikrotik.com", "www.mikrotik.com", "www.w3.org" ], "url" : [ "http://mikrotik.com", "http://wiki.mikrotik.com", "http://www.mikrotik.com/download/winbox.exe", "http://www.w3.org/1999/xhtml", "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" ] }, "http" : { "bodymd5" : "91e377f29922ef39edb4a61b5a49def2", "bodymmh3" : 27119733, "headermd5" : "508070579d3bda9d98e9ba0408c62fd3", "headermmh3" : -459858984, "title" : "RouterOS router configuration page" }, "length" : 7189 }, "asn" : "AS63874", "country" : "ID", "cpe" : "<enterprise field>: cpe", "cpecount" : "<enterprise field>: cpecount", "data" : "HTTP/1.1 200 OK\r\nConnection: close\r\nContent-Length: 7065\r\nContent-Type: text/html\r\nDate: Thu, 07 Nov 2024 03:31:21 GMT\r\nExpires: 0\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<link rel=\"icon\" href=\"/favicon.png\"/>\r\n<title>RouterOS router configuration page</title>\r\n<style type=\"text/css\">\r\nbody {\r\nfont-family: Verdana, Geneva, sans-serif;\r\nfont-size: 11px;\r\n}\r\nimg {border: none}\r\nimg:hover {opacity: 0.8;}\r\nh1 {\r\nfont-size: 1.7em;\r\ndisplay: inline;\r\nmargin-bottom: 10px;\r\n}\r\nfieldset {\r\nmargin-top: 20px;\r\nbackground: #fff;\r\npadding: 20px;\r\nborder: 1px solid #c1c1c1; \r\n}\r\n#container {\r\nwidth: 70%;\r\nmargin: 10% auto;\r\n}\r\n#box {\r\nbackground-color: #fff; \r\n-moz-border-radius: 7px; \r\n-webkit-border-radius: 7px; \r\nborder: 1px solid #c1c1c1; \r\npadding: 30px;\r\nfilter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3'); /* for IE */\r\nbackground: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); /* for webkit browsers */\r\nbackground: -moz-linear-gradient(top, #fff, #f3f3f3); /* for firefox 3.6+ */\r\n}\r\n.floater {float: left; margin-right: 10px;}\r\n.floater label {display: block; text-align: center;}\r\n\r\n#login {\r\n margin: 2em 0 4em 0;\r\n}\r\n#login h2 {\r\n font-weight: normal;\r\n font-size: 14px;\r\n margin: 0 0 0.5em 1em;\r\n}\r\n#login td {\r\n padding: 0 4px 0 0;\r\n}\r\n#login td.label {\r\n text-align: right;\r\n}\r\n#login td.toolbar {\r\n padding: 0 0 0 1em;\r\n vertical-align: top;\r\n}\r\n#login ul.toolbar {\r\n margin: 0;\r\n}\r\n#login input {\r\n margin: 2px;\r\n padding: 2px;\r\n border: 1px solid #888;\r\n box-shadow: 1px 1px 3px rgba(0,0,0,0.3);\r\n -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.3);\r\n -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.3);\r\n}\r\n#error {\r\n display:none;\r\n color:red;\r\n padding: 1em 0 0 0;\r\n}\r\nul.toolbar {\r\n font-size: 11px;\r\n text-align: left;\r\n list-style-type: none;\r\n padding: 0;\r\n margin: 2px 0 4px 2px;\r\n}\r\nul.toolbar li {\r\n float: left;\r\n vertical-align: middle;\r\n}\r\nul.toolbar a {\r\n float: none;\r\n display: block;\r\n margin: 2px 4px 2px 0;\r\n padding: 5px;\r\n\r\n background: #ddd;\r\n border: 1px solid #888;\r\n border-radius: 3px;\r\n -moz-border-radius: 3px;\r\n box-shadow:\r\n 1px 1px 2px rgba(255,255,255,0.8) inset,\r\n\t0 10px 10px -5px rgba(255,255,255,0.5) inset, /* top gradient */\r\n\t1px 1px 2px rgba(0,0,0,0.2); /* shadow */\r\n -webkit-box-shadow:\r\n 1px 1px 2px rgba(255,255,255,0.8) inset,\r\n\t0 10px 10px -5px rgba(255,255,255,0.5) inset,\r\n\t1px 1px 2px rgba(0,0,0,0.2);\r\n -moz-box-shadow:\r\n 1px 1px 2px rgba(255,255,255,0.8) inset,\r\n\t0 10px 10px -5px rgba(255,255,255,0.5) inset,\r\n\t1px 1px 2px rgba(0,0,0,0.2);\r\n color: #000;\r\n\r\n text-decoration: none;\r\n text-align: center;\r\n white-space: nowrap;\r\n cursor: inherit;\r\n min-width: 4em;\r\n\r\n -webkit-transition: background 0.2s linear, box-shadow 0.2s ease-out;\r\n -moz-transition: background 0.2s linear, box-shadow 0.2s ease-out;\r\n}\r\nul.toolbar a:hover {\r\n background: #eee;\r\n}\r\nul.toolbar a:active {\r\n background: #aaa;\r\n box-shadow: 1px 1px 2px #999 inset;\r\n -webkit-box-shadow: 1px 1px 2px #999 inset;\r\n -moz-box-shadow: 1px 1px 2px #999 inset;\r\n}\r\n</style>\r\n<script>\r\nfunction get(id) {\r\n return document.getElementById(id);\r\n}\r\nfunction trim(str) {\r\n return str.replace(/^\\s+|\\s+$/g, '');\r\n}\r\nfunction login(user, pwd, autologin) {\r\n var expires = new Date();\r\n expires.setTime(expires.getTime() + (30 * 24 * 60 * 60 * 1000));\r\n document.cookie = 'username=' + user +\r\n '; expires=' + expires.toGMTString() + '; path=/';\r\n\r\n window.name = (autologin ? 'autologin=' : 'login=') + user + '|' + pwd;\r\n window.location.replace('/webfig/' + window.location.hash);\r\n}\r\nfunction dologin() {\r\n login(get('name').value, get('password').value);\r\n}\r\nfunction loaded() {\r\n var p = window.name.split('=');\r\n if (p[0] == 'error' && p[1]) {\r\n var err = get('error');\r\n err.appendChild(document.createTextNode(p[1]));\r\n err.style.display = 'block';\r\n } else if (p[0] != 'noautologin' || p[1] != 1) {\r\n var user = '';\r\n if (user) {\r\n login(user, '', true);\r\n return;\r\n }\r\n }\r\n window.name = '';\r\n\r\n document.onkeydown = function(e) {\r\n e = e || event;\r\n if (e.keyCode == 13) {\r\n dologin();\r\n return false;\r\n }\r\n return true;\r\n };\r\n\r\n var username = null;\r\n var cookies = document.cookie.split(';');\r\n for (var i in cookies) {\r\n\tvar c = trim(cookies[i]).split('=');\r\n\tif (c[0] == 'username') {\r\n\t username = c[1];\r\n\t break;\r\n\t}\r\n }\r\n \r\n if (username != null) {\r\n\tget('name').value = username;\r\n\tget('password').focus();\r\n } else {\r\n get('name').value = 'admin';\r\n\tget('name').focus();\r\n }\r\n}\r\n</script>\r\n</head>\r\n\r\n<body onload=\"loaded()\">\r\n\r\n<div id=\"container\">\r\n\r\n <div id=\"box\">\r\n <a href=\"http://mikrotik.com\"><img src=\"mikrotik_logo.png\" style=\"float: right;\" /></a>\r\n\r\n <br style=\"clear: both;\"/>\r\n \r\n\t\t<h1>RouterOS v6.48.1</h1>\r\n \r\n <p>You have connected to a router. Administrative access only. If this device is not in your possession, please contact your local network administrator. </p>\r\n \r\n <table id=\"login\">\r\n\t<tr><td colspan=\"3\"><h2>WebFig Login:</h2>\r\n <tr><td class=\"label\">Login: <td><input id=\"name\" type=\"text\" tabindex=\"1\">\r\n\t <td class=\"toolbar\" rowspan=\"2\">\r\n <ul class=\"toolbar\">\r\n\t <li><a onclick=\"dologin()\" ondragstart=\"return false;\"><span>Login</span></a></li>\r\n </ul>\r\n <tr><td class=\"label\">Password: <td><input id=\"password\" type=\"password\" tabindex=\"2\">\r\n\t<tr><td colspan=\"3\">\r\n\t <div id=\"error\"></div>\r\n </table>\r\n \r\n <fieldset>\r\n <div class=\"floater\"> \r\n \t<a href=\"http://www.mikrotik.com/download/winbox.exe\"><img src=\"winbox.png\"/></a><br/>\r\n <label>Winbox</label>\r\n </div>\r\n \r\n <div class=\"floater\"> \r\n \t<a href=\"telnet://<ip>\"><img src=\"console.png\"/></a><br/>\r\n <label>Telnet</label>\r\n </div>\r\n\r\n \r\n \r\n <div class=\"floater\"> \r\n \t<a href=\"/graphs\"><img src=\"green.png\"/></a><br/>\r\n <label>Graphs</label>\r\n </div>\r\n \r\n \r\n <div class=\"floater\"> \r\n \t<a href=\"/help/license.html\"><img src=\"license.png\"/></a><br/>\r\n <label>License</label>\r\n </div>\r\n \r\n\t\t\t<div class=\"floater\"> \r\n \t<a href=\"http://wiki.mikrotik.com\"><img src=\"help.png\"/></a><br/>\r\n <label>Help</label>\r\n </div>\r\n\r\n</fieldset>\r\n \r\n <br style=\"clear: both\"/> \r\n <div style=\"float: right\">© mikrotik</div>\r\n\r\n </div>\r\n</div>\r\n\r\n</div>\r\n\r\n</body>\r\n</html>\r\n", "datamd5" : "85f62eea1b87fd1fdd5045981a60337a", "datammh3" : 1928090252, "device" : { "class" : "<enterprise field>: device.class", "productvendor" : "<enterprise field>: device.productvendor" }, "geolocus" : { "asn" : "AS63874", "continent" : "AS", "continentname" : "Asia", "country" : "ID", "countryname" : "Indonesia", "domain" : [ "bosowa.co.id" ], "isineu" : "false", "latitude" : "-0.789275", "location" : "-0.789275,113.921327", "longitude" : "113.921327", "netname" : "BOSOWA-ID", "organization" : "PT Celebes Media Jaringan", "subnet" : "103.53.184.0/23" }, "ip" : "103.53.184.129", "ipv6" : "false", "latitude" : "-6.1728", "location" : "-6.1728,106.8272", "longitude" : "106.8272", "node" : { "country" : "<enterprise field>: node.country", "groupid" : "<enterprise field>: node.groupid", "id" : "<enterprise field>: node.id", "physicalcountry" : "<enterprise field>: node.physicalcountry" }, "organization" : "PT Celebes Media Jaringan", "os" : "RouterOS", "osvendor" : "Mikrotik", "port" : 88, "protocol" : "http", "protocolversion" : "1.1", "reason" : "OK", "seen_date" : "2024-11-07", "source" : "datascan", "status" : 200, "subnet" : "103.53.184.0/23", "tag" : "<enterprise field>: tag", "tls" : "false", "transport" : "tcp", "url" : "/" }