internet-banking.hk.dbs.com Open in urlscan Pro
104.18.17.36  Public Scan

URL: https://internet-banking.hk.dbs.com/IB/Welcome
Submission: On March 16 via api from SG — Scanned from DE

Form analysis 13 forms found in the DOM

Name: MainFormPOST

<form method="post" name="MainForm" onsubmit="return false;">
  <input type="hidden" name="flag" value="0">
  <input type="hidden" name="isCancelClicked" value="0">
  <input type="hidden" name="isSubmitClicked" value="0">
  <!-- body start -->
  <div class="login-form">
    <h1 class="clearfix"><span class="left">DBS iBanking</span>
      <div class="right">
        <a aalink="ib_pre|login-box-language-toggle" id="langOption" tabindex="3" href="javascript:changeLanguage()" title="轉換語言">中文</a>
      </div>
    </h1>
    <div class="error-msg" style="display:none;" id="browserChkParentDiv">
      <p id="browsercheckdiv" style="display: none;"></p>
    </div>
    <input style="position:absolute;top:-9999px;" id="bot_username" type="text" value="bot">
    <input style="position:absolute;top:-9999px;" id="bot_password" type="password" value="bot">
    <div class="mTop-40"></div>
    <div class="form-row input-layout">
      <input type="text" name="uname" id="uname" size="25" maxlength="12" tabindex="4" onkeypress="return nextfocus(event)" autocomplete="off" placeholder="" class="left">
      <span class="highlight"></span>
      <span id="uidBar" class="bar"></span>
      <label>Username</label>
    </div>
    <div id="errormsg1" style="display:none" class="error-msg">
      <h4>
        <div id="InvalidUserId"></div>
      </h4>
    </div>
    <div class="mTop-24"></div>
    <div class="form-row input-layout">
      <input type="password" autocomplete="off" tabindex="5" name="pwd" id="pwd" size="25" maxlength="30" onkeyup="return autosubmit(event, document.forms['MainForm'])" placeholder="" class="left">
      <span class="highlight"></span>
      <span id="pinBar" class="bar"></span>
      <label>Password</label>
    </div>
    <div id="errormsg2" style="display:none" class="error-msg">
      <h4>
        <div id="InvalidPWD"></div>
      </h4>
    </div>
    <div class="mTop-28"></div>
    <button aaloginbutton="" class="btn btn-primary block mBot-12" title="Login" type="button" name="logon" onclick="handleLogin(event, document.forms['MainForm'])" tabindex="6">Login</button>
    <button aalink="ib_pre|login-box-get-started" class="btn btn-secondary right mBot-16" onclick="javascript:OnBordingMain(0);" tabindex="1007" title="Register" type="button"> Register </button>
    <div class="mTop-24"></div>
    <div class="links">
      <ul class="">
        <li>Forgot <a aalink="ib_pre|login-box-forgot-username" href="javascript:OnBordingMain(1)" tabindex="1008" title="Username">Username</a> &nbsp;or
          <a aalink="ib_pre|login-box-forgot-password" href="javascript:OnBordingMain(2);" tabindex="1009" title="Password">Password</a></li>
        <li><a aalink="ib_pre|login-box-service-demo" href="javascript:GetTip('http://www.dbs.com.hk/ibanking/demo/');" tabindex="1010" title="Service Demo">Service Demo</a></li>
        <li><a aalink="ib_pre|login-box-online-security" href="javascript:GetTip('http://www.dbs.com.hk/ibanking/others.html?ref=online-security');" tabindex="1011" title="Online Security">Online Security</a></li>
        <li><a aalink="ib_pre|login-box-faq" href="javascript:GetTip('http://www.dbs.com.hk/ibanking/faq.html');" tabindex="1012" title="Frequently Asked Questions">Frequently Asked Questions</a></li>
        <li><a aalink="ib_pre|login-box-maintenance-schedule" href="javascript:GetTip('http://www.dbs.com.hk/ibanking/maintain.html');" tabindex="1013" title="View Maintenance Schedule">View Maintenance Schedule</a></li>
      </ul>
    </div>
  </div>
  <!-- body end -->
  <script>
    /*jQuery(function($){
      
       var lastHeight = 0, 
        curHeight = 0, 
        $iframe = $(window.parent.document).contents().find('#main'), 
        $body = $('body');
        
       setInterval(function(){
        curHeight = $body.height() + 10;
        if ( curHeight != lastHeight ) {
         if ( $iframe ) {
          $($iframe).css('height',curHeight);
          lastHeight = curHeight;
         }
        }
       },500);
       
      });*/
  </script>
  <script>
    var isBrowserSupported = false;
    var isBrowserNotSupportedRedirect = false;

    function checkBrowserVersion() {
      var validBrowser = isValidBrowser(getBrowserVersion(navigator.userAgent));
      if (validBrowser == 0) {
        isBrowserSupported = true;
      } else if (validBrowser == 1) {
        isBrowserSupported = false;
      } else if (validBrowser == 2) {
        isBrowserSupported = false;
        isBrowserNotSupportedRedirect = true;
      }
      if (isBrowserNotSupportedRedirect) {
        window.location.replace("https://www.dbs.com.hk/ibanking/online-security-browser.html");
      }
      if (!isBrowserSupported) {
        document.getElementById('browsercheckdiv').innerHTML =
          'Dear customer, the browser that you are using is not the latest version. <br>DBS iBanking is best viewed with <a href="http://www.dbs.com.hk/ibanking/faq.html#S12" target="_blank">this list of supported browsers</a>.';
        document.getElementById('browsercheckdiv').style.display = 'block';
      } else {
        document.getElementById('browsercheckdiv').style.innerHTML = '';
        document.getElementById('browsercheckdiv').style.display = 'none';
      }
    }

    function getBrowserVersion(agent) {
      var browser = '';
      var version = '';
      var detectregexp = '';
      if (agent.indexOf('OPR') != -1) {
        detectregexp = /OPR[\/\s](\d+)/
        browser = 'OPERA';
      } else if (agent.indexOf('Presto') != -1) {
        detectregexp = /Opera[\/\s](\d+)/
        browser = 'OPERA';
      } else if (agent.indexOf('SamsungBrowser/') != -1) { //samsung check before chrome
        detectregexp = /SamsungBrowser[\/\s](\d+\.\d+)/
        browser = 'SAMSUNGBROWSER';
      } else if (agent.indexOf('Firefox') != -1) {
        detectregexp = /Firefox[\/\s](\d+)/ //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
        browser = 'FIREFOX';
      } else if (agent.indexOf('Edge') != -1) {
        detectregexp = /Edge[\/\s](\d+)/
        browser = 'EDGE';
      } else if (agent.indexOf('MSIE') != -1) {
        detectregexp = /MSIE (\d+)/ //test for MSIE x.x
        browser = 'IE';
      } else if (agent.indexOf('Trident') != -1) { // if no "MSIE" string in userAgent
        detectregexp = /Trident.*rv[ :]*(\d+)/ //test for rv:x.x or rv x.x where Trident string exists
        browser = 'IE';
      } else if (agent.indexOf('Chrome/') != -1) {
        detectregexp = /Chrome[\/\s](\d+)/
        browser = 'CHROME';
      } else if (agent.indexOf('CriOS/') != -1) {
        detectregexp = /CriOS[\/\s](\d+)/
        browser = 'CHROME';
      } else if (agent.indexOf('Android') != -1) { //Android check after all but before safari
        detectregexp = /Android (\d+\.\d+)/
        browser = 'ANDROID';
      } else if (agent.indexOf('Version') != -1 && agent.indexOf('Safari') != -1) {
        detectregexp = /Version[\/\s](\d+)/
        browser = 'SAFARI';
      } else if (agent.indexOf('iPhone') != -1 || agent.indexOf('iPad') != -1 || agent.indexOf('iPod') != -1) {
        detectregexp = /OS (\d+)/
        browser = 'SAFARI';
      }
      if (detectregexp == '') {
        return ['', 0];
      }
      if (detectregexp.test(agent)) {
        var tempversion = new Number(RegExp.$1);
        if (tempversion >= 0) {
          version = tempversion;
        }
      } else {
        return ['', 0];
      }
      return [browser, version];
    }

    function isValidBrowser(browserVersion) {
      var browser = browserVersion[0];
      var version = browserVersion[1];
      if (browser == 'FIREFOX') {
        if (version >= 31) {
          return 0;
        } else if (version >= 24) {
          return 1;
        }
      }
      if (browser == 'EDGE') {
        if (version >= 0) {
          return 0;
        } else if (version >= 0) {
          return 1;
        }
      }
      if (browser == 'IE') {
        if (version >= 11) {
          return 0;
        } else if (version >= 10) {
          return 1;
        }
      }
      if (browser == 'CHROME') {
        if (version >= 37) {
          return 0;
        } else if (version >= 29) {
          return 1;
        }
      }
      if (browser == 'SAMSUNGBROWSER') {
        if (version >= 4) {
          return 0;
        } else if (version >= 2.1) {
          return 1;
        }
      }
      if (browser == 'ANDROID') {
        if (version >= 4) {
          return 0;
        } else if (version >= 2.3) {
          return 1;
        }
      }
      if (browser == 'SAFARI') {
        if (version >= 7) {
          return 0;
        } else if (version >= 6) {
          return 1;
        }
      }
      return 2;
    }

    function get_browser() {
      var ua = navigator.userAgent,
        tem, M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
      if (/trident/i.test(M[1])) {
        tem = /\brv[ :]+(\d+)/g.exec(ua) || [];
        return 'msie ' + (tem[1] || '');
      }
      if (M[1] === 'Chrome') {
        tem = ua.match(/\bOPR\/(\d+)/)
        if (tem != null) {
          return 'Opera ' + tem[1];
        }
      }
      M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?'];
      if ((tem = ua.match(/version\/(\d+)/i)) != null) {
        M.splice(1, 1, tem[1]);
      }
      return M[0];
    }

    function get_browser_version() {
      var ua = navigator.userAgent,
        tem, M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
      if (/trident/i.test(M[1])) {
        tem = /\brv[ :]+(\d+)/g.exec(ua) || [];
        return (tem[1] || '');
      }
      if (M[1] === 'Chrome') {
        tem = ua.match(/\bOPR\/(\d+)/)
        if (tem != null) {
          return 'Opera ' + tem[1];
        }
      }
      M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?'];
      if ((tem = ua.match(/version\/(\d+)/i)) != null) {
        M.splice(1, 1, tem[1]);
      }
      return M[1];
    }
  </script>
