https://netbanking.cbabank.co.ug/eBanking/servlet/BrowserServlet

Submitted URL:
https://netbanking.cbabank.co.ug/eBanking/servlet/BrowserServlet
Report Finished:

The outgoing links identified from the page

LinkText
http://www.ncbagroup.comwww.ncbagroup.com
http://www.mozilla.org/en-US/firefox/fx/#desktopClick here
https://portal.ncbagroup.com/SelfServicePortal/new-user-registration-view-nameSign Up
https://portal.ncbagroup.com/SelfServicePortal/enrol-view-nameLog in
https://portal.ncbagroup.com/SelfServicePortal/home-view-nameLog in
https://cbagroup.com/privacy-policyPrivacy Policy
https://cbagroup.com/branches/Branches
https://cbagroup.com/atms/ATMs
https://cbagroup.com/contact-us/Contact Us
https://cbagroup.com/careers/Careers

JavaScript Variables · 10 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Name
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
setFocusfunction
getFormFieldsAsParamsfunction
postFormfunction
doFormBasedAuthenticationfunction
$function
jQueryfunction
DP_jQuery_1734079276349function

Console log messages · 2 found

Messages logged to the web console

TypeCategoryLog
verbosedom
URL
https://netbanking.cbabank.co.ug/eBanking/servlet/BrowserServlet
Text
[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://netbanking.cbabank.co.ug/eBanking/servlet/BrowserServlet
Text
[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) %o

HTML

The raw HTML body of the page

<html><head>
    <link rel="icon" href="/eBanking/plaf/icon/favicon.ico">
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	<title>NCBA Internet Banking</title>
	<link rel="stylesheet" media="screen" href="../modelbank/unprotected/css/cbaintranet.css">

	<style type="text/css">
		.instruction {
			font-family: Arial, Times, serif;
			font-weight: bold;
		}
		.forgotten {
			font-family: Arial, Courier, monospace;
			font-size: small;
			font-weight: normal;
			color: #FF0000;
		}
		.reminder {
			font-family: Arial, Times, serif;
			font-size: small;
			font-weight: bold;
			color: #666666;
		}
		table.input {
			border:1px solid black; 
			width:50%;
			padding: 10px;
		}
		a.signup {
			display: block;
			letter-spacing: 0;
			margin-right: 0;
			color: #fff;
			background: #322523;
			text-transform: capitalize;
			padding: 7px;
			border-radius: 0px;
			text-decoration: none;
			min-width: 70px;
		}		
	</style>

	<script language="javascript">
		//<![CDATA[
			function setFocus() {
				window.document.forms["FtressUserIdForm"].UserId.focus();
			}

			function getFormFieldsAsParams(form) {
				var fields=new String();

				var elems = form.elements;
				for (i = 0; i < elems.length; i++) {
				// todo: could be more efficient (String addition)

					var curElem = elems[i];	
					var curName = curElem.name;
					var curValue = curElem.value;
					// need to check for combos as IE (duh) will not give us the value directly
	
					if (curElem.tagName.toLowerCase() == "select") {
						if (curValue == "") {
							curValue = curElem.options[curElem.selectedIndex].text;
						}
					}
				
					fields += curName + "=" + curValue + "&";        
				}
				var value1 = window.document.getElementById("formToken");
                if (value1){
                    var name1 = value1.name;
                    var namevalue1 = value1.value;
                    fields += name1 + "=" + namevalue1 + "&"; 
                }	
				return fields.substr(0, fields.length-1);
			};

			function postForm(form) {
				var http = false;
				
				if(navigator.appName == "Microsoft Internet Explorer") {
					http = new ActiveXObject("Microsoft.XMLHTTP");
				} else {
					http = new XMLHttpRequest();
				}
				
				var URL = form.target;
				var params = getFormFieldsAsParams(form);


				http.open('POST', URL, true);
				http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");	
				http.setRequestHeader("Content-length", params.length);
				http.setRequestHeader("Connection", "close");
				http.send(params);
				
				http.onreadystatechange=function() {
					if(http.readyState == 4) {
						if (http.responseText.indexOf("doFormBasedAuthentication") > 0 ) {
							eval(http.responseText);
						} else {
							document.getElementById("content").innerHTML = http.responseText;
						}
					}
				}
			};
			
			function doFormBasedAuthentication(username, password) {
				var authForm = window.document.forms["AuthForm"];
				authForm.j_username.value = username;
				authForm.j_password.value = password;
				authForm.submit();
			};
		//]]>
	</script>
	<script src="../modelbank/unprotected/js/jquery-1.6.1.min.js" type="text/javascript"></script>
	<script src="../modelbank/unprotected/js/jquery.ui.js" type="text/javascript"></script>
	<script src="../modelbank/unprotected/js/jquery.collapser.js" type="text/javascript"></script>
    <script src="../modelbank/unprotected/js/jquery-ui-1.8.1.custom.min.js" type="text/javascript"></script>
    <script type="text/javascript">
			$(function(){
				// Accordion
				$("#accordion").accordion({ header: "h3" });				
			});
	</script>
	<script>
		$(document).ready(function(){
			$('.panel').hide();
				$('.demo6').collapser({
					target: 'next',
					effect: 'slide',
					changeText: 0,
					expandClass: 'expIco',
					collapseClass: 'collIco'
				}, function(){
					$('.panel').slideUp();
				});
		});
	</script>
</head>

<body onload="setFocus()">
	<div id="header">
		<div id="ninesisxty">
			<div id="mobius">
				<img src="../modelbank/unprotected/images/mobius.jpg" alt=" ">
			</div>
			<div id="cbalogo">
				<img src="../modelbank/unprotected/images/cbalogo.jpg" alt=" ">
			</div>
			<div class="clearboth"></div>
		</div>
	</div>
	<div id="ninesisxtywhite">
		<form name="AuthForm" method="post" action="j_security_check" autocomplete="OFF">
			<input name="j_password" type="hidden">
			<input name="j_username" type="hidden">
		</form>
		<table border="0" width="994">
			<tbody>
				<tr>
					<td>
						<p>
							<map name="Map" id="Map">
								<area shape="rect" coords="691,4,737,24" href="javascript:alert(&quot;logoff&quot;)">
								<area shape="rect" coords="739,4,773,23" href="javascript:alert(&quot;help&quot;)">
								<area shape="rect" coords="776,4,857,22" href="javascript:alert(&quot;accessibility&quot;)">
								<area shape="rect" coords="862,3,920,22" href="javascript:alert(&quot;sitemap&quot;)">
								<area shape="rect" coords="922,2,962,23" href="javascript:alert(&quot;legal&quot;)">
								<area shape="rect" coords="964,3,1029,21" href="javascript:alert(&quot;privacy&quot;)">
							</map>
						</p>		
						<div id="content">
							<table width="50%" align="center" border="0" cellpadding="10px" cellspacing="0" bgcolor="#FFFFFF">
								<tbody><tr>
									<td valign="top">
										<div id="slider-box">
											<div id="slider-box-left">
												<img src="../modelbank/unprotected/images/lady.jpg" width="212" height="250" alt="NCBA"></div>
											<div id="slider-box-right">
												<h1>NCBA Internet Banking</h1>
												<div id="accordion" class="ui-accordion ui-widget ui-helper-reset ui-accordion-icons" role="tablist">
													<div>
														<h3 class="ui-accordion-header ui-helper-reset ui-state-active ui-corner-top" role="tab" aria-expanded="true" tabindex="0"><span class="ui-icon ui-icon-triangle-1-s"></span><a href="#">About NCBA Internet Banking</a></h3>
														<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active" role="tabpanel" style="height: 90px;">Our internet banking product is a secure, fully transactional, internet-based banking platform that enables you to transact with us wherever and whenever it suits you. All you need is a stable internet connection.</div>
													</div>
													<div>
														<h3 class="ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" role="tab" aria-expanded="false" tabindex="-1"><span class="ui-icon ui-icon-triangle-1-e"></span><a href="#">Personal Banking</a></h3>
														<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" role="tabpanel" style="height: 90px; display: none;">Welcome to Personal Banking. We have developed a wide array of products to give you quick and easy access to your funds. We offer products for your every day money management needs, expert financial advice as well as a host of other financial solutions.</div>
													</div>
													<div>
														<h3 class="ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" role="tab" aria-expanded="false" tabindex="-1"><span class="ui-icon ui-icon-triangle-1-e"></span><a href="#">Corporate Banking</a></h3>
														<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" role="tabpanel" style="height: 90px; display: none;">We have organized our business to suit the requirements of our corporate, institutional and SME customers by offering an extensive range of financial solutions which are tailored to meet the needs of our customers.</div>
													</div>
												</div>
											</div>
										</div>
										<div id="first-time-login1">
											<b><u>Protect yourself from online fraud</u></b><br>
											As you transact online, it is important to be aware of internet fraud.
											Please note that NCBA will NEVER send you an email asking you to enter, reconfirm
											or change your security details or other personal information. If you receive such
											an email or if you believe you may have disclosed your details in any way,
											please call us immediately on +254 20 2884000 or email <a href="mailto:[email protected]">[email protected]</a>
											<br>
											For more info on how NCBA protects you from online fraud,visit <a href="http://www.ncbagroup.com" target="_blank">www.ncbagroup.com</a>
											<br>
											<b>NCBA Internet Banking is best viewed in Mozilla Firefox.To download Mozilla Firefox <a href="http://www.mozilla.org/en-US/firefox/fx/#desktop" target="_blank" style="COLOR= blue">Click here</a></b>
										</div>
									</td>
									<td>
										<div id="log-in">
											<h1>Login to your account</h1>
											<form name="FtressUserIdForm" target="/eBanking/modelbank/unprotected/FtressLoginServlet" autocomplete="OFF">
												<fieldset>
													<p>
														<label>Enter your User ID</label><br>
														<input name="UserId" type="password" class="input_box" size="20" maxlength="20">
													</p>
													<p>
														<label>Enter Token Generated Pin</label><br>
														<input name="OneTimePassword" class="input_box" type="password" size="20" maxlength="20">
													</p>
													<p>
														<a href="javascript:postForm(window.document.forms['FtressUserIdForm'])">
															<img src="/eBanking/modelbank/unprotected/new_login.gif" border="0">
														</a>
													</p>
												</fieldset>								
											</form>	
										</div>
										<br><br><br><br>
										<div id="log-in">
											<h1>Self Service Portal (SSP)</h1>
											<p style="color:#000;text-align:left;">Not yet registered?<a style="float:right" href="https://portal.ncbagroup.com/SelfServicePortal/new-user-registration-view-name" class="signup" target="_blank">Sign Up</a></p>
											<br>
											<p style="color:#000;text-align:left;">Token Registration?<a style="float:right" href="https://portal.ncbagroup.com/SelfServicePortal/enrol-view-name" target="_blank" class="signup">Log in</a></p> 
											<br>
											<p style="color:#000;text-align:left;">Manage Tokens?<a style="float:right" href="https://portal.ncbagroup.com/SelfServicePortal/home-view-name" target="_blank" class="signup">Log in</a></p> 
											<br>
											<br>
										</div>
										<div id="log-in">
											<h1>Demo Videos</h1>
											<p style="color:#000;text-align:left;"><a href="//cbagroup.com/cba_internet_banking/" class="" target="_blank">Internet Banking Demo</a></p>
											<br>
											<br>
										</div>
									</td>
								</tr>
								<tr><td></td></tr>
							</tbody></table>
						</div>
					</td>
				</tr>
			</tbody>
		</table>
	</div>
	<div id="ninesisxtyfooter">
		<p><b>Copyright NCBA 2019 </b></p>
		<ul class="menu_homepage_footer">
			<li class="item-169"><a href="https://cbagroup.com/privacy-policy">Privacy Policy</a></li>
			<li class="item-166"><a href="https://cbagroup.com/branches/">Branches</a></li>
			<li class="item-168"><a href="https://cbagroup.com/atms/">ATMs</a></li>
			<li class="item-167"><a href="https://cbagroup.com/contact-us/">Contact Us</a></li>
			<li class="item-165"><a href="https://cbagroup.com/careers/">Careers</a></li>
			<li class="item-224"><a href="https://cbagroup.com/TariffGuide/">Tariffs</a></li>
			<li class="item-226"><a href="https://cbagroup.com/forms-and-downloads/">Downloads</a></li>
			<li class="item-236"><a href="https://cbagroup.com/security">Security</a></li>
		</ul>
	</div>

</body></html>