Mr_Acid_Poison

SC part 1

Aug 10th, 2016
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 24.14 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link href='http://fonts.googleapis.com/css?family=Fauna+One' rel='stylesheet' type='text/css'>
  4. <link rel='shortcut icon' href='"http://i.imgur.com/QYUFm5u.png'></link>
  5. <script>alert("Cyrus Cyber")</script>
  6.  
  7. <head>
  8. <script language="JavaScript">
  9. var brzinakucanja = 200;
  10. var pauzapor = 2000;
  11. var vremeid = null;
  12. var kretanje = false;
  13. var poruka = new Array();
  14. var slporuka = 0;
  15. var bezporuke = 0;
  16. poruka[0] = "SH4D0W_SH00T3R Was Here"
  17. function prikaz() {
  18. var text = poruka[slporuka];
  19. if (bezporuke < text.length) {
  20. if (text.charAt(bezporuke) == " ")
  21. bezporuke++
  22. var ttporuka = text.substring(0, bezporuke + 1);
  23. document.title = ttporuka;
  24. bezporuke++
  25. vremeid = setTimeout("prikaz()", brzinakucanja);
  26. kretanje = true;
  27. } else {
  28. bezporuke = 0;
  29. slporuka++
  30. if (slporuka == poruka.length)
  31. slporuka = 0;
  32. vremeid = setTimeout("prikaz()", pauzapor);
  33. kretanje = true;
  34. }
  35. }
  36. function stop() {
  37. if (kretanje)
  38. clearTimeout(vremeid);
  39. kretanje = false
  40. }
  41. function start() {
  42. stop();
  43. prikaz();
  44. }
  45. start();
  46. </script>
  47.  
  48. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  49. <meta name="keywords" content="SH4D0W_SH00T3R">
  50. <meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1" />
  51. <meta name="description" content="SH4D0W_SH00T3R Was Here"><script type="text/javascript">
  52. //<![CDATA[
  53. try{if (!window.CloudFlare) { var CloudFlare=[{verbose:0,p:0,byc:0,owlid:0,mirage:0,oracle:0,paths:{cloudflare:"/cdn-cgi/nexp/v=2965651658/"},atok:"46d7245de8fe7573628a114e8d9dabf4",zone:"zonehmirrors.net",rocket:"0",apps:{"dnschanger_detector":{"fix_url":null}}}];document.write('<script type="text/javascript" src="//ajax.cloudflare.com/cdn-cgi/nexp/v=3037830340/cloudflare.min.js"><'+'\/script>')}}catch(a){};
  54. //]]>
  55. </script>
  56. <script type="text/javascript">
  57. //<![CDATA[
  58. window.__CF=window.__CF||{};window.__CF.AJS={"dnschanger_detector":{"fix_url":null}};
  59. //]]>
  60. </script>
  61.  
  62. <title>SH4D0W_SH00T3R Was Here</title>
  63.  
  64.  
  65. <script src="http://code.jquery.com/jquery-latest.min.js"></script>
  66.  
  67. <script>
  68. //
  69.  
  70. var current_type = 1;
  71. (function($) {
  72.    
  73.     function shuffle(a) {
  74.         var i = a.length, j;
  75.         while (i) {
  76.             var j = Math.floor((i--) * Math.random());
  77.             var t = a[i];
  78.             a[i] = a[j];
  79.             a[j] = t;
  80.         }
  81.     }
  82.    
  83.     function randomAlphaNum() {
  84.         var rnd = Math.floor(Math.random() * 62);
  85.         if (rnd >= 52) return String.fromCharCode(rnd - 4);
  86.         else if (rnd >= 26) return String.fromCharCode(rnd + 71);
  87.         else return String.fromCharCode(rnd + 65);
  88.     }
  89.    
  90.     $.fn.rot13 = function() {
  91.         this.each(function() {
  92.             $(this).text($(this).text().replace(/[a-z0-9]/ig, function(chr) {
  93.                 var cc = chr.charCodeAt(0);
  94.                 if (cc >= 65 && cc <= 90) cc = 65 + ((cc - 52) % 26);
  95.                 else if (cc >= 97 && cc <= 122) cc = 97 + ((cc - 84) % 26);
  96.                 else if (cc >= 48 && cc <= 57) cc = 48 + ((cc - 43) % 10);
  97.                 return String.fromCharCode(cc);
  98.             }));
  99.         });
  100.         return this;
  101.     };
  102.    
  103.     $.fn.scrambledWriter = function() {
  104.         this.each(function() {
  105.             var $ele = $(this), str = $ele.text(), progress = 0, replace = /[^\s]/g,
  106.                 random = randomAlphaNum, inc = 3;
  107.             $ele.text('');
  108.             var timer = setInterval(function() {
  109.                 $ele.text(str.substring(0, progress) + str.substring(progress, str.length - 1).replace(replace, random));
  110.                 progress += inc
  111.                 if (progress >= str.length + inc) { var nstr = $ele.text(); $ele.text(nstr.substring(0,nstr.length - 1));  current_type += 1; clearInterval(timer);}
  112.             }, 100);
  113.         });
  114.         return this;
  115.     };
  116.    
  117.     $.fn.typewriter = function() {
  118.         this.each(function() {
  119.             var $ele = $(this), str = $ele.html(), progress = 0;
  120.             $ele.html('');
  121.             var timer = setInterval(function() {
  122.                 $ele.html(str.substring(0, progress++) + (progress & 1 ? '_' : ''));
  123.                 if (progress >= str.length) { current_type += 1; clearInterval(timer);}
  124.             }, 100);
  125.         });
  126.        
  127.         return this;
  128.     };
  129.    
  130.     $.fn.unscramble = function() {
  131.         this.each(function() {
  132.             var $ele = $(this), str = $ele.text(), replace = /[^\s]/,
  133.                 state = [], choose = [], reveal = 25, random = randomAlphaNum;
  134.            
  135.             for (var i = 0; i < str.length; i++) {
  136.                if (str[i].match(replace)) {
  137.                    state.push(random());
  138.                    choose.push(i);
  139.                } else {
  140.                    state.push(str[i]);
  141.                }
  142.            }
  143.          
  144.            shuffle(choose);
  145.            $ele.text(state.join(''));
  146.          
  147.            var timer = setInterval(function() {
  148.                var i, r = reveal;
  149.                while (r-- && choose.length) {
  150.                    i = choose.pop();
  151.                    state[i] = str[i];
  152.                }
  153.                for (i = 0; i < choose.length; i++) state[choose[i]] = random();
  154.                $ele.text(state.join(''));
  155.                if (choose.length == 0) { current_type += 1; clearInterval(timer);}
  156.            }, 200);
  157.        });
  158.        return this;
  159.    };
  160.  
  161. })(jQuery);
  162.  
  163. function replaceAll(txt, replace, with_this) {
  164.  return txt.replace(new RegExp(replace, 'g'),with_this);
  165. }
  166.  
  167. eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('$(k).1L(b(){a U=1K 1J();a n=$("#T").S();n=1I(n,\'1H\',k.1G.1F);n=n.1E(/1D/,U);$("#T").S(n);b t(){a u=k.v+"     ";a r=0;k.v=\'\';a R=g(b(){k.v=u.1C(0,r++)+(r&1?\'1B\':\'\');c(r>=u.1A){e(R);t()}},1z)}t();s("p");$("#1y").j();a Q=g(b(){c(h==2){$("#1x").f();$("#1w").j();e(Q)}},i);a P=g(b(){c(h==3){$("#1v").f();$("#1u").N();e(P)}},i);a O=g(b(){c(h==4){$("#1t").f();$("#1s").j();e(O)}},i);a M=g(b(){c(h==5){$("#1r").f();$("#1q").N();e(M)}},i);a L=g(b(){c(h==6){$("#1p").f();$("#1o").j();e(L)}},i);a K=g(b(){c(h==7){$("#1n").q();$("#1m").f(H);$("#1l").j();e(K)}},1k);a J=g(b(){c(h==8){$("#1j").f();$("#1i").j();e(J)}},i);a F=g(b(){c(h==9){I.1h(0,1g);I.1f();$("#1e").f();$("#1d").j();$(\'#p\').1c({1b:"1a%",19:"H%"},b(){$("#p").m("x","5");$("#p").m("w","5");$("#p").m("d",$(k).d()-G);$("#18").m("d",$(k).d()-G);$("#17").f()});e(F)}},i);a E=g(b(){c(h==10){$("#16").q();$("#15").f();$("#14").j();e(E)}},i);a D=g(b(){c(h==11){$("#13").q();$("#Z").f();$("#Y").j();e(D)}},i);a C=g(b(){c(h==12){$("#X").q();$("#W").f();$("#V").j();e(C)}},i)});s();b s(o){a d=$(k).d();a l=$(k).l();a B=$("#"+o).d();a y=$("#"+o).l();d=A.z((d-B)/2);l=A.z((l-y)/2);c(d<0){d=2}c(l<0){l=2}$("#"+o).m("x",d);$("#"+o).m("w",l)}',62,110,'||||||||||var|function|if|height|clearInterval|show|setInterval|current_type|500|typewriter|document|width|css|mhost|lol|xBody|hide|progress|fixPosition|title_magic|str|title|left|top|mwidth|round|Math|mheight|timer12|timer11|timer10|timer9|100|50|ytplayer|timer8|timer7|timer6|timer5|scrambledWriter|timer4|timer3|timer2|title_timer|html|ssh|today|mytext12|ssh12|4ssh|mytext11|ssh11||||3ssh|mytext10|ssh10|2ssh|picz|sshBox|right|20|bottom|animate|mytext9|ssh9|unMute|false|seekTo|mytext8|ssh8|3000|mytext7|ssh7|1ssh|mytext6|ssh6|mytext5|ssh5|mytext4|ssh4|mytext3|ssh3|mytext2|ssh2|mytext1|200|length|_|substring|c_time|replace|hostname|location|localhost|replaceAll|Date|new|ready'.split('|')))
  168. </script>
  169. <body bgcolor="#000" marginwidth="0" marginheight="0" style="background: black url(http://2.bp.blogspot.com/-ahOljedQEw8/UlmGvhYf_lI/AAAAAAAAD24/JbB7FPyxsk4/s1600/Fusion-Backtrack-Ubuntu-Wallpaper.jpeg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size:cover;" onload="type_text()" bottommargin="0" rightmargin="0" leftmargin="0" topmargin="0">
  170.  
  171. <style>
  172. body{
  173. font-family: "courier new";
  174. font-size:80%;
  175. color: green;
  176. }
  177.  
  178. .xBody{
  179. width:660px;
  180. height:450px;
  181. position:absolute;
  182. z-index: 9;
  183. }
  184. .ssh{
  185. display:none;
  186. z-index: 9;
  187. }
  188. .sshBox{
  189. height:300px;
  190. border: 4px solid white;
  191.         -moz-border-radius: 4px;
  192.         -webkit-border-radius: 4px;
  193.         -o-border-radius: 4x;
  194.         -khtml-border-radius: 4px;
  195.         border-radius: 4px;
  196.         z-index: 9;
  197. }
  198. .sshHead{
  199. margin-bottom: 5px;
  200. color:black;
  201. font-weight: bold;
  202. background-color: white;
  203. height:20px;
  204. z-index: 9;
  205.  
  206. }
  207.  
  208. .greenBox{
  209. padding-left: 3px;
  210. position: absolute;
  211. height:22px;
  212. border: 1px solid #28FE14;
  213. z-index: 9;
  214. }
  215. .picz{
  216. position: absolute;
  217. width:500px;
  218. height:80%;
  219. display:none;
  220. right:2px;
  221. top:2px;
  222. }
  223. </style>
  224. </head>
  225. <body onselectstart="return false" ondragstart="return false" oncontextmenu="return false" onLoad="writetext()">
  226.  
  227.  
  228. <div class="xBody" id="xBody">
  229. <div id="ssh">
  230.  
  231. <div class="sshBox" id="sshBox">
  232. <div class="sshHead">#root@SH4D0W_SH00T3R:~</div>
  233. <div id="1ssh">
  234. [~SH4D0W_SH00T3R~]#<span id="mytext1"> ssh root@localhost -p ~SH4D0W_SH00T3R </span><br>
  235. <div id="ssh2" class="ssh">[msfconsole]# Enter Password:<span id="mytext2"> ************ </span></div>
  236.  
  237. <div id="ssh3" class="ssh">[root@localhost~]# <span id="mytext3">Last login: c_time </span></div>
  238. <div id="ssh4" class="ssh">[root@localhost~]# <span id="mytext4" style="color:red;">System failure <- Fail ->  </span></div>
  239. </br> </br>
  240. <div id="ssh5" class="ssh" style="font-size:280%;" align="center"><span id="mytext5">Mr.Acid Poison A.K.A SH4D0W_SH00T3R Was Here </span></div>
  241. <br>
  242. <div id="ssh5" class="ssh" style="font-size:280%;" align="center"><span id="mytext5">https://www.facebook.com/pages/HaxxorPhillipines/1586210818308971 follow us</span></div>
  243. <br>
  244. <div id="ssh6" class="ssh">[root@localhost~]# <span id="mytext6"> clear all   </span></div>
  245. </div>
  246. <br>
  247. <div id="2ssh">
  248. <div id="ssh7" class="ssh">[root@localhost~]# <span id="mytext7"><center><h1> Cyrus Cyber Was Here </h1><br>Mr.Acid Poison A.K.A SH4D0W_SH00T3R
  249.  
  250. </center><br>=>Messages<br>
  251. =>Sorry , your site has been Hacked by Mr.Acid Poison A.K.A SH4D0W_SH00T3R<br>
  252. =>I just want to say I love to hack fucking websites!<br>
  253. =>Please Patch Your System, Or I Will Comeback Again <br>
  254. =>There is Nothing Perfect Security<br>
  255. => FUCK! YOUR SITE! <br>
  256. <br> <br></span></div><div id="ssh5" class="ssh" style="font-size:280%;" align="center"><span id="mytext5">~SH4D0W_SH00T3R</span></div>
  257. <center><br><p> </div></center><div id="ssh10" class="ssh" style="padding-left:5px;">[root@localhost~]# <span id="mytext10">Demands ---> <br>
  258. </span></div>
  259. </div>
  260.  
  261. </div>
  262. </div>
  263.  
  264. </div>
  265.  
  266.  
  267. <div class="picz" id="picz">
  268.  
  269. </div>
  270.  <div id="ytapiplayer" >
  271.   </div>
  272.  <script>
  273. eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('w u(t){0=s.r("6");0.q();0.p();0.o(n)}7 4={m:"l"};7 2={k:"6"};j.i("h://g.f.e/v/d?c=1&b=0&a=3","9","1","1","8",5,5,4,2);',33,33,'ytplayer||atts||params|null|myytplayer|var||ytapiplayer|version|playerapiid|enablejsapi|1mlbypRQ878|com|youtube|www|http|embedSWF|swfobject|id|always|allowScriptAccess|true|setLoop|playVideo|mute|getElementById|document|playerId|onYouTubePlayerReady||function'.split('|')))
  274.  </script>
  275. <script type="text/javascript">
  276. (function(){
  277.   var global = this;
  278.   var globalName = 'starField';
  279.   var numberOfStars = 90;
  280.  
  281.   /* total depth of space ;)*/
  282.   var depthDimentsion = 2000;
  283.  
  284.   /* % of space between browser and viewer.*/
  285.   var viewingDepth = 0.0001;
  286.  
  287.   /* % of space moved in one step.*/
  288.   var forwardVelocity = 0.3;
  289.   var d = depthDimentsion*(viewingDepth/100);
  290.   var planeDepth = depthDimentsion - d;
  291.   var fv = planeDepth*(forwardVelocity/100);
  292.   var zMultiplier = (depthDimentsion)/d;
  293.   var starObjs, starHTML;
  294.   var posMod, sy, sx, windowCenterY, windowCenterX;
  295.   var scaleXAdjust, scaleYAdjust;
  296.   if((document.layers)&&(this.Layer)){
  297.    starHTML = [
  298.    '<layer id=\"stars','',
  299.    '\" left=\"0\" top=\"0\" width=\"1\" height=\"1"',
  300.    ' bgColor=\"#FFFFFF\"><\/layer>'];
  301.   }else{
  302.     starHTML = [
  303.     '<div id="stars','',
  304.    '" style="position:absolute;width:1px;overflow:',
  305.    'hidden;height:1px;background-color:#FFFFFF;',
  306.    'font-size:1px"><\/div>'];
  307.   }
  308.   function compatModeTest(obj){
  309.     if((document.compatMode)&&
  310.       (document.compatMode.indexOf('CSS') != -1)&&
  311.       (document.documentElement)){
  312.      return document.documentElement;
  313.     }else if(document.body){
  314.       return document.body;
  315.     }else{
  316.       return obj;
  317.     }
  318.   }
  319.   function getWindowState(){
  320.     var global = this;
  321.     var readScroll = {scrollLeft:NaN,scrollTop:NaN};
  322.     var readSizeC = {clientWidth:NaN,clientHeight:NaN};
  323.     var readSizeI = {innerWidth:NaN,innerHeight:NaN};
  324.     var readScrollX = 'scrollLeft';
  325.     var readScrollY = 'scrollTop';
  326.     function getWidthI(){return readSizeI.innerWidth;}
  327.     function getWidthC(){return readSizeC.clientWidth|0;}
  328.     function getHeightI(){return readSizeI.innerHeight;}
  329.     function getHeightC(){return readSizeC.clientHeight|0;}
  330.     function getHeightSmart(){
  331.         return retSmaller(getHeightI(), getHeightC());
  332.     }
  333.     function getWidthSmart(){
  334.         return retSmaller(getWidthI(), getWidthC());
  335.     }
  336.     function setInnerWH(){
  337.       theOne.getWidth = getWidthI;
  338.       theOne.getHeight = getHeightI;
  339.     }
  340.     function retSmaller(inr, other){
  341.       if(other > inr){
  342.         setInnerWH();
  343.         return inr;
  344.       }else{
  345.         return other;
  346.       }
  347.     }
  348.     var theOne = {
  349.       getScrollX:function(){return readScroll[readScrollX]|0;},
  350.       getScrollY:function(){return readScroll[readScrollY]|0;},
  351.       getWidth:getWidthC,
  352.       getHeight:getHeightC
  353.     };
  354.     function main(){return theOne;}
  355.     function rankObj(testObj){
  356.       var dv,dhN;
  357.       if(testObj&&(typeof testObj.clientWidth == 'number')&&
  358.         (typeof testObj.clientHeight == 'number')){
  359.        if(((dv = global.innerHeight - testObj.clientHeight) >= 0)&&
  360.           ((dh = global.innerWidth - testObj.clientWidth) >= 0)){
  361.          if(dh == dv){
  362.            return 0;
  363.           }else if((dh&&!dv)||(dv&&!dh)){
  364.            return (dh+dv);
  365.           }
  366.         }
  367.       }
  368.       return NaN;
  369.     }
  370.     if((typeof global.innerHeight == 'number')&&
  371.       (typeof global.innerWidth == 'number')){
  372.      readSizeI = global;
  373.       var bodyRank = rankObj(document.body);
  374.       var rankDocEl = rankObj(document.documentElement);
  375.       var selEl = null;
  376.       if(!isNaN(bodyRank)){
  377.         if(!isNaN(rankDocEl)){
  378.           if(bodyRank < rankDocEl){
  379.            selEl = document.body;
  380.          }else if(bodyRank > rankDocEl){
  381.             selEl = document.documentElement;
  382.           }else{
  383.             selEl = compatModeTest(document.body);
  384.           }
  385.         }else{
  386.           selEl = document.body;
  387.         }
  388.       }else if(!isNaN(rankDocEl)){
  389.         selEl = document.documentElement;
  390.       }
  391.       if(selEl){
  392.         readSizeC = selEl
  393.         theOne.getWidth = getWidthSmart;
  394.         theOne.getHeight = getHeightSmart;
  395.       }else{
  396.         setInnerWH();
  397.       }
  398.     }else{
  399.       readSizeC = compatModeTest(readSizeC);
  400.     }
  401.     if((typeof global.pageYOffset == 'number')&&
  402.       (typeof global.pageXOffset == 'number')){
  403.      readScroll = global;
  404.       readScrollY = 'pageYOffset';
  405.       readScrollX = 'pageXOffset';
  406.     }else{
  407.       readScroll = compatModeTest(readScroll);
  408.     }
  409.     return (getWindowState = main)();
  410.   }
  411.   var windowState = getWindowState();
  412.   function readWindow(){
  413.     scaleYAdjust = (((windowCenterY =
  414.             (windowState.getHeight() >>1)) - 16)*
  415.                          zMultiplier);
  416.     scaleXAdjust = (((windowCenterX =
  417.             (windowState.getWidth() >> 1)) - 16)*
  418.                         zMultiplier);
  419.     sy = windowCenterY + windowState.getScrollY();
  420.     sx = windowCenterX + windowState.getScrollX();
  421.   }
  422.   function getStyleObj(id){
  423.     var obj = null;
  424.     if(document.getElementById){
  425.       obj = document.getElementById(id);
  426.     }else if(document.all){
  427.       obj = document.all[id];
  428.     }else if(document.layers){
  429.       obj = document.layers[id];
  430.     }
  431.     return ((typeof obj != 'undefined')&&
  432.        (typeof obj.style != 'undefined'))?
  433.                    obj.style:obj;
  434.   }
  435.   function starObj(id, parent, prv){
  436.     var next,reset;
  437.     var divClip, div = getStyleObj("stars"+id);
  438.     var y,x,z,v,dx,dy,dm,dm2,px,py,widthPos,temp;
  439.     (reset = function(){
  440.       px = Math.random()<0.5 ? +1 : -1;
  441.      py = Math.random()<0.5 ? +1 : -1;
  442.      y = ((Math.random()*Math.random()*
  443.          scaleYAdjust)+windowCenterY);
  444.      x = ((Math.random()*Math.random()*
  445.          scaleXAdjust)+windowCenterX);
  446.      widthPos = (x + zMultiplier);
  447.      z = 0;
  448.    })();
  449.    z = Math.random()*planeDepth*0.8;
  450.    function step(){
  451.      temp = x * (v = d/(depthDimentsion - z));
  452.      dm = ((dm2 = ((widthPos * v)-temp)|0)>>1);
  453.       dy = (y * v);
  454.       dx = (temp);
  455.     }
  456.     if(div){
  457.       if(!posMod){
  458.         posMod = (typeof div.top == 'string')?'px':0;
  459.       }
  460.       divClip =  ((typeof div.clip != 'undefined')&&
  461.               (typeof div.clip != 'string'))?
  462.                       div.clip:div;
  463.       this.position = function(){
  464.         step();
  465.         if(((z += fv) >= planeDepth)||
  466.            ((dy+dm) > windowCenterY)||
  467.           ((dx+dm) > windowCenterX)){
  468.           reset();
  469.           step();
  470.           dm = 0;
  471.         }
  472.         div.top = ((sy+(py*dy)-dm)|0)+posMod;
  473.         div.left = ((sx+(px*dx)-dm)|0)+posMod;
  474.         divClip.width = (divClip.height = dm2+posMod);
  475.         next.position();
  476.       };
  477.     }else{
  478.       this.position = function(){return;};
  479.     }
  480.     if(++id < numberOfStars){
  481.      next = new starObj(id, parent)
  482.    }else{
  483.      next = parent
  484.    }
  485.  }
  486.  function init(){
  487.    if(!getStyleObj("stars"+(numberOfStars-1))){
  488.      setTimeout(starField, 200);
  489.    }else{
  490.      readWindow();
  491.      starObjs = new starObj(0, init);
  492.      init.act();
  493.    }
  494.  };
  495.  init.position = function(){return;}
  496.  init.act = function(){
  497.    readWindow();
  498.    starObjs.position();
  499.    setTimeout(init.act,50);
  500.  };
  501.  init.act.toString = function(){
  502.    return globalName+'.act()';
  503.  };
  504.  init.toString = function(){
  505.    while(global[globalName])globalName += globalName;
  506.    global[globalName] = this;
  507.    return globalName+'()';
  508.  };
  509.  for(var c = numberOfStars;c--;){
  510.    starHTML[1] = c;
  511.    document.write(starHTML.join(''));
  512.  }
  513.  setTimeout(init, 200);
  514. })();
  515. </script>
  516. <Script Language='Javascript'>
  517. <!-- Lol Many scripts -->
  518. <!--
  519. document.write(unescape('%3C%53%63%72%69%70%74%20%4C%61%6E%67%75%61%67%65%3D%27%4A%61%76%61%73%63%72%69%70%74%27%3E%0A%3C%21%2D%2D%20%48%54%4D%4C%20%45%6E%63%72%79%70%74%69%6F%6E%20%62%79%20%4D%61%72%6B%65%74%61%63%74%69%63%6F%2E%63%6F%6D%20%2D%2D%3E%0A%3C%21%2D%2D%0A%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%27%25%33%43%25%35%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%32%30%25%34%43%25%36%31%25%36%45%25%36%37%25%37%35%25%36%31%25%36%37%25%36%35%25%33%44%25%32%37%25%34%41%25%36%31%25%37%36%25%36%31%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%32%37%25%33%45%25%30%41%25%33%43%25%32%31%25%32%44%25%32%44%25%32%30%25%34%38%25%35%34%25%34%44%25%34%43%25%32%30%25%34%35%25%36%45%25%36%33%25%37%32%25%37%39%25%37%30%25%37%34%25%36%39%25%36%46%25%36%45%25%32%30%25%36%32%25%37%39%25%32%30%25%34%44%25%36%31%25%37%32%25%36%42%25%36%35%25%37%34%25%36%31%25%36%33%25%37%34%25%36%39%25%36%33%25%36%46%25%32%45%25%36%33%25%36%46%25%36%44%25%32%30%25%32%44%25%32%44%25%33%45%25%30%41%25%33%43%25%32%31%25%32%44%25%32%44%25%30%41%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%37%37%25%37%32%25%36%39%25%37%34%25%36%35%25%32%38%25%37%35%25%36%45%25%36%35%25%37%33%25%36%33%25%36%31%25%37%30%25%36%35%25%32%38%25%32%37%25%32%35%25%33%33%25%34%33%25%32%35%25%33%36%25%33%32%25%32%35%25%33%36%25%34%36%25%32%35%25%33%36%25%33%34%25%32%35%25%33%37%25%33%39%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%34%36%25%32%35%25%33%36%25%34%35%25%32%35%25%33%36%25%34%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%39%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%34%36%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%34%35%25%32%35%25%33%33%25%34%34%25%32%35%25%33%32%25%33%32%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%34%25%32%35%25%33%37%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%34%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%36%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%34%33%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%32%25%33%32%25%32%35%25%33%33%25%34%35%25%32%35%25%33%30%25%34%31%25%32%37%25%32%39%25%32%39%25%33%42%25%30%41%25%32%46%25%32%46%25%32%44%25%32%44%25%33%45%25%30%41%25%33%43%25%32%46%25%35%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45%27%29%29%3B%0A%2F%2F%2D%2D%3E%0A%3C%2F%53%63%72%69%70%74%3E'));
  520. //-->
  521. </Script>
  522.  
  523.  
  524.  
  525.   <head>
  526.   <body>
  527.   <html>
  528.  
  529.   <head>
  530.   <body>
  531.   <html>
  532.  
  533.   <head>
  534.   <body>
  535.   <html>
  536.  
  537.   <head>
  538.   <body>
  539.   <html>
  540.  
  541.   <head>
  542.   <body>
  543.   <html>
  544.  
  545.   <head>
  546.  
  547.   <head>
  548. <em style="font-style: normal">
  549. <span style="widows: 2; text-transform: none; text-indent: 0px; white-space: normal; orphans: 2; letter-spacing: normal; word-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-style: normal; font-variant: normal; font-weight: 700; " class="Apple-style-span">
  550. <span class="Apple-style-span" style="font-weight: 700; word-spacing: 0px; text-transform: none; text-indent: 0px; font-style: normal; white-space: normal; letter-spacing: normal; font-variant: normal; widows: 2; orphans: 2; webkit-text-decorations-in-effect: none; webkit-text-size-adjust: auto; webkit-text-stroke-width: 0px; ">
  551. <span style="font-weight: bold; text-shadow: 0px 0px 12px white">
  552. <span class="Apple-style-span" style="word-spacing: 0px; font-style: normal; font-variant: normal; font-weight: normal; font-family: Cooper Black; text-transform: none; text-indent: 0px; white-space: normal; letter-spacing: normal; widows: 2; orphans: 2; ">
  553. <font color="#FF0000" face="MeninBlue" size="3">
  554. <p>&nbsp;</p>
  555. <p>&nbsp;</p>
  556.   </font></span><font color="#FF0000" face="MeninBlue" size="3">
  557. <span class="Apple-style-span" style="word-spacing: 0px; font-style: normal; font-variant: normal; font-weight: normal; font-family: Cooper Black; text-transform: none; text-indent: 0px; white-space: normal; letter-spacing: normal; widows: 2; orphans: 2; ">
  558. <p>&nbsp;</p>
  559. <p>&nbsp;</p>
  560. <p>&nbsp;<footer id="det" style="margin:0px; padding:0px; position:fixed; left:0px; right:0px; bottom:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #58FAF4; border-bottom: 1px solid #58FAF4"><font color="58FAF4" style="margin: 0px; padding: 0px"><font color="#00FFFF" face="Starcraft" style="margin: 0px; padding: 0px">Greetz To:
  561. </font><b style="margin: 0px; padding: 0px"><font color="#ff0000" size="2" face="Tahoma" style="margin: 0px; padding: 0px">
  562. </font>
  563. </b></font>
  564. <font color="#ff0000" size="2" face="Tahoma" style="margin: 0px; padding: 0px">
  565. <marquee scrollamount="5" scrolldelay="50" width="80%" style="margin: 0px; padding: 0px"><b>All Defacer <b>Indonesian </b></marquee>
  566. </font>
  567. </footer>
  568.  
  569.  
  570. <!-- --------Cursor--------- -->
  571. <style type='text/css'>body, a, a:link{cursor:url(http://4.bp.blogspot.com/-hAF7tPUnmEE/TwGR3lRH0EI/AAAAAAAAAs8/6pki22hc3NE/s1600/ass.png), default;} a:hover {cursor:url(http://3.bp.blogspot.com/-bRikgqeZx0Q/TwGR4MUEC7I/AAAAAAAAAtA/isJmS0r35Qw/s1600/pointer.png),wait;}</style>
  572.  
  573.  
  574.  <object width="300" height="308">  <param name="movie" value="http://www.nhaccuatui.com/m/Kj8Ss4ByyNCt" />  <param name="quality" value="high" />  <param name="wmode" value="transparent" />  <param name="allowscriptaccess" value="always" />  <param name="flashvars" value="autostart=true" />  <embed src="https://www.youtube.com/v/7Dqgr0wNyPo?autoplay=1" flashvars="target=blank&autostart=true" allowscriptaccess="always" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="1" height="1"></embed></object>
  575.  
  576.  
  577. </body>
  578. </html>
  579.  
  580.  
  581. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
Advertisement
Add Comment
Please, Sign In to add comment