</form>

Name: DecryptFormPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="DecryptForm" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="ProcessLogon">
  <input type="hidden" name="encryptedString" value="">
  <input type="hidden" name="encryptedString2" value="">
  <input type="hidden" name="keyindex" value="0">
  <input type="hidden" name="REQUEST_ID" value="HK001">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PUBLICKEY"
    value="c24931fb6c2c7809b2018f03bd54bec9ec3fc35f55344001e0f19bf0a938d3dff9c19170c15e2371c623e22f7821bc4f742afb5f5cdf987697b01b5984e43efdc11c4b660b73270506d187dad513a96a6eb0a7d6e4cad8d9e5d3d3555a602ea915e0ab3827386dbedc34a4e56eb27f009ba86dd886c8c8903581faa050902ff5e629af9ac27146451dfe1fe03acea8ce9369e19ffbedecba74921d371fe50067d3c965b0c9244f82cf677d208406af21d7b38b54f2f5d90a040115d650e84a9e859a34036055a2fe8e79da54faa333f235b19829502d37a7b5686b1c3ce70a8842f0681a249a7b4a381b1030148164fbb2a2b809e9572371132caa95c461fb79">
  <input type="hidden" name="RANDOM_NUMBER_FROM_HOST" value="01B664E084B2B7F0">
  <input type="hidden" name="REDIRECT_IPO" value="">
  <input type="hidden" name="IPO_TYPE" value="">
  <input type="hidden" name="INQUIRY_LOGON" value="0">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
  <input type="hidden" name="SERVICE_ID" value="">
  <input type="hidden" name="IS_REDIRECT_PWEB" value="">
  <input type="hidden" name="isReDirectPweb" value="">
