MR_OZO

alun

Feb 13th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.61 KB | None | 0 0
  1. <script language="JavaScript1.2">
  2.  
  3.  
  4.  
  5. function ClearError() {return true;}
  6.  
  7.  
  8.  
  9. window.onerror = ClearError;
  10.  
  11.  
  12.  
  13. </script>
  14. <br>
  15.  
  16. <div align="center"><table border="0" width="70%"><tr><td>
  17.  
  18.  
  19.  
  20. <h1><font face="Bradley Hand ITC"><center><SCRIPT>
  21.  
  22.  
  23.  
  24. farbbibliothek = new Array();
  25.  
  26.  
  27.  
  28. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  29.  
  30.  
  31.  
  32. farbbibliothek[1] = new Array("#FF0000","#FFFFFF","#FFFFFF","#FF0000");
  33.  
  34.  
  35.  
  36. farbbibliothek[2] = new Array("#FFFFFF","#FF0000","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF");
  37.  
  38.  
  39.  
  40. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  41.  
  42.  
  43.  
  44. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  45.  
  46.  
  47. farbbibliothek[5] = new Array("#FF0000","#FF0000","#FF0000","#FFFFFF","#FFFFFF","#FFFFFF");
  48.  
  49.  
  50. farbbibliothek[6] = new Array("#FF0000","#FDF5E6");
  51.  
  52.  
  53.  
  54. farben = farbbibliothek[4];
  55.  
  56.  
  57.  
  58. function farbschrift()
  59.  
  60.  
  61.  
  62. {
  63.  
  64.  
  65.  
  66. for(var i=0 ; i<Buchstabe.length; i++)
  67.  
  68.  
  69.  
  70. {
  71.  
  72.  
  73.  
  74. document.all["a"+i].style.color=farben[i];
  75.  
  76.  
  77.  
  78. }
  79.  
  80.  
  81.  
  82. farbverlauf();
  83.  
  84.  
  85.  
  86. }
  87.  
  88.  
  89.  
  90. function string2array(text)
  91.  
  92.  
  93.  
  94. {
  95.  
  96.  
  97.  
  98. Buchstabe = new Array();
  99.  
  100.  
  101.  
  102. while(farben.length<text.length)
  103.  
  104.  
  105.  
  106. {
  107.  
  108.  
  109.  
  110. farben = farben.concat(farben);
  111.  
  112.  
  113.  
  114. }
  115.  
  116.  
  117.  
  118. k=0;
  119.  
  120.  
  121.  
  122. while(k<=text.length)
  123.  
  124.  
  125.  
  126. {
  127.  
  128.  
  129.  
  130. Buchstabe[k] = text.charAt(k);
  131.  
  132.  
  133.  
  134. k++;
  135.  
  136.  
  137.  
  138. }
  139.  
  140.  
  141.  
  142. }
  143.  
  144.  
  145.  
  146. function divserzeugen()
  147.  
  148.  
  149.  
  150. {
  151.  
  152.  
  153.  
  154. for(var i=0 ; i<Buchstabe.length; i++)
  155.  
  156.  
  157.  
  158. {
  159.  
  160.  
  161.  
  162. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  163.  
  164.  
  165.  
  166. }
  167.  
  168.  
  169.  
  170. farbschrift();
  171.  
  172.  
  173.  
  174. }
  175.  
  176.  
  177.  
  178. var a=1;
  179.  
  180.  
  181.  
  182. function farbverlauf()
  183.  
  184.  
  185.  
  186. {
  187.  
  188.  
  189.  
  190. for(var i=0 ; i<farben.length; i++)
  191.  
  192.  
  193.  
  194. {
  195.  
  196.  
  197.  
  198. farben[i-1]=farben[i];
  199.  
  200.  
  201.  
  202. }
  203.  
  204.  
  205.  
  206. farben[farben.length-1]=farben[-1];
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214. setTimeout("farbschrift()",30);
  215.  
  216.  
  217.  
  218. }
  219.  
  220.  
  221.  
  222. //
  223.  
  224.  
  225.  
  226. var farbsatz=1;
  227.  
  228.  
  229.  
  230. function farbtauscher()
  231.  
  232.  
  233.  
  234. {
  235.  
  236.  
  237.  
  238. farben = farbbibliothek[farbsatz];
  239.  
  240.  
  241.  
  242. while(farben.length<text.length)
  243.  
  244.  
  245.  
  246. {
  247.  
  248.  
  249.  
  250. farben = farben.concat(farben);
  251.  
  252.  
  253.  
  254. }
  255.  
  256.  
  257.  
  258. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  259.  
  260.  
  261.  
  262. }
  263.  
  264.  
  265.  
  266. setInterval("farbtauscher()",9000);
  267.  
  268.  
  269.  
  270. text ="DEFACED BY ./KamarM4yaT404";//h
  271.  
  272.  
  273.  
  274. string2array(text);
  275.  
  276.  
  277.  
  278. divserzeugen();
  279.  
  280.  
  281.  
  282. //document.write(text);
  283.  
  284.  
  285.  
  286.  
  287. </SCRIPT></center></h1></font>
  288.  
  289. <SCRIPT>
  290. var width=document.body.clientWidth;
  291. var height=document.body.clientHeight;
  292.  
  293. function doClickText(who,type,step,timeOut) {
  294. document.getElementById(who).style.display="none";
  295. if(type==0) {
  296. reveal('revealDiv1',step,timeOut,0);
  297. reveal('revealDiv2',step,timeOut,1);}
  298. if(type==1) {
  299. reveal('revealDiv1',step,timeOut,2);
  300. reveal('revealDiv2',step,timeOut,3);}}
  301. function reveal(who,step,timeOut,type) {
  302. if(type==0)
  303. var where="top";
  304. if(type==1)
  305. var where="bottom";
  306. if(type==2)
  307. var where="left";
  308. if(type==3)
  309. var where="right";
  310. eval('var temp=document.getElementById(who).style.'+where);
  311. temp=parseInt(temp);
  312. if(type==0||type==1)
  313. var checkWith=height/2;
  314. if(type==2||type==3)
  315. var checkWith=width/2;
  316. if(-temp<checkWith) {
  317.  
  318. temp-=step;
  319.  
  320. eval('document.getElementById(who).style.'+where+'=temp;');
  321.  
  322. setTimeout("reveal('"+who+"',"+step+",'"+timeOut+"',"+type+")", timeOut);}
  323.  
  324. else {
  325.  
  326. document.getElementById(who).style.display="none";
  327.  
  328. document.body.scroll="yes";}}
  329.  
  330. function initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click) {
  331.  
  332. if(type==0) {
  333.  
  334. var bWhere1="border-bottom";
  335.  
  336. var bWhere2="border-top";
  337.  
  338. var putZero1="top:0px; left:0px";
  339.  
  340. var putZero2="bottom:0px; left:0px";
  341.  
  342. document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
  343. document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
  344. if(!click) {
  345. reveal('revealDiv1',step,timeOut,0);
  346. reveal('revealDiv2',step,timeOut,1);}
  347.  
  348. else {
  349. clickText(type,step,timeOut);}}
  350.  
  351. if(type==1) {
  352. var bWhere1="border-right";
  353. var bWhere2="border-left";
  354. var putZero1="top:0px; left:0px";
  355. var putZero2="top:0px; right:0px";
  356. document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
  357. document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
  358. if(!click) {
  359. reveal('revealDiv1',step,timeOut,2);
  360. reveal('revealDiv2',step,timeOut,3);}
  361. else {
  362. clickText(type,step,timeOut);}}
  363. function clickText(type,step,timeOut) {
  364. document.write('<div id="clickText" style="z-index:101; display:block; position:absolute; top:'+(height/2-clickh/2-clickb)+'; left:'+(width/2-clickw/2-clickb)+'"><table style="border:'+clickc+' solid '+clickb+'px; background:'+clickbg+' ;width:'+clickw+'px; height:'+clickh+'; '+clickFont+'; cursor:hand; cursor:pointer" onClick="doClickText(\'clickText\','+type+','+step+','+timeOut+')"><tr><td align="middle">'+clickt+'</td></tr></table></div>');}}
  365.  
  366. </SCRIPT>
  367.  
  368.  
  369. <SCRIPT>
  370. var clickw=270;
  371. var clickh=20;
  372. var clickb=2;
  373. var clickc="white";
  374. var clickbg="red"; // Background color
  375. var clickt="=[[ <blink>P L A Y</blink> ]]="; // Text to display
  376. var clickFont="font-family:Tahoma,arial,helvetica; font-size:10pt; font-weight:bold; color:blue"; // The font style of the text
  377. new initReveal(0,'red','white',1,1,'aqua','aqua',3,10,true);
  378. </SCRIPT>
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  390.  
  391. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="<$BlogLanguageDirection$>">
  392.  
  393.  
  394. <script>
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403. TypingText = function(element, interval, cursor, finishedCallback) {
  404.  
  405. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  406.  
  407. this.running = true; // Never run.
  408.  
  409. return;
  410.  
  411. }
  412.  
  413. this.element = element;
  414.  
  415. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  416.  
  417. this.interval = (typeof interval == "undefined" ? 100 : interval);
  418.  
  419. this.origText = this.element.innerHTML;
  420.  
  421. this.unparsedOrigText = this.origText;
  422.  
  423. this.cursor = (cursor ? cursor : "");
  424.  
  425. this.currentText = "";
  426.  
  427. this.currentChar = 0;
  428.  
  429. this.element.typingText = this;
  430.  
  431. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  432.  
  433. TypingText.all.push(this);
  434.  
  435. this.running = True;
  436.  
  437. this.inTag = True;
  438.  
  439. this.tagBuffer = "";
  440.  
  441. this.inHTMLEntity = True;
  442.  
  443. this.HTMLEntityBuffer = "";
  444.  
  445. }
  446.  
  447. TypingText.all = new Array();
  448.  
  449. TypingText.currentIndex = 0;
  450.  
  451. TypingText.runAll = function() {
  452.  
  453. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  454.  
  455. }
  456.  
  457. TypingText.prototype.run = function() {
  458.  
  459. if(this.running) return;
  460.  
  461. if(typeof this.origText == "undefined") {
  462.  
  463. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  464.  
  465. return;
  466.  
  467. }
  468.  
  469. if(this.currentText == "") this.element.innerHTML = "";
  470.  
  471. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  472.  
  473. if(this.currentChar < this.origText.length) {
  474.  
  475. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  476.  
  477. this.tagBuffer = "<";
  478.  
  479. this.inTag = true;
  480.  
  481. this.currentChar++;
  482.  
  483. this.run();
  484.  
  485. return;
  486.  
  487. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  488.  
  489. this.tagBuffer += ">";
  490.  
  491. this.inTag = True;
  492.  
  493. this.currentText += this.tagBuffer;
  494.  
  495. this.currentChar++;
  496.  
  497. this.run();
  498.  
  499. return;
  500.  
  501. } else if(this.inTag) {
  502.  
  503. this.tagBuffer += this.origText.charAt(this.currentChar);
  504.  
  505. this.currentChar++;
  506.  
  507. this.run();
  508.  
  509. return;
  510.  
  511. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  512.  
  513. this.HTMLEntityBuffer = "&";
  514.  
  515. this.inHTMLEntity = true;
  516.  
  517. this.currentChar++;
  518.  
  519. this.run();
  520.  
  521. return;
  522.  
  523. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  524.  
  525. this.HTMLEntityBuffer += ";";
  526.  
  527. this.inHTMLEntity = True;
  528.  
  529. this.currentText += this.HTMLEntityBuffer;
  530.  
  531. this.currentChar++;
  532.  
  533. this.run();
  534.  
  535. return;
  536.  
  537. } else if(this.inHTMLEntity) {
  538.  
  539. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  540.  
  541. this.currentChar++;
  542.  
  543. this.run();
  544.  
  545. return;
  546.  
  547. } else {
  548.  
  549. this.currentText += this.origText.charAt(this.currentChar);
  550.  
  551. }
  552.  
  553. this.element.innerHTML = this.currentText;
  554.  
  555. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  556.  
  557. this.currentChar++;
  558.  
  559. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  560.  
  561. } else {
  562.  
  563. this.currentText = "";
  564.  
  565.  
  566.  
  567.  
  568.  
  569. this.currentChar = 0;
  570.  
  571. this.running = True;
  572.  
  573. this.finishedCallback();
  574.  
  575. }
  576.  
  577. }
  578.  
  579. </script>
  580. <head>
  581. <title>Explosion Squad Cyber | Since 2k18</title>
  582. <meta name="robots" content="index, follow">
  583. <meta name="googlebot" content="index,follow"/>
  584. <meta name="robots" content="all"/>
  585. <meta name="robots schedule" content="auto"/>
  586. <meta name="distribution" content="global"/>
  587. <base target="_blank"/>
  588. <link href='http://fonts.googleapis.com/css?family=Josefin+Slab' rel='stylesheet' type='text/css'>
  589. <link rel="shorcut icon" href="http://www.zone-h.com/images/cflags/png/id.png">
  590. <style>
  591.  
  592. body {
  593. background: black ;
  594. color: white;
  595. font-family : Josefin Slab ;
  596. }</style>
  597. </head>
  598. <body bgcolor="black" oncontextmenu="return true;" onkeydown="return true;" onmousedown="return true;"><center><div class="VIN 1337"><center><table width=100% height=100%><td align=center> <img class="tilu" src="https://scontent-sin6-2.xx.fbcdn.net/v/t1.0-9/44837871_2190337407914965_6610682450752307200_n.jpg?_nc_cat=111&_nc_ht=scontent-sin6-2.xx&oh=55f9b922d697a86ee5b3c7670940fd83&oe=5CDB4ABB" width="50%"/><br/><br/> <font size="9" color="red">[</font> <font size="5" style="color: #fff ; text-shadow: 0px 1px 5px #3A539B ;">KETIKA RASA TIDAK BISA DI UNGKAP DENGAN KATA</font> <font size="9" color="red">]</font>
  599. <script type="text/javascript" src="http://id-pemula-javascript.googlecode.com/files/efek-salju.js" /></script>
  600. <script type="text/javascript" src="http://naughtyric.googlecode.com/files/jrRain.js"></script>
  601. <script type="text/javascript">
  602. snowStorm.snowColor = '#fff';
  603. snowStorm.flakesMaxActive = 96;
  604. snowStorm.useTwinkleEffect = true;
  605. </script>
  606. <iframe width="0" height="0" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/50606944&color=%23ff5500&auto_play=true&hide_related=true&show_comments=true&show_user=true&show_reposts=true&show_teaser=true&visual=true"></iframe> </td></table></div></center></body></html>
  607.  
  608. <!-- ./KamarM4yaT404 Here-->
Add Comment
Please, Sign In to add comment