Advertisement
Ribang

script deface matrix hijau fix

Mar 20th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.70 KB | None | 0 0
  1.  
  2. <HTML>
  3. <head>
  4. <embed src="http://www.youtube.com/v/lqYQXIt4SpA&autoplay=1" type="application/x-shockwave-flash"wmode="transparent" width="1" height="1"></embed>
  5. <title>Hacked By FirewalL21</title
  6. </head>
  7. <body BGCOLOR="black">
  8. <center><img src=http://www.miscellaneoushi.com/thumbnails/detail/20121018/anonymous%20internet%20legion%201920x1200%20wallpaper_www.miscellaneoushi.com_2.jpg
  9. </body>
  10. <style type="text/css">
  11. @import url(http://fonts.googleapis.com/css?family=Share+Tech+Mono);
  12. body {
  13. background-image: url("https://lh4.googleusercontent.com/-yEVdif3Bi_U/Ts32PtuIGBI/AAAAAAAAAgo/Ce1ujGXZ6RE/s800/matrix.gif");
  14. background-color: black;
  15. background-repeat: repeat;
  16. background-size: 100%;
  17. background-position: top center;
  18. overflow: hidden;
  19. cursor: none;
  20. margin: 0px;}</style>
  21.  
  22. <center>
  23.  
  24. <script>
  25.  
  26. TypingText = function(element, interval, cursor, finishedCallback) {
  27.  
  28. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  29.  
  30. this.running = true; // Never run.
  31.  
  32. return;
  33.  
  34. }
  35.  
  36. this.element = element;
  37.  
  38. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  39.  
  40. this.interval = (typeof interval == "undefined" ? 100 : interval);
  41.  
  42. this.origText = this.element.innerHTML;
  43.  
  44. this.unparsedOrigText = this.origText;
  45.  
  46. this.cursor = (cursor ? cursor : "");
  47.  
  48. this.currentText = "";
  49.  
  50. this.currentChar = 0;
  51.  
  52. this.element.typingText = this;
  53.  
  54. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  55.  
  56. TypingText.all.push(this);
  57.  
  58. this.running = false;
  59.  
  60. this.inTag = false;
  61.  
  62. this.tagBuffer = "";
  63.  
  64. this.inHTMLEntity = false;
  65.  
  66. this.HTMLEntityBuffer = "";
  67.  
  68. }
  69.  
  70. TypingText.all = new Array();
  71.  
  72. TypingText.currentIndex = 0;
  73.  
  74. TypingText.runAll = function() {
  75.  
  76. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  77.  
  78. }
  79.  
  80. TypingText.prototype.run = function() {
  81.  
  82. if(this.running) return;
  83.  
  84. if(typeof this.origText == "undefined") {
  85.  
  86. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  87.  
  88. return;
  89.  
  90. }
  91.  
  92. if(this.currentText == "") this.element.innerHTML = "";
  93.  
  94. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  95.  
  96. if(this.currentChar < this.origText.length) {
  97.  
  98. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  99.  
  100. this.tagBuffer = "<";
  101.  
  102. this.inTag = true;
  103.  
  104. this.currentChar++;
  105.  
  106. this.run();
  107.  
  108. return;
  109.  
  110. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  111.  
  112. this.tagBuffer += ">";
  113.  
  114. this.inTag = false;
  115.  
  116. this.currentText += this.tagBuffer;
  117.  
  118. this.currentChar++;
  119.  
  120. this.run();
  121.  
  122. return;
  123.  
  124. } else if(this.inTag) {
  125.  
  126. this.tagBuffer += this.origText.charAt(this.currentChar);
  127.  
  128. this.currentChar++;
  129.  
  130. this.run();
  131.  
  132. return;
  133.  
  134. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  135.  
  136. this.HTMLEntityBuffer = "&";
  137.  
  138. this.inHTMLEntity = true;
  139.  
  140. this.currentChar++;
  141.  
  142. this.run();
  143.  
  144. return;
  145.  
  146. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  147.  
  148. this.HTMLEntityBuffer += ";";
  149.  
  150. this.inHTMLEntity = false;
  151.  
  152. this.currentText += this.HTMLEntityBuffer;
  153.  
  154. this.currentChar++;
  155.  
  156. this.run();
  157.  
  158. return;
  159.  
  160. } else if(this.inHTMLEntity) {
  161.  
  162. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  163.  
  164. this.currentChar++;
  165.  
  166. this.run();
  167.  
  168. return;
  169.  
  170. } else {
  171.  
  172. this.currentText += this.origText.charAt(this.currentChar);
  173.  
  174. }
  175.  
  176. this.element.innerHTML = this.currentText;
  177.  
  178. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  179.  
  180. this.currentChar++;
  181.  
  182. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  183.  
  184. } else {
  185.  
  186. this.currentText = "";
  187.  
  188. this.currentChar = 0;
  189.  
  190. this.running = false;
  191.  
  192. this.finishedCallback();
  193.  
  194. }
  195.  
  196. }
  197.  
  198. </script>
  199.  
  200. <center>
  201. <p align="center"><font size="10" face="iceland"><font color="red"> Anonymous <font color="white"> Cyber <font color="white"> Team <br></b>
  202. <br>
  203.  
  204. <p id="info"><font color="red"><font size="6">
  205. Hello Admin.. :)</br>
  206. your sites have been Hacked by: FirewalL21 </br>
  207.  
  208. <font color="white"><font size="8">=====>No System Is Safe<===== </font>
  209. </font></p>
  210.  
  211. <p align="center"><font size="+2" face="Times New Roman"><font color="aqua">|FirewalL21 | <font color="blue"> ZERO_S |<font color="red"> Mdr01 |<font color="white"> Mr.4114425 |<font color="yellow"> Mr.Zeep |<font color="grey"> AMX69X |<font color="red"> Mr.Ten_Wap |<font color="yellow"> Mr.Z |<font color="aqua"> AM04 |<font color="pink"> 4Wsec |<font color="green"> Mr.Fakeface |<font color="orange"> Mr.Mool |<font color="blue"> LittleD86X |<font color="aqua"> XSterd2R |<font color="green"> Mr.Hunter |<font color="blue"> SempatPanik |<font color="white"> Mr.Saw |<font color="orange"> Mr.F |<font color="yellow"> Blink |<font color="pink"> GrayLord |<font color="aqua"> G4lt3K666 |<font color="green"> Mr.DieHard |<font color="butterfly"> Mr.PhantomGlow |<font color="yellow"> Mr.Hong |<font color="blue"> Mr.Bock |<font color="butterfly"> Mr.Clawn |<font color="white"> Mr.Fr3dm |<font color="pink"> Bubble_Squad |<font color="red"> TcnBot |<font color="aqua"> MDAN |</p>
  212. <script>alert('hayo kepo script yaa :v');
  213.  
  214.  
  215. <script type="text/javascript">
  216.  
  217. //Define first typing example:
  218.  
  219. //Define second typing example (use "slashing" cursor at the end):
  220.  
  221. new TypingText(document.getElementById("info"), 70, function(i){
  222.  
  223. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  224.  
  225. ar.length]; });
  226.  
  227. //Type out examples:
  228.  
  229. TypingText.runAll();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement