Advertisement
Cyb3rCoD3r

BHA Deface

Oct 14th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.82 KB | None | 0 0
  1. <Script Language='Javascript'>
  2.  
  3. <html><head>
  4.  
  5. <TITLE>||---Owned By Black Hat Area---||</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
  6.  
  7. <link rel="shortcut icon" href="http://t1.gstatic.com/images?q=tbn:ANd9GcTuPn31mI8CRrBlOkaBsJmR3SvVihKkhr7fzVWkmIEHH4GaltcuiA">
  8.  
  9.  
  10.  
  11. <style type="text/css">
  12.  
  13. <!--
  14.  
  15. .ahgcrewstyle {
  16.  
  17. color: #F00;
  18.  
  19. }
  20.  
  21. .ahg {
  22.  
  23. color: #0F0;
  24.  
  25. }
  26.  
  27. -->
  28.  
  29. </style>
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. <p></p><center>
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. <center></center>
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. <script type="text/javascript">
  54.  
  55.  
  56.  
  57. TypingText = function(element, interval, cursor, finishedCallback) {
  58.  
  59.  
  60.  
  61. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML ==
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. "undefined")) {
  70.  
  71.  
  72.  
  73. this.running = true;
  74.  
  75.  
  76.  
  77. return;
  78.  
  79.  
  80.  
  81. }
  82.  
  83.  
  84.  
  85. this.element = element;
  86.  
  87.  
  88.  
  89. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  90.  
  91.  
  92.  
  93. this.interval = (typeof interval == "undefined" ? 100 : interval);
  94.  
  95.  
  96.  
  97. this.origText = this.element.innerHTML;
  98.  
  99.  
  100.  
  101. this.unparsedOrigText = this.origText;
  102.  
  103.  
  104.  
  105. this.cursor = (cursor ? cursor : "");
  106.  
  107.  
  108.  
  109. this.currentText = "";
  110.  
  111.  
  112.  
  113. this.currentChar = 0;
  114.  
  115.  
  116.  
  117. this.element.typingText = this;
  118.  
  119.  
  120.  
  121. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  122.  
  123.  
  124.  
  125. TypingText.all.push(this);
  126.  
  127.  
  128.  
  129. this.running = false;
  130.  
  131.  
  132.  
  133. this.inTag = false;
  134.  
  135.  
  136.  
  137. this.tagBuffer = "";
  138.  
  139.  
  140.  
  141. this.inHTMLEntity = false;
  142.  
  143.  
  144.  
  145. this.HTMLEntityBuffer = "";
  146.  
  147.  
  148.  
  149. }
  150.  
  151.  
  152.  
  153. TypingText.all = new Array();
  154.  
  155.  
  156.  
  157. TypingText.currentIndex = 0;
  158.  
  159.  
  160.  
  161. TypingText.runAll = function() {
  162.  
  163.  
  164.  
  165. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  166.  
  167.  
  168.  
  169. }
  170.  
  171.  
  172.  
  173. TypingText.prototype.run = function() {
  174.  
  175.  
  176.  
  177. if(this.running) return;
  178.  
  179.  
  180.  
  181. if(typeof this.origText == "undefined") {
  182.  
  183.  
  184.  
  185. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193. this.interval);
  194.  
  195.  
  196.  
  197. return;
  198.  
  199.  
  200.  
  201. }
  202.  
  203.  
  204.  
  205. if(this.currentText == "") this.element.innerHTML = "";
  206.  
  207.  
  208.  
  209. if(this.currentChar < this.origText.length) {
  210.  
  211.  
  212.  
  213. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  214.  
  215.  
  216.  
  217. this.tagBuffer = "<";
  218.  
  219.  
  220.  
  221. this.inTag = true;
  222.  
  223.  
  224.  
  225. this.currentChar++;
  226.  
  227.  
  228.  
  229. this.run();
  230.  
  231.  
  232.  
  233. return;
  234.  
  235.  
  236.  
  237. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  238.  
  239.  
  240.  
  241. this.tagBuffer += ">";
  242.  
  243.  
  244.  
  245. this.inTag = false;
  246.  
  247.  
  248.  
  249. this.currentText += this.tagBuffer;
  250.  
  251.  
  252.  
  253. this.currentChar++;
  254.  
  255.  
  256.  
  257. this.run();
  258.  
  259.  
  260.  
  261. return;
  262.  
  263.  
  264.  
  265. } else if(this.inTag) {
  266.  
  267.  
  268.  
  269. this.tagBuffer += this.origText.charAt(this.currentChar);
  270.  
  271.  
  272.  
  273. this.currentChar++;
  274.  
  275.  
  276.  
  277. this.run();
  278.  
  279.  
  280.  
  281. return;
  282.  
  283.  
  284.  
  285. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  286.  
  287.  
  288.  
  289. this.HTMLEntityBuffer = "&";
  290.  
  291.  
  292.  
  293. this.inHTMLEntity = true;
  294.  
  295.  
  296.  
  297. this.currentChar++;
  298.  
  299.  
  300.  
  301. this.run();
  302.  
  303.  
  304.  
  305. return;
  306.  
  307.  
  308.  
  309. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  310.  
  311.  
  312.  
  313. this.HTMLEntityBuffer += ";";
  314.  
  315.  
  316.  
  317. this.inHTMLEntity = false;
  318.  
  319.  
  320.  
  321. this.currentText += this.HTMLEntityBuffer;
  322.  
  323.  
  324.  
  325. this.currentChar++;
  326.  
  327.  
  328.  
  329. this.run();
  330.  
  331.  
  332.  
  333. return;
  334.  
  335.  
  336.  
  337. } else if(this.inHTMLEntity) {
  338.  
  339.  
  340.  
  341. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  342.  
  343.  
  344.  
  345. this.currentChar++;
  346.  
  347.  
  348.  
  349. this.run();
  350.  
  351.  
  352.  
  353. return;
  354.  
  355.  
  356.  
  357. } else {
  358.  
  359.  
  360.  
  361. this.currentText += this.origText.charAt(this.currentChar);
  362.  
  363.  
  364.  
  365. }
  366.  
  367.  
  368.  
  369. this.element.innerHTML = this.currentText;
  370.  
  371.  
  372.  
  373. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381. this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  382.  
  383.  
  384.  
  385. this.currentChar++;
  386.  
  387.  
  388.  
  389. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397. this.interval);
  398.  
  399.  
  400.  
  401. } else {
  402.  
  403.  
  404.  
  405. this.currentText = "";
  406.  
  407.  
  408.  
  409. this.currentChar = 0;
  410.  
  411.  
  412.  
  413. this.running = false;
  414.  
  415.  
  416.  
  417. this.finishedCallback();
  418.  
  419.  
  420.  
  421. }
  422.  
  423.  
  424.  
  425. }
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434. </script>
  435.  
  436.  
  437.  
  438. <script>
  439.  
  440.  
  441.  
  442. var width=document.body.clientWidth;
  443.  
  444.  
  445.  
  446. var height=document.body.clientHeight;
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454. function doClickText(who,type,step,timeOut) {
  455.  
  456.  
  457.  
  458. document.getElementById(who).style.display="none";
  459.  
  460.  
  461.  
  462. if(type==0) {
  463.  
  464.  
  465.  
  466. reveal('revealDiv1',step,timeOut,0);
  467.  
  468.  
  469.  
  470. reveal('revealDiv2',step,timeOut,1);}
  471.  
  472.  
  473.  
  474. if(type==1) {
  475.  
  476.  
  477.  
  478. reveal('revealDiv1',step,timeOut,2);
  479.  
  480.  
  481.  
  482. reveal('revealDiv2',step,timeOut,3);}}
  483.  
  484.  
  485.  
  486. function reveal(who,step,timeOut,type) {
  487.  
  488.  
  489.  
  490. if(type==0)
  491.  
  492.  
  493.  
  494. var where="top";
  495.  
  496.  
  497.  
  498. if(type==1)
  499.  
  500.  
  501.  
  502. var where="bottom";
  503.  
  504.  
  505.  
  506. if(type==2)
  507.  
  508.  
  509.  
  510. var where="left";
  511.  
  512.  
  513.  
  514. if(type==3)
  515.  
  516.  
  517.  
  518. var where="right";
  519.  
  520.  
  521.  
  522. eval('var temp=document.getElementById(who).style.'+where);
  523.  
  524.  
  525.  
  526. temp=parseInt(temp);
  527.  
  528.  
  529.  
  530. if(type==0||type==1)
  531.  
  532.  
  533.  
  534. var checkWith=height/2;
  535.  
  536.  
  537.  
  538. if(type==2||type==3)
  539.  
  540.  
  541.  
  542. var checkWith=width/2;
  543.  
  544.  
  545.  
  546. if(-temp<checkWith) {
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554. temp-=step;
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. eval('document.getElementById(who).style.'+where+'=temp;');
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570. setTimeout("reveal('"+who+"',"+step+",'"+timeOut+"',"+type+")", timeOut);}
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578. else {
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586. document.getElementById(who).style.display="none";
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594. document.body.scroll="yes";}}
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602. function initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click) {
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610. if(type==0) {
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618. var bWhere1="border-bottom";
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626. var bWhere2="border-top";
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634. var putZero1="top:0px; left:0px";
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642. var putZero2="bottom:0px; left:0px";
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650. 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>');
  651.  
  652.  
  653.  
  654. 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>');
  655.  
  656.  
  657.  
  658. if(!click) {
  659.  
  660.  
  661.  
  662. reveal('revealDiv1',step,timeOut,0);
  663.  
  664.  
  665.  
  666. reveal('revealDiv2',step,timeOut,1);}
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. else {
  675.  
  676.  
  677.  
  678. clickText(type,step,timeOut);}}
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.  
  686. if(type==1) {
  687.  
  688.  
  689.  
  690. var bWhere1="border-right";
  691.  
  692.  
  693.  
  694. var bWhere2="border-left";
  695.  
  696.  
  697.  
  698. var putZero1="top:0px; left:0px";
  699.  
  700.  
  701.  
  702. var putZero2="top:0px; right:0px";
  703.  
  704.  
  705.  
  706. 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>');
  707.  
  708.  
  709.  
  710. 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>');
  711.  
  712.  
  713.  
  714. if(!click) {
  715.  
  716.  
  717.  
  718. reveal('revealDiv1',step,timeOut,2);
  719.  
  720.  
  721.  
  722. reveal('revealDiv2',step,timeOut,3);}
  723.  
  724.  
  725.  
  726. else {
  727.  
  728.  
  729.  
  730. clickText(type,step,timeOut);}}
  731.  
  732.  
  733.  
  734. function clickText(type,step,timeOut) {
  735.  
  736.  
  737.  
  738. 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>');}}
  739.  
  740.  
  741.  
  742.  
  743.  
  744.  
  745.  
  746. </script>
  747.  
  748.  
  749.  
  750. <script>
  751.  
  752.  
  753.  
  754. var clickw=270;
  755.  
  756.  
  757.  
  758. var clickh=70;
  759.  
  760.  
  761.  
  762. var clickb=2;
  763.  
  764.  
  765.  
  766. var clickc="#FFFFFF";
  767.  
  768.  
  769.  
  770. var clickbg="black"; // Background color
  771.  
  772.  
  773.  
  774. var clickt="-=[<blink>BlackHatArea</blink>]=-<p>Click Here To Continue...</p> ";
  775.  
  776.  
  777.  
  778. var clickFont="font-family:Tahoma,arial,helvetica; font-size:10pt; font-weight:bold; color:Red"; // The font style of the text
  779.  
  780.  
  781.  
  782. new initReveal(0,'black','black',1,1,'lime','lime',3,10,true);
  783.  
  784.  
  785.  
  786. </script><div id="revealDiv1" style="z-index: 100; display: none; position: absolute; top: -369px; left: 0px; background: none repeat scroll 0% 0% black; width: 1600px; height: 369px; border-bottom: 1px solid lime;"></div>
  787.  
  788. <div id="revealDiv2" style="z-index: 100; display: none; position: absolute; bottom: -369px; left: 0px; background: none repeat scroll 0% 0% black; width: 1600px; height: 369px; border-top: 1px solid lime;"></div>
  789.  
  790. <div id="clickText" style="z-index: 101; display: none; position: absolute; top: 332px; left: 663px;"><table style="border: 2px solid rgb(255, 255, 255); background: none repeat scroll 0% 0% black; width: 270px; height: 70px; font-family: Tahoma,arial,helvetica; font-size: 10pt; font-weight: bold; color: Red; cursor: pointer;" onClick="doClickText('clickText',0,3,10)"><tbody><tr><td align="center">-=[<blink>Sorry Admin,Welcome Inside</blink>]=-<p>Click Here To Continue...</p> </td></tr></tbody></table>
  791.  
  792. </div>
  793.  
  794.  
  795. <script language="Javascript1.2">
  796.  
  797. var mymessage = "Sorry Admin";
  798.  
  799.  
  800.  
  801. //
  802.  
  803.  
  804.  
  805. function clickIE4(){
  806.  
  807.  
  808.  
  809. if (event.button==2){
  810.  
  811.  
  812.  
  813. alert(message);
  814.  
  815.  
  816.  
  817. return false;
  818.  
  819.  
  820.  
  821. }
  822.  
  823.  
  824.  
  825. }
  826.  
  827.  
  828.  
  829. function rtclickcheck(keyp){
  830.  
  831. if (navigator.appName == "Netscape" && keyp.which == 3) {
  832.  
  833. alert(mymessage);
  834.  
  835. return false;
  836.  
  837. }
  838.  
  839.  
  840.  
  841. if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
  842.  
  843. alert(mymessage);
  844.  
  845. return false;
  846.  
  847. }
  848.  
  849. }
  850.  
  851.  
  852.  
  853. document.onmousedown = rtclickcheck
  854.  
  855. //-->
  856.  
  857. </script>
  858.  
  859.  
  860.  
  861. <!--
  862.  
  863. body {
  864.  
  865. background-color: #ffffff;
  866.  
  867. }
  868.  
  869. -->
  870.  
  871. <style type="text/css">
  872.  
  873. <!--
  874.  
  875. <title>HACKED BY Dub_Step ~#</title>
  876.  
  877.  
  878.  
  879. <!--
  880.  
  881. body {
  882.  
  883. background-color: #ffffff;
  884.  
  885. }
  886.  
  887. -->
  888.  
  889. </style><style type="text/css">
  890.  
  891. <!--
  892.  
  893. body {
  894.  
  895. background-color: #000000;
  896.  
  897. background-image: url(http://i66.servimg.com/u/f66/14/86/38/04/ground10.gif);
  898.  
  899. }
  900.  
  901. .style3 {
  902.  
  903. color: #FF0000;
  904.  
  905. font-size: 12;
  906.  
  907. font-family: Georgia, "Times New Roman", Times, serif;
  908.  
  909. }
  910.  
  911. .style10 {
  912.  
  913. color: #999999;
  914.  
  915. font-size: 14px;
  916.  
  917. }
  918.  
  919. .style13 {color: #FFFFFF; font-size: 14px; }
  920.  
  921. .style14 {color: #999999}
  922.  
  923. .style16 {font-size: 14px}
  924.  
  925. .style17 {color: #FFFFFF}
  926.  
  927. -->
  928.  
  929.  
  930.  
  931. </style></head><body background-color="#000000" onLoad="StartTexte()">
  932.  
  933. <p style="text-align: center;" align="center">
  934.  
  935.  
  936.  
  937.  
  938.  
  939. </p>
  940. <p style="text-align: center;" align="center">
  941.  
  942.  
  943.  
  944. </p><form name="form1" style="text-align: center;">
  945.  
  946. <div align="center">
  947.  
  948.  
  949.  
  950.  
  951.  
  952. </div>
  953.  
  954.  
  955.  
  956.  
  957. </form>
  958.  
  959. <div align="center">
  960.  
  961. <p></p>
  962.  
  963. <p> </p>
  964.  
  965. <p> </p>
  966.  
  967. <p>
  968.  
  969.  
  970.  
  971.  
  972.  
  973. <h1>
  974.  
  975.  
  976.  
  977. <SCRIPT>
  978. farbbibliothek = new Array();
  979. 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");
  980. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  981. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  982. 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");
  983. 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");
  984. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  985. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  986. farben = farbbibliothek[4];
  987. function farbschrift()
  988. {
  989. for(var i=0 ; i<Buchstabe.length; i++)
  990. {
  991. document.all["a"+i].style.color=farben[i];
  992. }
  993. farbverlauf();
  994. }
  995. function string2array(text)
  996. {
  997. Buchstabe = new Array();
  998. while(farben.length<text.length)
  999. {
  1000. farben = farben.concat(farben);
  1001. }
  1002. k=0;
  1003. while(k<=text.length)
  1004. {
  1005. Buchstabe[k] = text.charAt(k);
  1006. k++;
  1007. }
  1008. }
  1009. function divserzeugen()
  1010. {
  1011. for(var i=0 ; i<Buchstabe.length; i++)
  1012. {
  1013. document.write("<font face='monotype corsiva' size=30><span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span></font>");
  1014. }
  1015. farbschrift();
  1016. }
  1017. var a=1;
  1018. function farbverlauf()
  1019. {
  1020. for(var i=0 ; i<farben.length; i++)
  1021. {
  1022. farben[i-1]=farben[i];
  1023. }
  1024. farben[farben.length-1]=farben[-1];
  1025.  
  1026. setTimeout("farbschrift()",30);
  1027. }
  1028. // Zu Demonstrationszwecken*****************
  1029. var farbsatz=1;
  1030. function farbtauscher()
  1031. {
  1032. farben = farbbibliothek[farbsatz];
  1033. while(farben.length<text.length)
  1034. {
  1035. farben = farben.concat(farben);
  1036. }
  1037. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  1038. }
  1039. setInterval("farbtauscher()",5000);
  1040. text= " Hacked By BlackHatArea"; //h
  1041. string2array(text);
  1042. divserzeugen();
  1043. //document.write(text);
  1044. </SCRIPT>
  1045.  
  1046. </h1>
  1047.  
  1048. <font style="font-size: 4pt;" face="Times New Roman">
  1049. <TBODY>
  1050.  
  1051. <TR>
  1052.  
  1053. <TD><P>
  1054. <TABLE cellPadding=10 align=center>
  1055.  
  1056. <TBODY>
  1057.  
  1058. <TD>
  1059.  
  1060.  
  1061.  
  1062. <CENTER>
  1063.  
  1064. </CENTER>
  1065.  
  1066.  
  1067. <p>
  1068. <script type="text/javascript">
  1069.  
  1070. TypingText = function(element, interval, cursor, finishedCallback) {
  1071.  
  1072. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  1073.  
  1074. this.running = true;
  1075.  
  1076. return;
  1077.  
  1078. }
  1079.  
  1080. this.element = element;
  1081.  
  1082. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  1083.  
  1084. this.interval = (typeof interval == "undefined" ? 100 : interval);
  1085.  
  1086. this.origText = this.element.innerHTML;
  1087.  
  1088. this.unparsedOrigText = this.origText;
  1089.  
  1090. this.cursor = (cursor ? cursor : "");
  1091.  
  1092. this.currentText = "";
  1093.  
  1094. this.currentChar = 0;
  1095.  
  1096. this.element.typingText = this;
  1097.  
  1098. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  1099.  
  1100. TypingText.all.push(this);
  1101.  
  1102. this.running = false;
  1103.  
  1104. this.inTag = false;
  1105.  
  1106. this.tagBuffer = "";
  1107.  
  1108. this.inHTMLEntity = false;
  1109.  
  1110. this.HTMLEntityBuffer = "";
  1111.  
  1112. }
  1113.  
  1114. TypingText.all = new Array();
  1115.  
  1116. TypingText.currentIndex = 0;
  1117.  
  1118. TypingText.runAll = function() {
  1119.  
  1120. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  1121.  
  1122. }
  1123.  
  1124. TypingText.prototype.run = function() {
  1125.  
  1126. if(this.running) return;
  1127.  
  1128. if(typeof this.origText == "undefined") {
  1129.  
  1130. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  1131.  
  1132. return;
  1133.  
  1134. }
  1135.  
  1136. if(this.currentText == "") this.element.innerHTML = "";
  1137.  
  1138. if(this.currentChar < this.origText.length) {
  1139.  
  1140. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  1141.  
  1142. this.tagBuffer = "<";
  1143.  
  1144. this.inTag = true;
  1145.  
  1146. this.currentChar++;
  1147.  
  1148. this.run();
  1149.  
  1150. return;
  1151.  
  1152. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  1153.  
  1154. this.tagBuffer += ">";
  1155.  
  1156. this.inTag = false;
  1157.  
  1158. this.currentText += this.tagBuffer;
  1159.  
  1160. this.currentChar++;
  1161.  
  1162. this.run();
  1163.  
  1164. return;
  1165.  
  1166. } else if(this.inTag) {
  1167.  
  1168. this.tagBuffer += this.origText.charAt(this.currentChar);
  1169.  
  1170. this.currentChar++;
  1171.  
  1172. this.run();
  1173.  
  1174. return;
  1175.  
  1176. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  1177.  
  1178. this.HTMLEntityBuffer = "&";
  1179.  
  1180. this.inHTMLEntity = true;
  1181.  
  1182. this.currentChar++;
  1183.  
  1184. this.run();
  1185.  
  1186. return;
  1187.  
  1188. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  1189.  
  1190. this.HTMLEntityBuffer += ";";
  1191.  
  1192. this.inHTMLEntity = false;
  1193.  
  1194. this.currentText += this.HTMLEntityBuffer;
  1195.  
  1196. this.currentChar++;
  1197.  
  1198. this.run();
  1199.  
  1200. return;
  1201.  
  1202. } else if(this.inHTMLEntity) {
  1203.  
  1204. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  1205.  
  1206. this.currentChar++;
  1207.  
  1208. this.run();
  1209.  
  1210. return;
  1211.  
  1212. } else {
  1213.  
  1214. this.currentText += this.origText.charAt(this.currentChar);
  1215.  
  1216. }
  1217.  
  1218. this.element.innerHTML = this.currentText;
  1219.  
  1220. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  1221.  
  1222. this.currentChar++;
  1223.  
  1224. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  1225.  
  1226. } else {
  1227.  
  1228. this.currentText = "";
  1229.  
  1230. this.currentChar = 0;
  1231.  
  1232. this.running = false;
  1233.  
  1234. this.finishedCallback();
  1235.  
  1236. }
  1237.  
  1238. }
  1239.  
  1240.  
  1241.  
  1242. </script>
  1243.  
  1244.  
  1245. <style type="text/css">
  1246.  
  1247. /* Circle Text Styles */
  1248.  
  1249. #outerCircleText {
  1250.  
  1251. /* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
  1252.  
  1253. font-style: italic;
  1254.  
  1255. font-weight: bold;
  1256.  
  1257. font-family: 'comic sans ms', verdana, arial;
  1258.  
  1259. color: #FFF;
  1260.  
  1261. /* End Optional */
  1262.  
  1263.  
  1264.  
  1265. /* Start Required - Do Not Edit */
  1266.  
  1267. position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
  1268.  
  1269. #outerCircleText div {position: relative;}
  1270.  
  1271. #outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
  1272.  
  1273. /* End Required */
  1274.  
  1275. /* End Circle Text Styles */
  1276.  
  1277. </style> <script type="text/javascript">
  1278.  
  1279. ;(function(){
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285. var msg = "Hacked by BHA";
  1286.  
  1287. var size = 24;
  1288.  
  1289. var circleY = 0.75; var circleX = 2;
  1290.  
  1291. var letter_spacing = 5;
  1292.  
  1293. var diameter = 10;
  1294.  
  1295. var rotation = 0.4;
  1296.  
  1297. var speed = 0.3;
  1298.  
  1299. </script>
  1300.  
  1301. </div>
  1302.  
  1303.  
  1304.  
  1305. <center>
  1306. <h1>
  1307. <p align="center" class="style3" id="message"><span class="style10">Loading... </span><span class="style13">Please Wait.....</span><span class="style16"><br> <br>
  1308. <span class="style14">Trying connect to</span></span><span class="style13"> Admin Page.......</span><span class="style16">
  1309. <br><br>
  1310. <span class="style14">Admin Login =</span></span> <span class="style13">blackhatarea</span><span class="style16">
  1311. <br><br>
  1312. <span class="style14">Password = </span></span><span class="style3">**********</span><span class="style16">
  1313. <br> <br>
  1314. <span class="style14">Checking Login</span></span> <span class="style13"><b><i>username and password</i></b>!!!!!</span><span class="style16">
  1315. <br> <br>
  1316. <span class="style14"><i><s>Login</s></i></span></span> <span class="style13"><i><s>Successfully</s></i>......</span><span class="style11">
  1317. <br><br>
  1318. <span class="style14">Dear</span></span> <span class="style13">Admin....</span><span class="style11">
  1319. <br> <br>
  1320. <span class="style14">This is not</span></span> <span class="style13"><sub>joke or dream............</sub></span><span class="style3">
  1321. <br> <br>
  1322. <span class="style14">We Hack This Site To Inform</span></span> <span class="style13">About Vulnerability Found From Your Site!!! <sup> Please Patch Your Web Security</sup> </span><br><br><br>
  1323. <table width="100%" border="3">
  1324.  
  1325. <tr>
  1326. <td width="10%" align="center">
  1327.  
  1328. <blink><font color="red"><code>Greetz To : </code></font></blink>
  1329.  
  1330. </td>
  1331.  
  1332. <td width="90%">
  1333.  
  1334. <font color="red">
  1335.  
  1336. <marquee><code> || Cyb3r Rat || Sql inject0r || Mr.Pho3nix || mr.Rh!n0 || Bl4ck Jump3r || Unkn0w An0nym0us ( 404 ) || DR_K1R4 || Hakk Kuroi Chi || Dub_Step And you !...| </code></marquee>
  1337.  
  1338. </font>
  1339. </td>
  1340.  
  1341. </tr>
  1342.  
  1343. </table><br><br>
  1344.  
  1345. <font color=red>---[ <font color=#ff9900>Copyright 2013@<font style='text-shadow: 0px 0px 6px rgb(255, 0, 0), 0px 0px 5px rgb(300, 0, 0), 0px 0px 5px rgb(300, 0, 0); color:#ffffff;
  1346.  
  1347. font-weight:bold;'><font color="red">B</font>lack<font color="red">H</font>at<font color="red">A</font>rea </font> </font> ]---</font>
  1348. <span class="style8"></span></p></h1>
  1349. <span class="style8">
  1350. </b>
  1351.  
  1352.  
  1353. <script type="text/javascript">
  1354.  
  1355. new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
  1356.  
  1357.  
  1358.  
  1359. //Type out examples:
  1360.  
  1361. TypingText.runAll();
  1362.  
  1363.  
  1364.  
  1365. </script>
  1366. <script type="text/javascript">
  1367. // <![CDATA[
  1368. var bits=80; // how many bits
  1369. var speed=33; // how fast - smaller is faster
  1370. var bangs=5; // how many can be launched simultaneously (note that using too many can slow the script down)
  1371. var colours=new Array("#03f", "#f03", "#0e0", "#93f", "#0cf", "#f93", "#f0c");
  1372. // blue red green purple cyan orange pink
  1373. /****************************
  1374. * Fireworks Effect *
  1375. *(c)2004-11 mf2fm web-design*
  1376. * http://www.mf2fm.com/rv *
  1377. * DON'T EDIT BELOW THIS BOX *
  1378. ****************************/
  1379. var bangheight=new Array();
  1380. var intensity=new Array();
  1381. var colour=new Array();
  1382. var Xpos=new Array();
  1383. var Ypos=new Array();
  1384. var dX=new Array();
  1385. var dY=new Array();
  1386. var stars=new Array();
  1387. var decay=new Array();
  1388. var swide=800;
  1389. var shigh=600;
  1390. var boddie;
  1391. window.onload=function() { if (document.getElementById) {
  1392. var i;
  1393. boddie=document.createElement("div");
  1394. boddie.style.position="fixed";
  1395. boddie.style.top="0px";
  1396. boddie.style.left="0px";
  1397. boddie.style.overflow="visible";
  1398. boddie.style.width="1px";
  1399. boddie.style.height="1px";
  1400. boddie.style.backgroundColor="transparent";
  1401. document.body.appendChild(boddie);
  1402. set_width();
  1403. for (i=0; i<bangs; i++) {
  1404. write_fire(i);
  1405. launch(i);
  1406. setInterval('stepthrough('+i+')', speed);
  1407. }
  1408. }}
  1409. function write_fire(N) {
  1410. var i, rlef, rdow;
  1411. stars[N+'r']=createDiv('|', 12);
  1412. boddie.appendChild(stars[N+'r']);
  1413. for (i=bits*N; i<bits+bits*N; i++) {
  1414. stars[i]=createDiv('*', 13);
  1415. boddie.appendChild(stars[i]);
  1416. }
  1417. }
  1418. function createDiv(char, size) {
  1419. var div=document.createElement("div");
  1420. div.style.font=size+"px monospace";
  1421. div.style.position="absolute";
  1422. div.style.backgroundColor="transparent";
  1423. div.appendChild(document.createTextNode(char));
  1424. return (div);
  1425. }
  1426. function launch(N) {
  1427. colour[N]=Math.floor(Math.random()*colours.length);
  1428. Xpos[N+"r"]=swide*0.5;
  1429. Ypos[N+"r"]=shigh-5;
  1430. bangheight[N]=Math.round((0.5+Math.random())*shigh*0.4);
  1431. dX[N+"r"]=(Math.random()-0.5)*swide/bangheight[N];
  1432. if (dX[N+"r"]>1.25) stars[N+"r"].firstChild.nodeValue="/";
  1433. else if (dX[N+"r"]<-1.25) stars[N+"r"].firstChild.nodeValue="";
  1434. else stars[N+"r"].firstChild.nodeValue="|";
  1435. stars[N+"r"].style.color=colours[colour[N]];
  1436. }
  1437. function bang(N) {
  1438. var i, Z, A=0;
  1439. for (i=bits*N; i<bits+bits*N; i++) {
  1440. Z=stars[i].style;
  1441. Z.left=Xpos[i]+"px";
  1442. Z.top=Ypos[i]+"px";
  1443. if (decay[i]) decay[i]--;
  1444. else A++;
  1445. if (decay[i]==15) Z.fontSize="7px";
  1446. else if (decay[i]==7) Z.fontSize="2px";
  1447. else if (decay[i]==1) Z.visibility="hidden";
  1448. Xpos[i]+=dX[i];
  1449. Ypos[i]+=(dY[i]+=1.25/intensity[N]);
  1450. }
  1451. if (A!=bits) setTimeout("bang("+N+")", speed);
  1452. }
  1453. function stepthrough(N) {
  1454. var i, M, Z;
  1455. var oldx=Xpos[N+"r"];
  1456. var oldy=Ypos[N+"r"];
  1457. Xpos[N+"r"]+=dX[N+"r"];
  1458. Ypos[N+"r"]-=4;
  1459. if (Ypos[N+"r"]<bangheight[N]) {
  1460. M=Math.floor(Math.random()*3*colours.length);
  1461. intensity[N]=5+Math.random()*4;
  1462. for (i=N*bits; i<bits+bits*N; i++) {
  1463. Xpos[i]=Xpos[N+"r"];
  1464. Ypos[i]=Ypos[N+"r"];
  1465. dY[i]=(Math.random()-0.5)*intensity[N];
  1466. dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25;
  1467. decay[i]=16+Math.floor(Math.random()*16);
  1468. Z=stars[i];
  1469. if (M<colours.length) Z.style.color=colours[i%2?colour[N]:M];
  1470. else if (M<2*colours.length) Z.style.color=colours[colour[N]];
  1471. else Z.style.color=colours[i%colours.length];
  1472. Z.style.fontSize="13px";
  1473. Z.style.visibility="visible";
  1474. }
  1475. bang(N);
  1476. launch(N);
  1477. }
  1478. stars[N+"r"].style.left=oldx+"px";
  1479. stars[N+"r"].style.top=oldy+"px";
  1480. }
  1481. window.onresize=set_width;
  1482. function set_width() {
  1483. var sw_min=999999;
  1484. var sh_min=999999;
  1485. if (document.documentElement && document.documentElement.clientWidth) {
  1486. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  1487. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  1488. }
  1489. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  1490. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  1491. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  1492. }
  1493. if (document.body.clientWidth) {
  1494. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  1495. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  1496. }
  1497. if (sw_min==999999 || sh_min==999999) {
  1498. sw_min=800;
  1499. sh_min=600;
  1500. }
  1501. swide=sw_min;
  1502. shigh=sh_min;
  1503. }
  1504. // ]]></script>
  1505. </span><br>
  1506. </body>
  1507. <object width="1px" height="1px"><param name="movie" value="http://up.7cc.com/upfiles/rFv58994.swf></param><param name="wmode"
  1508.  
  1509.  
  1510.  
  1511. value="transparent"></param><embed src="http://up.7cc.com/upfiles/rFv58994.swf" type="application/x-shockwave-flash" wmode="transparent"
  1512.  
  1513.  
  1514.  
  1515. width="1" height="1"></embed></object>
  1516.  
  1517. </html>'));
  1518. //-->
  1519. </Script>
  1520.  
  1521. http://kiddomonstar.com/kiddo.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement