HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=8BF79DB992C87E5558D3AFB752220D9B; Path=/pentaho
Content-Type: text/html;charset=UTF-8
Date: Thu, 07 Nov 2024 03:57:27 GMT
Connection: close
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pentaho User Console - Login</title>
<style type="text/css">
<!--
body,td,th {
color: #000000;
}
body {
background-color: #FFFFFF;
margin: 0px;
}
p {
margin: 0px;
padding: 0px;
}
A:link,A:visited,A:active {
color: #7e932f;
text-decoration: underline;
}
A:hover {
color: #ca6333;
text-decoration: underline;
}
.login-banner {
background-image: url(/pentaho-style/images/login/start_banner.png);
background-repeat: repeat-x;
padding: 90px 0px 0px 0px;
}
.lrg_box_top {
background-image: url(/pentaho-style/images/login/start_lrg_box_top.png)
;
background-repeat: no-repeat;
height: 85px;
text-align: center;
vertical-align: bottom;
}
.lrg_box_bottom {
background-image:
url(/pentaho-style/images/login/start_lrg_box_bottom.png);
background-repeat: no-repeat;
background-position: bottom;
padding: 0px 0px 25px 0px;
}
.sm_box_top {
background-image: url(/pentaho-style/images/login/start_sm_box_top.png);
background-repeat: no-repeat;
text-align: center;
vertical-align: bottom;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1.2em;
color: #7e932f;
font-weight: 300;
text-align: left;
padding: 10px 0px 0px 18px;
width: 270px;
}
.sm_box_bottom {
background-image:
url(/pentaho-style/images/login/start_sm_box_bottom.png);
background-repeat: no-repeat;
background-position: bottom left;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .85em;
color: #000000;
text-align: left;
vertical-align: top;
padding: 10px 12px 14px 18px;
width: 270px;
}
.start_login_title {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1.2em;
color: #7e932f;
font-weight: 300;
text-align: left;
padding: 18px 0px 0px 18px;
}
.start_content {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .85em;
color: #000000;
text-align: left;
vertical-align: bottom;
padding: 10px 0px 0px 18px;
}
.btn_login_box {
background-image: url(/pentaho-style/images/login/start_btn_login.png);
width: 204px;
height: 69px;
text-align: center;
margin: 18px;
cursor: pointer;
}
.btn_login_box-hover {
background-image:
url(/pentaho-style/images/login/start_btn_login_hover.png);
width: 204px;
height: 69px;
text-align: center;
margin: 18px;
cursor: pointer;
}
.btn_login_title {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1em;
font-weight: bold;
text-align: center;
vertical-align: bottom;
height: 28px;
}
.btn_login_text {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1.5em;
font-weight: 300;
text-align: center;
vertical-align: top;
height: 41px;
}
.start_footer {
background-image: url(/pentaho-style/images/login/start_footer_bg.png);
background-repeat: repeat-x;
background-position: top;
padding: 20px 0px 0px 0px;
margin-top: 20px;
vertical-align: bottom;
}
.footer_txt {
width: 564px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .7em;
text-align: left;
vertical-align: top;
}
.button {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .85em;
font-weight: 300;
cursor: pointer;
}
.button .button_left {
background-image: url('/pentaho-style/images/login/button_left.png');
}
.button .button_middle {
background-image: url('/pentaho-style/images/login/button_middle.png');
background-repeat: repeat-x;
white-space: nowrap;
line-height: 24px;
vertical-align: top;
}
.button .button_right {
background-image: url('/pentaho-style/images/login/button_right.png');
}
.button_over {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .85em;
font-weight: 300;
cursor: pointer;
}
.button_over .button_left {
background-image:
url('/pentaho-style/images/login/button_left_over.png');
}
.button_over .button_middle {
background-image:
url('/pentaho-style/images/login/button_middle_over.png');
background-repeat: repeat-x;
white-space: nowrap;
line-height: 24px;
vertical-align: top;
}
.button_over .button_right {
background-image:
url('/pentaho-style/images/login/button_right_over.png');
}
.text {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: .85em;
color: #000000;
text-align: left;
}
-->
</style>
<meta name="gwt:property" content="locale=en_US">
<link rel="shortcut icon" href="/pentaho-style/favicon.ico" />
<link href="/pentaho-style/styles-new.css" rel="stylesheet"
type="text/css" />
<script type="text/javascript">
function logout(){
var req = null;
if (window.XMLHttpRequest){
req = new XMLHttpRequest();
} else if(windw.ActiveXObject){
req = new ActiveXObject("Microsoft.XMLHTTP");
}
var responseHandler = function(){
if(req.readyState == 4){
if(req.status == 200){
openLoginDialog('');
} else {
window.location.href = window.location.href;
}
}
}
if(req == null){
document.location="Logout;jsessionid=8BF79DB992C87E5558D3AFB752220D9B";
} else {
req.onreadystatechange = responseHandler;
req.open("GET","Logout;jsessionid=8BF79DB992C87E5558D3AFB752220D9B",true);
req.send("");
}
}
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0"
class="login-banner">
<tr>
<td align="center" bordercolor="0"><!--Begin First Box Row -->
<table width="564" border="0" cellspacing="0" cellpadding="0"
style="margin-bottom: 22px;" align="center">
<tr>
<td class="lrg_box_top"><a href="http://www.pentaho.com"
target="_blank"><img
src="/pentaho-style/images/login/start_logo.png"
alt="Pentaho Corporation" width="210" height="62" border="0" /></a></td>
</tr>
<tr>
<td class="lrg_box_bottom">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" class="start_login_title">Welcome to the
Pentaho User Console</td>
</tr>
<tr>
<td class="start_content">
<p>The Pentaho User Console provides access to powerful
Business Intelligence (BI) capabilities found in the Pentaho BI
Suite. Login or use the links below to learn more about Pentaho's
reporting, analysis, dashboards, data mining and data integration.</p>
</td>
<td><!--Begin Login Button -->
<table class="btn_login_box" border="0" cellspacing="0"
cellpadding="0"
onMouseOver="this.className='btn_login_box-hover'"
onMouseOut="this.className='btn_login_box'"
onBlur="this.className='btn_login_box'"
onClick="this.className='btn_login_box';openLoginDialog('')">
<tr>
<td class="btn_login_title">Pentaho User Console</td>
</tr>
<tr>
<td class="btn_login_text">Login</td>
</tr>
</table>
<!--End Login Button --></td>
</tr>
</table>
</td>
</tr>
</table>
<!--End First Box Row --> <!--Begin Second Box Row --> <!--Begin Enterprise Boxes -->
<table width="564" border="0" cellspacing="0" cellpadding="0"
style="margin-bottom: 22px;" align="center">
<tr>
<td class="sm_box_top">Achieve BI Success</td>
<td><img src="/pentaho-style/images/login/spacer.png"
width="20" /></td>
<td class="sm_box_top">Getting Started</td>
</tr>
<tr>
<td class="sm_box_bottom" height="100%">
<table cellspacing="0" cellpadding="0" height="100%" width="100%"
border="0">
<tr>
<td height="100%" valign="top" class="text">Deploy the
world's most popular open source BI suite with confidence,
security, and far lower total cost of ownership than proprietary
alternatives with the Pentaho Enterprise Edition products.<br />
</td>
</tr>
<tr>
<td><!-- GUI Button -->
<table cellspacing="0" cellpadding="0" border="0" class="button"
width="50" onMouseOver="this.className='button_over'"
onMouseOut="this.className='button'" align="right"
style="margin-top: 6px;"
onClick="window.open('http://www.pentaho.com/products/enterprise', '_blank');">
<tr>
<td width="7" height="27" class="button_left"><img
src="/pentaho-style/images/login/spacer.png" width="7"
height="27" /><br />
</td>
<td>
<td class="button_middle" width="100%">Learn More</td>
<td width="7" height="27" class="button_right"><img
src="/pentaho-style/images/login/spacer.png" width="7"
height="27" /><br />
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- End button --></td>
<td><img src="/pentaho-style/images/login/spacer.png"
width="20" /></td>
<td class="sm_box_bottom" height="100%">
<table cellspacing="0" cellpadding="0" height="100%" width="100%"
border="0">
<tr>
<td height="100%" valign="top" class="text">The Pentaho BI
Suite provides a full spectrum of BI capabilities. Get a quick
overview of how to create and share reports and analytics with the
<span style="font-style: italic;">Evaluating Pentaho
Reporting</span> guide. <br />
</td>
</tr>
<tr>
<td><!-- GUI Button -->
<table cellspacing="0" cellpadding="0" border="0" class="button"
width="50" onMouseOver="this.className='button_over'"
onMouseOut="this.className='button'" align="right"
style="margin-top: 6px;"
onClick="window.open(window.location.href.replace('Login', 'docs/community_user_guide.pdf'), '_blank');">
<tr>
<td width="7" height="27" class="button_left"><img
src="/pentaho-style/images/login/spacer.png" width="7"
height="27" /><br />
</td>
<td>
<td class="button_middle" width="100%">Download PDF</td>
<td width="7" height="27" class="button_right"><img
src="/pentaho-style/images/login/spacer.png" width="7"
height="27" /><br />
</td>
</tr>
</table>
<!-- End button --></td>
</tr>
</table>
</td>
</tr>
</table>
<!--End Enterprise Boxes --> <!--End Second Box Row --></td>
</tr>
<!--Begin Footer -->
<tr>
<td align="center" class="start_footer">
<table width="563" border="0" cellspacing="0" cellpadding="0"
style="margin-bottom: 22px;" align="center">
<tr>
<td class="footer_txt">Supplied free of charge with no support,
no certification, no maintenance, no warranty and no indemnity by
Pentaho or its Certified Partners. <a
href="http://www.pentaho.com/products/enterprise" target="_blank">Consider
the Pentaho Enterprise Edition</a>: Save time, resources, money and
mitigate risk. <br />
© 2005-2024 Pentaho Corporation. All rights reserved.</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
<script language='javascript' src='mantleLogin/mantleLogin.nocache.js'></script>
</html>
{
"@category" : "datascan",
"@timestamp" : "2024-11-07T03:17:22.000Z",
"app" : {
"extract" : {
"domain" : [
"pentaho.com"
],
"file" : [
"community_user_guide.pdf"
],
"hostname" : [
"www.pentaho.com"
],
"url" : [
"http://www.pentaho.com",
"http://www.pentaho.com/products/enterprise"
]
},
"http" : {
"bodymd5" : "3f0736e35caeddc0c9d88f32166b7c72",
"bodymmh3" : -1159024182,
"component" : [
{
"productvendor" : "Oracle",
"product" : "Java"
}
],
"headermd5" : "948d3fb2945a14226856a394f0823f07",
"headermmh3" : 123963500,
"title" : "Pentaho User Console - Login"
},
"length" : 11591
},
"asn" : "AS262204",
"country" : "SV",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nServer: Apache-Coyote/1.1\r\nSet-Cookie: JSESSIONID=8BF79DB992C87E5558D3AFB752220D9B; Path=/pentaho\r\nContent-Type: text/html;charset=UTF-8\r\nDate: Thu, 07 Nov 2024 03:57:27 GMT\r\nConnection: close\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<html>\r\n<head>\r\n\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<title>Pentaho User Console - Login</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody,td,th {\r\n\tcolor: #000000;\r\n}\r\n\r\nbody {\r\n\tbackground-color: #FFFFFF;\r\n\tmargin: 0px;\r\n}\r\n\r\np {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\nA:link,A:visited,A:active {\r\n\tcolor: #7e932f;\r\n\ttext-decoration: underline;\r\n}\r\n\r\nA:hover {\r\n\tcolor: #ca6333;\r\n\ttext-decoration: underline;\r\n}\r\n\r\n.login-banner {\r\n\tbackground-image: url(/pentaho-style/images/login/start_banner.png);\r\n\tbackground-repeat: repeat-x;\r\n\tpadding: 90px 0px 0px 0px;\r\n}\r\n\r\n.lrg_box_top {\r\n\tbackground-image: url(/pentaho-style/images/login/start_lrg_box_top.png)\r\n\t\t;\r\n\tbackground-repeat: no-repeat;\r\n\theight: 85px;\r\n\ttext-align: center;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n.lrg_box_bottom {\r\n\tbackground-image:\r\n\t\turl(/pentaho-style/images/login/start_lrg_box_bottom.png);\r\n\tbackground-repeat: no-repeat;\r\n\tbackground-position: bottom;\r\n\tpadding: 0px 0px 25px 0px;\r\n}\r\n\r\n.sm_box_top {\r\n\tbackground-image: url(/pentaho-style/images/login/start_sm_box_top.png);\r\n\tbackground-repeat: no-repeat;\r\n\ttext-align: center;\r\n\tvertical-align: bottom;\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: 1.2em;\r\n\tcolor: #7e932f;\r\n\tfont-weight: 300;\r\n\ttext-align: left;\r\n\tpadding: 10px 0px 0px 18px;\r\n\twidth: 270px;\r\n}\r\n\r\n.sm_box_bottom {\r\n\tbackground-image:\r\n\t\turl(/pentaho-style/images/login/start_sm_box_bottom.png);\r\n\tbackground-repeat: no-repeat;\r\n\tbackground-position: bottom left;\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .85em;\r\n\tcolor: #000000;\r\n\ttext-align: left;\r\n\tvertical-align: top;\r\n\tpadding: 10px 12px 14px 18px;\r\n\twidth: 270px;\r\n}\r\n\r\n.start_login_title {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: 1.2em;\r\n\tcolor: #7e932f;\r\n\tfont-weight: 300;\r\n\ttext-align: left;\r\n\tpadding: 18px 0px 0px 18px;\r\n}\r\n\r\n.start_content {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .85em;\r\n\tcolor: #000000;\r\n\ttext-align: left;\r\n\tvertical-align: bottom;\r\n\tpadding: 10px 0px 0px 18px;\r\n}\r\n\r\n.btn_login_box {\r\n\tbackground-image: url(/pentaho-style/images/login/start_btn_login.png);\r\n\twidth: 204px;\r\n\theight: 69px;\r\n\ttext-align: center;\r\n\tmargin: 18px;\r\n\tcursor: pointer;\r\n}\r\n\r\n.btn_login_box-hover {\r\n\tbackground-image:\r\n\t\turl(/pentaho-style/images/login/start_btn_login_hover.png);\r\n\twidth: 204px;\r\n\theight: 69px;\r\n\ttext-align: center;\r\n\tmargin: 18px;\r\n\tcursor: pointer;\r\n}\r\n\r\n.btn_login_title {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: 1em;\r\n\tfont-weight: bold;\r\n\ttext-align: center;\r\n\tvertical-align: bottom;\r\n\theight: 28px;\r\n}\r\n\r\n.btn_login_text {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: 1.5em;\r\n\tfont-weight: 300;\r\n\ttext-align: center;\r\n\tvertical-align: top;\r\n\theight: 41px;\r\n}\r\n\r\n.start_footer {\r\n\tbackground-image: url(/pentaho-style/images/login/start_footer_bg.png);\r\n\tbackground-repeat: repeat-x;\r\n\tbackground-position: top;\r\n\tpadding: 20px 0px 0px 0px;\r\n\tmargin-top: 20px;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n.footer_txt {\r\n\twidth: 564px;\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .7em;\r\n\ttext-align: left;\r\n\tvertical-align: top;\r\n}\r\n\r\n.button {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .85em;\r\n\tfont-weight: 300;\r\n\tcursor: pointer;\r\n}\r\n\r\n.button .button_left {\r\n\tbackground-image: url('/pentaho-style/images/login/button_left.png');\r\n}\r\n\r\n.button .button_middle {\r\n\tbackground-image: url('/pentaho-style/images/login/button_middle.png');\r\n\tbackground-repeat: repeat-x;\r\n\twhite-space: nowrap;\r\n\tline-height: 24px;\r\n\tvertical-align: top;\r\n}\r\n\r\n.button .button_right {\r\n\tbackground-image: url('/pentaho-style/images/login/button_right.png');\r\n}\r\n\r\n.button_over {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .85em;\r\n\tfont-weight: 300;\r\n\tcursor: pointer;\r\n}\r\n\r\n.button_over .button_left {\r\n\tbackground-image:\r\n\t\turl('/pentaho-style/images/login/button_left_over.png');\r\n}\r\n\r\n.button_over .button_middle {\r\n\tbackground-image:\r\n\t\turl('/pentaho-style/images/login/button_middle_over.png');\r\n\tbackground-repeat: repeat-x;\r\n\twhite-space: nowrap;\r\n\tline-height: 24px;\r\n\tvertical-align: top;\r\n}\r\n\r\n.button_over .button_right {\r\n\tbackground-image:\r\n\t\turl('/pentaho-style/images/login/button_right_over.png');\r\n}\r\n\r\n.text {\r\n\tfont-family: \"Trebuchet MS\", Arial, Helvetica, sans-serif;\r\n\tfont-size: .85em;\r\n\tcolor: #000000;\r\n\ttext-align: left;\r\n}\r\n-->\r\n</style>\r\n<meta name=\"gwt:property\" content=\"locale=en_US\">\r\n<link rel=\"shortcut icon\" href=\"/pentaho-style/favicon.ico\" />\r\n<link href=\"/pentaho-style/styles-new.css\" rel=\"stylesheet\"\r\n\ttype=\"text/css\" />\r\n\r\n<script type=\"text/javascript\">\r\n\t\tfunction logout(){\r\n\t\t\tvar req = null;\r\n\t\t\tif (window.XMLHttpRequest){\r\n\t\t\t req = new XMLHttpRequest();\r\n\t\t\t} else if(windw.ActiveXObject){\r\n\t\t\t req = new ActiveXObject(\"Microsoft.XMLHTTP\");\r\n\t\t\t}\r\n\t\t\tvar responseHandler = function(){\r\n\t\t\t if(req.readyState == 4){\r\n\t\t\t if(req.status == 200){\r\n\t\t\t openLoginDialog('');\r\n\t\t\t } else {\r\n\t\t\t window.location.href = window.location.href; \r\n\t\t\t }\r\n\t\t\t }\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif(req == null){\r\n\t\t\t document.location=\"Logout;jsessionid=8BF79DB992C87E5558D3AFB752220D9B\";\r\n\t\t\t} else {\r\n\t\t req.onreadystatechange = responseHandler;\r\n\t\t req.open(\"GET\",\"Logout;jsessionid=8BF79DB992C87E5558D3AFB752220D9B\",true);\r\n\t\t req.send(\"\");\r\n\t\t\t}\r\n\t\t}\r\n </script>\r\n\r\n</head>\r\n\r\n<body>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\r\n\tclass=\"login-banner\">\r\n\t<tr>\r\n\t\t<td align=\"center\" bordercolor=\"0\"><!--Begin First Box Row -->\r\n\t\t<table width=\"564\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\r\n\t\t\tstyle=\"margin-bottom: 22px;\" align=\"center\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\"lrg_box_top\"><a href=\"http://www.pentaho.com\"\r\n\t\t\t\t\ttarget=\"_blank\"><img\r\n\t\t\t\t\tsrc=\"/pentaho-style/images/login/start_logo.png\"\r\n\t\t\t\t\talt=\"Pentaho Corporation\" width=\"210\" height=\"62\" border=\"0\" /></a></td>\r\n\t\t\t</tr>\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\"lrg_box_bottom\">\r\n\t\t\t\t<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td colspan=\"2\" class=\"start_login_title\">Welcome to the\r\n\t\t\t\t\t\tPentaho User Console</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td class=\"start_content\">\r\n\t\t\t\t\t\t<p>The Pentaho User Console provides access to powerful\r\n\t\t\t\t\t\tBusiness Intelligence (BI) capabilities found in the Pentaho BI\r\n\t\t\t\t\t\tSuite. Login or use the links below to learn more about Pentaho's\r\n\t\t\t\t\t\treporting, analysis, dashboards, data mining and data integration.</p>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t<td><!--Begin Login Button -->\r\n\t\t\t\t\t\t<table class=\"btn_login_box\" border=\"0\" cellspacing=\"0\"\r\n\t\t\t\t\t\t\tcellpadding=\"0\"\r\n\t\t\t\t\t\t\tonMouseOver=\"this.className='btn_login_box-hover'\"\r\n\t\t\t\t\t\t\tonMouseOut=\"this.className='btn_login_box'\"\r\n\t\t\t\t\t\t\tonBlur=\"this.className='btn_login_box'\"\r\n\t\t\t\t\t\t\tonClick=\"this.className='btn_login_box';openLoginDialog('')\">\r\n\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<td class=\"btn_login_title\">Pentaho User Console</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<td class=\"btn_login_text\">Login</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t<!--End Login Button --></td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</table>\r\n\t\t\t\t</td>\r\n\t\t\t</tr>\r\n\t\t</table>\r\n\t\t<!--End First Box Row --> <!--Begin Second Box Row --> <!--Begin Enterprise Boxes -->\r\n\t\t<table width=\"564\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\r\n\t\t\tstyle=\"margin-bottom: 22px;\" align=\"center\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\"sm_box_top\">Achieve BI Success</td>\r\n\t\t\t\t<td><img src=\"/pentaho-style/images/login/spacer.png\"\r\n\t\t\t\t\twidth=\"20\" /></td>\r\n\t\t\t\t<td class=\"sm_box_top\">Getting Started</td>\r\n\t\t\t</tr>\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\"sm_box_bottom\" height=\"100%\">\r\n\t\t\t\t<table cellspacing=\"0\" cellpadding=\"0\" height=\"100%\" width=\"100%\"\r\n\t\t\t\t\tborder=\"0\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td height=\"100%\" valign=\"top\" class=\"text\">Deploy the\r\n\t\t\t\t\t\tworld's most popular open source BI suite with confidence,\r\n\t\t\t\t\t\tsecurity, and far lower total cost of ownership than proprietary\r\n\t\t\t\t\t\talternatives with the Pentaho Enterprise Edition products.<br />\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td><!-- GUI Button -->\r\n\t\t\t\t\t\t<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"button\"\r\n\t\t\t\t\t\t\twidth=\"50\" onMouseOver=\"this.className='button_over'\"\r\n\t\t\t\t\t\t\tonMouseOut=\"this.className='button'\" align=\"right\"\r\n\t\t\t\t\t\t\tstyle=\"margin-top: 6px;\"\r\n\t\t\t\t\t\t\tonClick=\"window.open('http://www.pentaho.com/products/enterprise', '_blank');\">\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<td width=\"7\" height=\"27\" class=\"button_left\"><img\r\n\t\t\t\t\t\t\t\t\tsrc=\"/pentaho-style/images/login/spacer.png\" width=\"7\"\r\n\t\t\t\t\t\t\t\t\theight=\"27\" /><br />\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t<td class=\"button_middle\" width=\"100%\">Learn More</td>\r\n\t\t\t\t\t\t\t\t<td width=\"7\" height=\"27\" class=\"button_right\"><img\r\n\t\t\t\t\t\t\t\t\tsrc=\"/pentaho-style/images/login/spacer.png\" width=\"7\"\r\n\t\t\t\t\t\t\t\t\theight=\"27\" /><br />\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</table>\r\n\t\t\t\t<!-- End button --></td>\r\n\t\t\t\t<td><img src=\"/pentaho-style/images/login/spacer.png\"\r\n\t\t\t\t\twidth=\"20\" /></td>\r\n\t\t\t\t<td class=\"sm_box_bottom\" height=\"100%\">\r\n\r\n\t\t\t\t<table cellspacing=\"0\" cellpadding=\"0\" height=\"100%\" width=\"100%\"\r\n\t\t\t\t\tborder=\"0\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td height=\"100%\" valign=\"top\" class=\"text\">The Pentaho BI\r\n\t\t\t\t\t\tSuite provides a full spectrum of BI capabilities. Get a quick\r\n\t\t\t\t\t\toverview of how to create and share reports and analytics with the\r\n\t\t\t\t\t\t<span style=\"font-style: italic;\">Evaluating Pentaho\r\n\t\t\t\t\t\tReporting</span> guide. <br />\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td><!-- GUI Button -->\r\n\t\t\t\t\t\t<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"button\"\r\n\t\t\t\t\t\t\twidth=\"50\" onMouseOver=\"this.className='button_over'\"\r\n\t\t\t\t\t\t\tonMouseOut=\"this.className='button'\" align=\"right\"\r\n\t\t\t\t\t\t\tstyle=\"margin-top: 6px;\"\r\n\t\t\t\t\t\t\tonClick=\"window.open(window.location.href.replace('Login', 'docs/community_user_guide.pdf'), '_blank');\">\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<td width=\"7\" height=\"27\" class=\"button_left\"><img\r\n\t\t\t\t\t\t\t\t\tsrc=\"/pentaho-style/images/login/spacer.png\" width=\"7\"\r\n\t\t\t\t\t\t\t\t\theight=\"27\" /><br />\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t<td class=\"button_middle\" width=\"100%\">Download PDF</td>\r\n\t\t\t\t\t\t\t\t<td width=\"7\" height=\"27\" class=\"button_right\"><img\r\n\t\t\t\t\t\t\t\t\tsrc=\"/pentaho-style/images/login/spacer.png\" width=\"7\"\r\n\t\t\t\t\t\t\t\t\theight=\"27\" /><br />\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t<!-- End button --></td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</table>\r\n\t\t\t\t</td>\r\n\t\t\t</tr>\r\n\t\t</table>\r\n\t\t<!--End Enterprise Boxes --> <!--End Second Box Row --></td>\r\n\t</tr>\r\n\t<!--Begin Footer -->\r\n\t<tr>\r\n\t\t<td align=\"center\" class=\"start_footer\">\r\n\t\t<table width=\"563\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\r\n\t\t\tstyle=\"margin-bottom: 22px;\" align=\"center\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\"footer_txt\">Supplied free of charge with no support,\r\n\t\t\t\tno certification, no maintenance, no warranty and no indemnity by\r\n\t\t\t\tPentaho or its Certified Partners. <a\r\n\t\t\t\t\thref=\"http://www.pentaho.com/products/enterprise\" target=\"_blank\">Consider\r\n\t\t\t\tthe Pentaho Enterprise Edition</a>: Save time, resources, money and\r\n\t\t\t\tmitigate risk. <br />\r\n\t\t\t\t© 2005-2024 Pentaho Corporation. All rights reserved.</td>\r\n\t\t\t</tr>\r\n\t\t</table>\r\n\t\t</td>\r\n\t</tr>\r\n</table>\r\n</body>\r\n\r\n\r\n<script language='javascript' src='mantleLogin/mantleLogin.nocache.js'></script>\r\n\r\n</html>\r\n",
"datamd5" : "b1f6ce60cccb5b31e84d7fa5761190f6",
"datammh3" : 1579706824,
"device" : {
"class" : "<enterprise field>: device.class"
},
"forward" : "168.243.48.6",
"geolocus" : {
"asn" : "AS262204",
"continent" : "NA",
"continentname" : "North America",
"country" : "SV",
"countryname" : "El Salvador",
"domain" : [
"telecam.net"
],
"isineu" : "false",
"latitude" : "13.794185",
"location" : "13.794185,-88.89653",
"longitude" : "-88.89653",
"netname" : "SV-TASC1-LACNIC",
"organization" : "Telecomunicaciones de America S.A. de C.V.",
"subnet" : "168.243.48.0/24"
},
"hostname" : [
"168.243.48.6"
],
"ip" : "168.243.48.6",
"ipv6" : "false",
"latitude" : "13.8333",
"location" : "13.8333,-88.9167",
"longitude" : "-88.9167",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "Telecomunicaciones de America S.A. de C.V.",
"port" : 512,
"product" : "Coyote HTTP Connector",
"productvendor" : "Apache",
"productversion" : "1.1",
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"seen_date" : "2024-11-07",
"source" : "urlscan::redirect",
"status" : 200,
"subnet" : "168.243.48.0/24",
"tls" : "false",
"transport" : "tcp",
"url" : "/pentaho/Login;jsessionid=08D209D9F1459F974A52859EFA664D02"
}