Advertisement
Guest User

done

a guest
Feb 20th, 2018
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 11.47 KB | None | 0 0
  1. <html><head>
  2. <meta http-equiv="Content-Language" content="fr">
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4. <title>Hacked By Evil 2 Dead</title>
  5. <link rel="shortcut icon" href="https://1.bp.blogspot.com/-anCRC9xP8x0/VoCgcx5KmAI/AAAAAAAARSA/WmsYNAfFBmc/s320/Eye.gif">
  6.  
  7. </head>
  8.  
  9. <body bgcolor="#000000">
  10.  
  11.  
  12. <script type="text/javascript">
  13.       // ------------------------------------------------------------------------------------
  14.       //  Matrix Code By Evil 2 Dead
  15.       // ------------------------------------------------------------------------------------
  16.       var theinHTML;
  17.       var thelessstr;
  18.       var ascSt=22;
  19.       var ascEnd=126;
  20.       var numoflines = 28;
  21.       var lines = new Array();
  22.       var intervalID = new Array();
  23.       var subIntervalID = new Array();
  24.       var subIntervalID2 = new Array();
  25.       var scH = screen.height-220;
  26.       var scW = screen.width-50;
  27.       window.onload = createlines;
  28.       // -------------------------------------------------------------------------------------
  29.       // Convert decimal to hex (for the colour)
  30.       var hD="0123456789ABCDEF";
  31.       function d2h(d)
  32.       {
  33.          var h = hD.substr(d&15,1);
  34.          while(d > 15)
  35.          {
  36.             d >>= 4;
  37.             h = hD.substr(d&15,1)+h;
  38.          }
  39.          return h;
  40.       }
  41.       // -------------------------------------------------------------------------------------
  42.       // The line object    
  43.       function line(length, maxlength, chars, speed, x)
  44.       {
  45.          this.length = length;
  46.          this.maxlength = maxlength;
  47.          this.chars = chars;
  48.          this.speed = speed;
  49.          this.x = x;
  50.       }  
  51.       // -------------------------------------------------------------------------------------
  52.       // Creates the lines
  53.       function createlines()
  54.       {          
  55.       // create the lines as objects as defined above with length, characters, speed, x-value
  56.          for(var eachline = 0; eachline < numoflines; eachline++)
  57.         {
  58.            lines[eachline] = new line(0, Math.round(Math.random()*15+5), String.fromCharCode(Math.round(Math.random()*(ascEnd-ascSt)+ascSt)), Math.round(Math.random()*400+100), eachline*45);
  59.         }  
  60.         // write the lines
  61.         for(var writelines = 0; writelines < numoflines; writelines++)
  62.         {
  63.            var newline = document.createElement("div");
  64.            newline.id = "char" + writelines;
  65.            newline.style.position = "absolute";
  66.            newline.style.top = "5px";
  67.            newline.style.left = lines[writelines].x + "px";      
  68.            var firstchar = document.createElement("div");
  69.            var newcolor = d2h(Math.round(1/(lines[writelines].maxlength+1)*255));
  70.            if(newcolor.length == 1)
  71.               newcolor = "0" + newcolor;
  72.            firstchar.style.color = "#00"+newcolor+"00"
  73.            firstchar.innerHTML = lines[writelines].chars
  74.            newline.appendChild(firstchar);        
  75.            document.body.appendChild(newline);
  76.         }
  77.         start();
  78.      }
  79.      // -------------------------------------------------------------------------------------
  80.      // Starts it moving & changing
  81.      function start()
  82.      {
  83.         for(var pickastring = 0; pickastring < numoflines; pickastring++)
  84.         {
  85.            intervalID[pickastring] = setInterval("addchars("+pickastring+")", lines[pickastring].speed);
  86.         }
  87.      }
  88.      // -------------------------------------------------------------------------------------
  89.      // Add random characters to the string (and a line break)
  90.      // and make sure the last one is light
  91.      // once it gets to maxlength start moving down
  92.      function addchars(theline)
  93.      {
  94.         if(lines[theline].length >= lines[theline].maxlength)
  95.          {
  96.             clearInterval(intervalID[theline]);
  97.             subIntervalID[theline] = setInterval("movethestring("+theline+")", lines[theline].speed);
  98.          }
  99.          else
  100.          {
  101.             // Get a char (not " or ' or \ or it'll get confused)
  102.             myRandomChar = String.fromCharCode(Math.round(Math.random()*(ascEnd-ascSt)+ascSt));
  103.             while(myRandomChar == "'" || myRandomChar == '"' || myRandomChar == "\\")
  104.                myRandomChar = String.fromCharCode(Math.round(Math.random()*(ascEnd-ascSt)+ascSt));
  105.             // Make a new div for it (so we can change it's colour)
  106.             var newchar = document.createElement("div");
  107.             newchar.innerHTML = myRandomChar;
  108.             document.getElementById("char"+theline).appendChild(newchar);
  109.             // Colour it
  110.             var i;
  111.             for(i = 0; i <= lines[theline].length; i++)
  112.            {
  113.               var newcolor = d2h(Math.round((i+1)/(lines[theline].maxlength+1)*255));
  114.               newcolor = "" + newcolor;
  115.               if(newcolor.length == 1)
  116.                  newcolor = "0" + newcolor;
  117.               document.getElementById("char"+theline).childNodes[i].style.color = "#00" + newcolor + "00";
  118.               document.getElementById("char"+theline).childNodes[i].style.fontWeight = "normal";
  119.            }
  120.            document.getElementById("char"+theline).childNodes[i].style.color = "#99FF99";
  121.            document.getElementById("char"+theline).childNodes[i].style.fontWeight = "bold";
  122.            // Increase length by one
  123.            lines[theline].length++;
  124.         }
  125.      }
  126.      // -------------------------------------------------------------------------------------
  127.      // Moves the string (creates and destroys chars)
  128.      function movethestring(theline)
  129.      {
  130.         var topstringnum = document.getElementById("char"+theline).offsetTop;
  131.         if((topstringnum + (lines[theline].maxlength * 15)) >= scH)
  132.          {
  133.             clearInterval(subIntervalID[theline]);
  134.             subIntervalID2[theline] = setInterval("clearletters("+theline+")", lines[theline].speed);
  135.          }
  136.          else
  137.          {
  138.             // create
  139.             myRandomChar = String.fromCharCode(Math.round(Math.random()*(ascEnd-ascSt)+ascSt));
  140.             while(myRandomChar=="'" || myRandomChar=='"' || myRandomChar=="\\")
  141.                myRandomChar = String.fromCharCode(Math.round(Math.random()*(ascEnd-ascSt)+ascSt));
  142.             var newchar = document.createElement("div");
  143.             newchar.innerHTML = myRandomChar;
  144.             document.getElementById("char"+theline).appendChild(newchar);
  145.             // delete
  146.             document.getElementById("char"+theline).removeChild(document.getElementById("char"+theline).childNodes[0]);
  147.             // re-colour
  148.             var i;
  149.             for(i = 0; i < lines[theline].length; i++)
  150.            {
  151.               var newcolor = d2h(Math.round((i+1)/(lines[theline].maxlength+1)*255));
  152.               newcolor = "" + newcolor;
  153.               if(newcolor.length == 1)
  154.                  newcolor = "0" + newcolor;
  155.               document.getElementById("char"+theline).childNodes[i].style.color = "#00" + newcolor + "00";
  156.               document.getElementById("char"+theline).childNodes[i].style.fontWeight = "normal";
  157.            }
  158.            document.getElementById("char"+theline).childNodes[i].style.color = "#99FF99";
  159.            document.getElementById("char"+theline).childNodes[i].style.fontWeight = "bold";
  160.            // move
  161.            document.getElementById("char"+theline).style.top = (topstringnum+15) + "px";
  162.         }
  163.      }
  164.      // -------------------------------------------------------------------------------------
  165.  
  166.      // pretty much the opposite of addchars()
  167.      function clearletters(theline)
  168.      {
  169.         if(lines[theline].length <= -1)
  170.         {
  171.            clearInterval(subIntervalID2[theline]);
  172.            document.getElementById("char"+theline).style.top = 0;
  173.            intervalID[theline] = setInterval("addchars("+theline+")", lines[theline].speed);
  174.         }
  175.         else
  176.         {
  177.            // Remove the first character
  178.            document.getElementById("char"+theline).removeChild(document.getElementById("char"+theline).childNodes[document.getElementById("char"+theline).childNodes.length-1]);
  179.            // Move it down by 15px
  180.            var topstringnum = document.getElementById("char"+theline).offsetTop;
  181.            document.getElementById("char"+theline).style.top = topstringnum+15 + "px";
  182.            // Decrease length by one
  183.            lines[theline].length--;
  184.         }
  185.      }
  186.   </script>
  187.  
  188.  
  189. <p align="center">
  190. <font size="8" color="#FF0000"><b>Hacked By Evil 2 Dead </b>
  191. </font></p>
  192. <p align="center">
  193. <img src="https://1.bp.blogspot.com/-anCRC9xP8x0/VoCgcx5KmAI/AAAAAAAARSA/WmsYNAfFBmc/s320/Eye.gif" width="60" height="40">
  194.  
  195. <font size="7" color="#00FF00"><b>Black Hat</b>
  196. <img src="https://1.bp.blogspot.com/-anCRC9xP8x0/VoCgcx5KmAI/AAAAAAAARSA/WmsYNAfFBmc/s320/Eye.gif" width="60" height="40">
  197. </font></p>
  198.  
  199. <p align="center">
  200.  
  201. <img border="0" src="https://s13.postimg.org/c094hhe4n/rurt.jpg" width="728" height="320"></p>
  202. <p align="center">
  203.  
  204. &nbsp;<span lang="ar-dz"><font size="6" color="#00FF00"><b> This Website Has Been HaCked By Evil 2 Dead </b>
  205.  
  206. </font></span></p>
  207. <p align="center">
  208. <span lang="ar-dz"><font size="6" color="#FF0000"><b>  Was Here 1 ; 2 ; 3 Evil 2 Dead </b></font></span></p>
  209. <p align="center">
  210. <center>
  211. <img style="width: 532px; height: 24px;" alt="" src="http://www14.0zz0.com/2012/06/05/19/823258589.gif">
  212. <br>
  213.  
  214.  
  215. <span lang="ar-dz"><font size="5" color="#FFFFFF"><b> Your Site Owned By Evil 2 Dead </b></font></span></p>
  216.  
  217. <p align="center">
  218.  
  219. &#1593;<span lang="ar-dz">&#1604;<font size="5" color="#FFFFFF"><b> Black Hat
  220.  
  221. <p align="center">
  222.  
  223. <span lang="ar-dz"><font size="5" color="#FFFFFF"><b> [#] Black Hat Muslims : Your system GoT 0wn3d By Evil 2 Dead !   </b></font></span></p>
  224.  
  225. </b></font></span></p>
  226.  
  227. <p align="center">
  228.  
  229. <span lang="ar-dz"><font size="5" color="#FFFFFF"><b>  [#] Contact: jq@hotmail.com </b></font></span></p>
  230.  
  231. </p>
  232.  
  233. &nbsp;</p>
  234.  
  235. <p align="center">
  236.  
  237.  
  238. <embed SRC="http://error-404.do.am/50256-h4ck3d.swf" AUTOSTART="TRUE" LOOP="TRUE" WIDTH="1" HEIGHT="1" ALIGN="CENTER"></EMBED>
  239.  
  240.  
  241.  
  242. <p align="center"><font  face="strong"><font size="2"><font color="#58FAF4" face="shadow" size="4">Official Members : </font>
  243.  
  244.  
  245. <marquee scrollamount="5" scrolldelay="50" width="80%">
  246.  
  247.  
  248. <font color="RED" face="gothic" size="4"> :-: All Black Hat Muslims :-:  </b></marquee></font>
  249.  
  250. <br>
  251.  
  252. <font face="Courier New" color="#CCCCCC">We Are ; &nbsp;Black Hat Muslims </font></b></p>
  253.     <p><b><font face="Courier New" color="#CCCCCC">Greetz to : Palestine &#9829; ,
  254.     Muslims &#9829; , all My Freinds &#9829;</font></b></p>
  255.     </center>
  256.  
  257.  
  258.  
  259.  
  260. <br /><br />
  261.  
  262.  
  263. <font color="lime">
  264.  
  265. <div align="center">Copyright &copy; <span>Evil 2 Dead</span>. All rights Reserved.</div></font>
  266.  
  267.  
  268. <center>
  269.  
  270. <span class="style2"><a href="jq@hotmail.com"> jq@hotmail.com </a></span><br><br>
  271. </center>
  272. <center><div class="rblikebox"><div><iframe src="https://www.facebook.com/plugins/likebox.php?href=https://web.facebook.com/groups/Shabab.Hacker1/&amp;width=245&amp;colorscheme=light&amp;show_faces=true&amp;connections=9&amp;stream=false&amp;header=false&amp;height=270" scrolling="no" frameborder="0" scrolling="no" style="border: medium none; overflow: hidden; height: 270px; width: 245px;background:#fff;"></iframe></div></div></center>
  273.  
  274.  
  275.  
  276. <iframe width="0" height="0" src="https://www.youtube.com/v/1rEY-wLds_8&feature=related&autoplay=1" frameborder="0"allowfullscreen></iframe>
  277.  
  278. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement