HTTP/1.1 200 OK
Date: Thu, 07 Nov 2024 05:23:22 GMT
Server: lighttpd
Transfer-Encoding: chunked
Content-Type: text/html
Expires: Thu, 07 Nov 2024 05:23:22 GMT
Last-Modified: Thu, 07 Nov 2024 05:23:22 GMT
Cache-Control: no-cache
X-Frame-Options: SAMEORIGIN
Connection: close
1d3e
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- Copyright © 2010-2016 Hewlett Packard Enterprise Development LP. -->
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="no-cache">
<title>HPE OfficeConnect Switch 1820 24G J9980A</title>
<link rel="shortcut icon" href="/htdocs/login/favicon.ico?">
<link type="text/css" media="screen" rel="stylesheet" href="/htdocs/static/bt1478808613/css/jquery-ui-1.8.16.custom.css">
<link type="text/css" media="screen" rel="stylesheet" href="/htdocs/login/login.css">
<base target="_top">
</head>
<body>
<!-- Preload necessary Javascript files before page to prevent display artifacts -->
<script type="text/javascript" src="/htdocs/static/bt1478808613/js/ba-debug.js"></script>
<script type="text/javascript" src="/htdocs/static/bt1478808613/jquery/jquery_1_7_1/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="/htdocs/static/bt1478808613/jquery/jquery_ui_1_8_16/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="/htdocs/static/bt1478808613/jquery/plugins/jquery-plugins-combo.js"></script>
<div id="login_header" >
<table>
<tbody>
<tr>
<td id="login_logo">
<a href="http://www.hpe.com/" target="_blank">
<img alt="Hewlet Packard Development Company, L.P." src="/htdocs/login/login_logo.png" border="0" height="75px">
</a>
</td>
<td id="login_header_device" width="100%">FBKA_SW_Core_01
</td>
</tr>
</tbody>
</table>
</div>
<div id="login_container" >
<div id="login_form_container" class="ui-widget-content">
<table id="login_credentials" align="center">
<tbody>
<tr>
<td id="login_device">
<table align="center">
<tbody>
<tr> <td>HPE OfficeConnect Switch</td> </tr>
<tr> <td>1820 24G</td> </tr>
<tr> <td>J9980A</td> </tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td align="left" class="td_with_border">
<label for="username" style="margin-left:20px; font-size: 0.8em; font-weight:normal; color:#bbbbbb;">Username</label><br/>
<input class="ui-widget input_without_border" type="text" name="username" size="18" maxlength="64" value="" tabindex="1">
</td>
</tr>
<tr>
<td align="left" class="td_with_border">
<label for="password" style="margin-left:20px; font-size: 0.8em; font-weight:normal; color:#bbbbbb;">Password</label><br/>
<input class="ui-widget input_without_border" type="password" name="password" size="18" maxlength="64" value="" tabindex="2">
</td>
</tr>
<tr>
<td align="center">
<button id="login_button">Log In</button>
</td>
</tr>
<tr>
<td style="text-align:center;margin-top:20px;">
<a style="background-color: white;" href="http://www.hpe.com/networking/support" target="_blank">Support</a>
</td>
</tr>
</tbody>
</table>
</div>
<div id="login_copyright">
<p>
Copyright © 2010-2016 Hewlett Packard Enterprise Development LP. </p>
</div>
</div>
<script type="text/javascript">
if (window.self != window.top) {
window.top.location.replace(window.location.href);
}
var idleTimer = new $.timer(loginTimedOut, 60000, false);
function showPopup(title, contents, okClickedFunc) {
var dialogHtml = '<div id="dialog" title="' + title + '">' +
'<table width="100%" height="100%" valign="center"><tr>' +
'<td id="dialogContents" align="left">' + contents + '</td>' +
'</tr></table>' +
'</div>';
var $dialog = $(dialogHtml).appendTo('body');
idleTimer.stop();
function defaultDismissFunc() {
// this will refer to dialog element, cleanup DOM with remove()
$(this).remove();
idleTimer.reset();
}
var doneFunc = defaultDismissFunc;
if ( okClickedFunc !== undefined ) {
doneFunc = okClickedFunc;
}
$dialog.dialog({
draggable: false,
close: doneFunc,
buttons: {
"OK": doneFunc
},
modal: true,
resizable: false,
minWidth: 450
});
}
function dialogReloadPage() {
// Cleanup DOM of popup and reload at hostname root
$(this).remove();
//window.location.reload(true);
//window.open(window.location.hostname, '_self');
window.location.href = "/";
}
/**
* Event handler called in case of an error performing a jQuery Ajax method.
*
* @param event {Object} jQuery event object
* @param jqXHR {Map} jQuery XmlHttpRequest status object that holds various information
* about the XmlHttpRequest (Ajax request)
* @param settings {Map} Map of settings used to create ajax call.
* @param thrownError {Object} Error exception object with detailed information about
* what caused the error
*/
function loginFailed(event, jqXHR, settings, thrownError) {
var message = "Ajax request of \"" + settings.url + "\" failed."
debug.info(message, thrownError, jqXHR);
// Any failure is a login failure. The returned JSON will contain the error
// text.
eval("var response = " + jqXHR.responseText);
showPopup("Log In Failed", response.error);
};
function loginClick() {
idleTimer.stop();
var usernameVal = $('input[name$="username"]').val();
var passwordVal = $('input[name$="password"]').val();
var credentials = {
username: usernameVal,
password: passwordVal
};
$.post("/htdocs/login/login.lua", credentials, loginResult, 'json');
}
function loginResult(result) {
// If we got here then we were successfully logged in and the session
// cookie was established
window.open(result.redirect, '_self');
}
function loginTimedOut() {
idleTimer.stop();
showPopup("Inactivity Time Out", "The log in page has been inactive for too long. Click OK to log in again.", dialogReloadPage);
}
$(document).ready( function() {
// Register global ajax error handler
$(document).ajaxError(loginFailed);
var $loginButton = $('#login_button');
$loginButton.button();
$loginButton.click(loginClick);
function keyUp(event) {
idleTimer.reset();
if(event.keyCode == 13){
$loginButton.click();
}
}
$("td > input").focus(function(e){
$(this).parent().addClass('td_with_highlight_border');
}).blur(function(e){
$(this).parent().removeClass('td_with_highlight_border');
});
$('input[name$="username"]').keyup(keyUp).focus();
$('input[name$="password"]').keyup(keyUp);
// If we still have a session cookie then we were timed-out.
var sid = $.cookie("SID");
if ( (sid !== null) && (sid !== "") ) {
$.cookie("SID", "", { path: '/'} );
showPopup("Automatic Inactivity Log Out", "You have been automatically logged-out because of inactivity. Click OK to log in again.", dialogReloadPage);
} else {
idleTimer.play();
}
});
</script>
</body>
</html>
0
{
"@category" : "datascan",
"@timestamp" : "2024-11-07T05:23:30.000Z",
"app" : {
"extract" : {
"domain" : [
"w3.org",
"hpe.com"
],
"hostname" : [
"www.hpe.com",
"www.w3.org"
],
"url" : [
"http://www.hpe.com/",
"http://www.hpe.com/networking/support",
"http://www.w3.org/TR/html4/loose.dtd"
]
},
"http" : {
"bodymd5" : "8dc3880c5ef19a426c21ce735e909107",
"bodymmh3" : 234297616,
"component" : [
{
"product" : "jQuery",
"productversion" : "1.7.1",
"productvendor" : "jQuery"
}
],
"header" : [
{
"name" : "Last-Modified",
"value" : "Thu, 07 Nov 2024 05:23:22 GMT"
}
],
"headermd5" : "a2e92a31d4680bce76e7727b6af696db",
"headermmh3" : -1160863585,
"title" : "HPE OfficeConnect Switch 1820 24G J9980A"
},
"length" : 7785
},
"asn" : "AS136861",
"city" : "Pangkalpinang",
"country" : "ID",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nDate: Thu, 07 Nov 2024 05:23:22 GMT\r\nServer: lighttpd\r\nTransfer-Encoding: chunked\r\nContent-Type: text/html\r\nExpires: Thu, 07 Nov 2024 05:23:22 GMT\r\nLast-Modified: Thu, 07 Nov 2024 05:23:22 GMT\r\nCache-Control: no-cache\r\nX-Frame-Options: SAMEORIGIN\r\nConnection: close\r\n\r\n1d3e\r\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- Copyright © 2010-2016 Hewlett Packard Enterprise Development LP. -->\n<html>\r\n\n<head>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<meta http-equiv=\"Pragma\" content=\"no-cache\">\n<title>HPE OfficeConnect Switch 1820 24G J9980A</title>\n<link rel=\"shortcut icon\" href=\"/htdocs/login/favicon.ico?\">\n<link type=\"text/css\" media=\"screen\" rel=\"stylesheet\" href=\"/htdocs/static/bt1478808613/css/jquery-ui-1.8.16.custom.css\">\n<link type=\"text/css\" media=\"screen\" rel=\"stylesheet\" href=\"/htdocs/login/login.css\">\n<base target=\"_top\">\n</head>\r\n\n\n<body>\n\n<!-- Preload necessary Javascript files before page to prevent display artifacts -->\n<script type=\"text/javascript\" src=\"/htdocs/static/bt1478808613/js/ba-debug.js\"></script>\n<script type=\"text/javascript\" src=\"/htdocs/static/bt1478808613/jquery/jquery_1_7_1/jquery-1.7.1.min.js\"></script>\n<script type=\"text/javascript\" src=\"/htdocs/static/bt1478808613/jquery/jquery_ui_1_8_16/jquery-ui-1.8.16.custom.min.js\"></script>\n<script type=\"text/javascript\" src=\"/htdocs/static/bt1478808613/jquery/plugins/jquery-plugins-combo.js\"></script>\n\n<div id=\"login_header\" >\n <table>\n <tbody>\n\n <tr>\n <td id=\"login_logo\">\n <a href=\"http://www.hpe.com/\" target=\"_blank\">\n <img alt=\"Hewlet Packard Development Company, L.P.\" src=\"/htdocs/login/login_logo.png\" border=\"0\" height=\"75px\">\n </a>\n </td>\n <td id=\"login_header_device\" width=\"100%\">FBKA_SW_Core_01 \n </td>\n </tr>\n\n </tbody>\n </table>\n</div>\n\n<div id=\"login_container\" >\n <div id=\"login_form_container\" class=\"ui-widget-content\">\n <table id=\"login_credentials\" align=\"center\">\n <tbody>\n\n <tr>\n <td id=\"login_device\">\n <table align=\"center\">\n <tbody>\n <tr> <td>HPE OfficeConnect Switch</td> </tr>\n <tr> <td>1820 24G</td> </tr>\n <tr> <td>J9980A</td> </tr>\n </tbody>\n </table>\n </td>\n </tr> \n <tr>\n <td align=\"left\" class=\"td_with_border\">\n <label for=\"username\" style=\"margin-left:20px; font-size: 0.8em; font-weight:normal; color:#bbbbbb;\">Username</label><br/>\n <input class=\"ui-widget input_without_border\" type=\"text\" name=\"username\" size=\"18\" maxlength=\"64\" value=\"\" tabindex=\"1\">\n </td>\n </tr>\n <tr>\n <td align=\"left\" class=\"td_with_border\">\n <label for=\"password\" style=\"margin-left:20px; font-size: 0.8em; font-weight:normal; color:#bbbbbb;\">Password</label><br/>\n <input class=\"ui-widget input_without_border\" type=\"password\" name=\"password\" size=\"18\" maxlength=\"64\" value=\"\" tabindex=\"2\">\n </td>\n </tr>\n <tr>\n <td align=\"center\">\n <button id=\"login_button\">Log In</button>\n </td>\n </tr>\n\n <tr>\n <td style=\"text-align:center;margin-top:20px;\">\n <a style=\"background-color: white;\" href=\"http://www.hpe.com/networking/support\" target=\"_blank\">Support</a>\n </td>\n </tr>\n\n </tbody>\n </table>\n\n </div>\n\n <div id=\"login_copyright\">\n <p>\n Copyright © 2010-2016 Hewlett Packard Enterprise Development LP. </p>\n </div>\n\n</div>\n\n<script type=\"text/javascript\">\n\n if (window.self != window.top) {\n window.top.location.replace(window.location.href);\n }\n\n var idleTimer = new $.timer(loginTimedOut, 60000, false);\n\n function showPopup(title, contents, okClickedFunc) {\n var dialogHtml = '<div id=\"dialog\" title=\"' + title + '\">' +\n '<table width=\"100%\" height=\"100%\" valign=\"center\"><tr>' +\n '<td id=\"dialogContents\" align=\"left\">' + contents + '</td>' +\n '</tr></table>' +\n '</div>';\n\n var $dialog = $(dialogHtml).appendTo('body');\n\n idleTimer.stop();\n\n function defaultDismissFunc() {\n // this will refer to dialog element, cleanup DOM with remove()\n $(this).remove();\n idleTimer.reset();\n }\n\n var doneFunc = defaultDismissFunc;\n\n if ( okClickedFunc !== undefined ) {\n doneFunc = okClickedFunc;\n }\n\n $dialog.dialog({\n draggable: false,\n close: doneFunc,\n buttons: {\n \"OK\": doneFunc\n },\n modal: true,\n resizable: false,\n minWidth: 450\n });\n }\n\n function dialogReloadPage() {\n // Cleanup DOM of popup and reload at hostname root\n $(this).remove();\n //window.location.reload(true);\n //window.open(window.location.hostname, '_self');\n window.location.href = \"/\";\n }\n\n /**\n * Event handler called in case of an error performing a jQuery Ajax method.\n *\n * @param event {Object} jQuery event object\n * @param jqXHR {Map} jQuery XmlHttpRequest status object that holds various information\n * about the XmlHttpRequest (Ajax request)\n * @param settings {Map} Map of settings used to create ajax call.\n * @param thrownError {Object} Error exception object with detailed information about\n * what caused the error\n */\n function loginFailed(event, jqXHR, settings, thrownError) {\n var message = \"Ajax request of \\\"\" + settings.url + \"\\\" failed.\"\n debug.info(message, thrownError, jqXHR);\n\n // Any failure is a login failure. The returned JSON will contain the error\n // text.\n eval(\"var response = \" + jqXHR.responseText);\n showPopup(\"Log In Failed\", response.error);\n };\n\n function loginClick() {\n idleTimer.stop();\n\n var usernameVal = $('input[name$=\"username\"]').val();\n var passwordVal = $('input[name$=\"password\"]').val();\n\n var credentials = {\n username: usernameVal,\n password: passwordVal\n };\n\n $.post(\"/htdocs/login/login.lua\", credentials, loginResult, 'json');\n }\n\n function loginResult(result) {\n // If we got here then we were successfully logged in and the session\n // cookie was established\n window.open(result.redirect, '_self');\n }\n\n function loginTimedOut() {\n idleTimer.stop();\n showPopup(\"Inactivity Time Out\", \"The log in page has been inactive for too long. Click OK to log in again.\", dialogReloadPage);\n }\n\n\n $(document).ready( function() {\n // Register global ajax error handler\n $(document).ajaxError(loginFailed);\n\n var $loginButton = $('#login_button');\n $loginButton.button();\n $loginButton.click(loginClick);\n\n function keyUp(event) {\n idleTimer.reset();\n if(event.keyCode == 13){\n $loginButton.click();\n }\n }\n\n $(\"td > input\").focus(function(e){\n $(this).parent().addClass('td_with_highlight_border');\n }).blur(function(e){\n $(this).parent().removeClass('td_with_highlight_border');\n });\n\n $('input[name$=\"username\"]').keyup(keyUp).focus();\n $('input[name$=\"password\"]').keyup(keyUp);\n\n\n // If we still have a session cookie then we were timed-out.\n var sid = $.cookie(\"SID\");\n\n if ( (sid !== null) && (sid !== \"\") ) {\n $.cookie(\"SID\", \"\", { path: '/'} );\n showPopup(\"Automatic Inactivity Log Out\", \"You have been automatically logged-out because of inactivity. Click OK to log in again.\", dialogReloadPage);\n } else {\n idleTimer.play();\n }\n\n });\n\n</script>\n\n\n</body>\n</html>\n\n\r\n0\r\n\r\n",
"datamd5" : "3a383327ac91a06d5311a82b906bd584",
"datammh3" : -716850102,
"device" : {
"class" : "<enterprise field>: device.class"
},
"forward" : "103.103.146.138",
"geolocus" : {
"asn" : "AS136861",
"continent" : "AS",
"continentname" : "Asia",
"country" : "ID",
"countryname" : "Indonesia",
"domain" : [
"artamedianet.co.id"
],
"isineu" : "false",
"latitude" : "-0.789275",
"location" : "-0.789275,113.921327",
"longitude" : "113.921327",
"netname" : "ARTAMEDIANET-ID",
"organization" : "PT. ARTAMEDIA CITRA TELEMATIKA INDONESIA",
"subnet" : "103.103.144.0/22"
},
"hostname" : [
"103.103.146.138"
],
"ip" : "103.103.146.138",
"ipv6" : "false",
"latitude" : "-2.1212",
"location" : "-2.1212,106.1176",
"longitude" : "106.1176",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "PT. ARTAMEDIA CITRA TELEMATIKA INDONESIA",
"port" : 1604,
"product" : "lighttpd",
"productvendor" : "lighttpd",
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"seen_date" : "2024-11-07",
"source" : "urlscan::redirect",
"status" : 200,
"subnet" : "103.103.144.0/22",
"tag" : "<enterprise field>: tag",
"tls" : "false",
"transport" : "tcp",
"url" : "/htdocs/login/login.lsp"
}