</form>

Name: ProcessLogonPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="ProcessLogon" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="ProcessLogon">
  <input type="hidden" name="USER_LOGON_NAME" value="">
  <input type="hidden" name="ENCRYPTED_PIN_BLOCK" value="">
  <input type="hidden" name="IAM_ENCRYPTED_PIN_BLOCK" value="">
  <input type="hidden" name="IAM_RANDOM_ID" value="">
  <input type="hidden" name="IAM_RANDOM_NO" value="">
  <input type="hidden" name="RAW_PIN_LENGTH" value="">
  <input type="hidden" name="RANDOM_NUMBER" value="145DD9">
  <input type="hidden" name="REQUEST_ID" value="HK001">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PUBLICKEY"
    value="c24931fb6c2c7809b2018f03bd54bec9ec3fc35f55344001e0f19bf0a938d3dff9c19170c15e2371c623e22f7821bc4f742afb5f5cdf987697b01b5984e43efdc11c4b660b73270506d187dad513a96a6eb0a7d6e4cad8d9e5d3d3555a602ea915e0ab3827386dbedc34a4e56eb27f009ba86dd886c8c8903581faa050902ff5e629af9ac27146451dfe1fe03acea8ce9369e19ffbedecba74921d371fe50067d3c965b0c9244f82cf677d208406af21d7b38b54f2f5d90a040115d650e84a9e859a34036055a2fe8e79da54faa333f235b19829502d37a7b5686b1c3ce70a8842f0681a249a7b4a381b1030148164fbb2a2b809e9572371132caa95c461fb79">
  <input type="hidden" name="RANDOM_NUMBER_FROM_HOST" value="01B664E084B2B7F0">
  <input type="hidden" name="REDIRECT_IPO" value="">
  <input type="hidden" name="IPO_TYPE" value="">
  <input type="hidden" name="INQUIRY_LOGON" value="0">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
  <input type="hidden" name="SERVICE_ID" value="">
  <input type="hidden" name="IS_REDIRECT_PWEB" value="">
  <input type="hidden" name="isReDirectPweb" value="">
</form>

Name: LogonPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="Logon" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="zh_HK">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
  <input type="hidden" name="isReDirectPweb" value="">
</form>

Name: ReloadToTopPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="ReloadToTop" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post" target="top">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
  <input type="hidden" name="isReDirectPweb" value="">
</form>

Name: OnlineRegPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="OnlineReg" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="OnlineReg">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
</form>

Name: OnlineResetPwdPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="OnlineResetPwd" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="OnlineResetPwd">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
</form>

Name: OnBordingPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="OnBording" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="OnBording">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
  <input type="hidden" name="FORGOT_TYPE" value="">
  <input type="hidden" name="REQUEST_ID" value="HK066">
  <input type="hidden" name="FROM_MB" value="N">
  <input type="hidden" name="AA_UNIQUE_ID_RENEW" value="true">
</form>

Name: InstantPassWordPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="InstantPassWord" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="InstantPassword">
  <input type="hidden" name="LANGUAGE_INDICATOR" value="en_US">
  <input type="hidden" name="PAGE_ID_PARAM" value="1647393381599">
</form>

Name: DisplayHomePageFormPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form style="margin:0px" target="main" name="DisplayHomePageForm" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="LoadHomePage">
  <input type="hidden" name="SERVICE_ID" value="000000000000001">
</form>

Name: ReloadFormPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form style="margin:0px" name="ReloadForm" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="3e62592c0a5b17ee0017e4ca82a13b98">
  <input type="hidden" name="statemachineEventName" value="Refresh/Reload">
  <input type="hidden" name="SERVICE_ID" value="000000000009996">
</form>

Name: EmailUpdateWithOverlayPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="EmailUpdateWithOverlay" id="EmailUpdateWithOverlay" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post" target="overlayFrame">
  <input type="hidden" name="statemachineStateName" value="0ef8cfd3ac21030a00bb6ab6438f4398">
  <input type="hidden" name="statemachineEventName" value="SFC_UpdateEmailOverlay">
  <input type="hidden" name="DATA PACKET NAME" value="RETRIEVE_MYALERTS_CONTACT">
  <input type="hidden" name="SERVICE_ID" value="000000000001304">
  <input type="hidden" name="COMPANY_CODE" value="2006">
  <input type="hidden" name="REQUEST_ID" value="HK039">
  <input type="hidden" name="LAST_SERVICE_ID" value="">
</form>

Name: CustomDecryptFormPOST https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04

<form name="CustomDecryptForm" action="https://internet-banking.hk.dbs.com/IB/Welcome;jsessionid=Jx4aLY30CMKJwE47Vq5NqNuD.APP3A04" method="post">
  <input type="hidden" name="statemachineStateName" value="0ef8cfd3ac21030a00bb6ab6438f4398">
  <input type="hidden" name="statemachineEventName" value="">
  <input type="hidden" name="encryptedString" value="">
  <input type="hidden" name="encryptedString2" value="">
  <input type="hidden" name="keyindex" value="0">
</form>

Text Content

DBS IBANKING
中文




Username



Password



Login Register

 * Forgot Username  or Password
 * Service Demo
 * Online Security
 * Frequently Asked Questions
 * View Maintenance Schedule