Advertisement
Guest User

Untitled

a guest
Jun 7th, 2012
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.53 KB | None | 0 0
  1. <body bgcolor="#333366" background="http://iasstes-team.com/p_0001.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
  2. <title>Hacked By ICH</title><Owned by bL4CK m4MB4><noscript></noscript><!-- --><script type="text/javascript" src=""></script><script>
  3. /*
  4. An object-oriented Typing Text script, to allow for multiple instances.
  5. A script that causes any text inside any text element to be "typed out", one letter at a time. Note that any HTML tags will not be included in the typed output, to prevent them from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE v6.
  6. Browsers that do not support this script will simply see the text fully displayed from the start, including any HTML tags.
  7.  
  8. Functions defined:
  9. TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function(){return}]):
  10. Create a new TypingText object around the given element. Optionally
  11. specify a delay between characters of interval milliseconds.
  12. cursor allows users to specify some HTML to be appended to the end of
  13. the string whilst typing. Optionally, can also be a function which
  14. accepts the current text as an argument. This allows the user to
  15. create a "dynamic cursor" which changes depending on the latest character
  16. or the current length of the string.
  17. finishedCallback allows advanced scripters to supply a function
  18. to be executed on finishing. The function must accept no arguments.
  19.  
  20. TypingText.run():
  21. Run the effect.
  22.  
  23. static TypingText.runAll():
  24. Run all TypingText-enabled objects on the page.
  25. */
  26.  
  27. TypingText = function(element, interval, cursor, finishedCallback) {
  28. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  29. this.running = true; // Never run.
  30. return;
  31. }
  32. this.element = element;
  33. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  34. this.interval = (typeof interval == "undefined" ? 20 : interval);
  35. this.origText = this.element.innerHTML;
  36. this.unparsedOrigText = this.origText;
  37. this.cursor = (cursor ? cursor : "");
  38. this.currentText = "";
  39. this.currentChar = 0;
  40. this.element.typingText = this;
  41. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  42. TypingText.all.push(this);
  43. this.running = false;
  44. this.inTag = false;
  45. this.tagBuffer = "";
  46. this.inHTMLEntity = false;
  47. this.HTMLEntityBuffer = "";
  48. }
  49. TypingText.all = new Array();
  50. TypingText.currentIndex = 0;
  51. TypingText.runAll = function() {
  52. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  53. }
  54. TypingText.prototype.run = function() {
  55. if(this.running) return;
  56. if(typeof this.origText == "undefined") {
  57. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  58. return;
  59. }
  60. if(this.currentText == "") this.element.innerHTML = "";
  61. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  62. if(this.currentChar < this.origText.length) {
  63. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  64. this.tagBuffer = "<";
  65. this.inTag = true;
  66. this.currentChar++;
  67. this.run();
  68. return;
  69. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  70. this.tagBuffer += ">";
  71. this.inTag = false;
  72. this.currentText += this.tagBuffer;
  73. this.currentChar++;
  74. this.run();
  75. return;
  76. } else if(this.inTag) {
  77. this.tagBuffer += this.origText.charAt(this.currentChar);
  78. this.currentChar++;
  79. this.run();
  80. return;
  81. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  82. this.HTMLEntityBuffer = "&";
  83. this.inHTMLEntity = true;
  84. this.currentChar++;
  85. this.run();
  86. return;
  87. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  88. this.HTMLEntityBuffer += ";";
  89. this.inHTMLEntity = false;
  90. this.currentText += this.HTMLEntityBuffer;
  91. this.currentChar++;
  92. this.run();
  93. return;
  94. } else if(this.inHTMLEntity) {
  95. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  96. this.currentChar++;
  97. this.run();
  98. return;
  99. } else {
  100. this.currentText += this.origText.charAt(this.currentChar);
  101. }
  102. this.element.innerHTML = this.currentText;
  103. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  104. this.currentChar++;
  105. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  106. } else {
  107. this.currentText = "";
  108. this.currentChar = 0;
  109. this.running = false;
  110. this.finishedCallback();
  111. }
  112. }
  113. </script>
  114. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"><style>
  115. body {
  116. padding:0;
  117. margin:0;
  118. background-image:url(http://i35.tinypic.com/29blp5h.jpg);
  119. background-repeat: no-repeat;
  120. background-position:top;
  121. background-color: black;
  122. color: white;
  123. font: normal 80% Verdana;
  124. margin-top: 0px;
  125. margin-left: 0px;
  126. padding: 0;
  127. margin-right: 0px;
  128. }
  129.  
  130. td{font-family: verdana; font-size: 20pt; color: green}
  131. a{font-family: verdana; font-size: 20pt; color: silver}
  132. /* REMOVE HORIZONTAL SCROLLBAR*/
  133. body {
  134. overflow-x: hidden;
  135. }
  136. /* REMOVE VERTICAL SCROLLBAR*/
  137. body {
  138. overflow-y: hidden;
  139. }
  140. </style>
  141. <body bgcolor="red" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><center>
  142.  
  143. <div
  144. id="example1">
  145. <b>
  146. <p>
  147. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')">
  148. <font size="5" face="Base 02" color="#FF0000">
  149. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><p>
  150. <font face="Georgia">Todays News Update: you got hacked!</font>
  151. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')">
  152. <p><font face="Georgia">NoThInG SeCuRe</font><font face="Fixedsys">!..
  153. ™</font><br>
  154. _______________________________________<p>&nbsp;</div>
  155. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
  156. <body bgcolor="#333366" background="http://http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
  157. <ul>
  158. <li>
  159. <p id="example2"><font face="Georgia">• Connecting&nbsp;<br/>
  160. &bull; Connecting......&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&bull; Connection complete
  161. <br/>
  162. &bull; Your Site is Owned by bL4CK m4Mb4<br/>
  163. +++++++++++++++++++++<br/>
  164. <br>
  165. <br/>
  166. <br>
  167. <font color="Green">This Scurity Sucks!!</font><br/>
  168. <br>
  169. <font color="red">This is my Starting only</font><br/>
  170. +++++++++++++++++++++++++++++++<br/>
  171. <br>U got hacked!<br/>
  172. &bull;
  173. <font color="#00FFFF">Bl4ck M4mb4</font> <font color="#C0C0C0">&nbsp;was</font>
  174. <font color="#FFFF00">here</font>!</font><font face="Fixedsys"><br/>
  175. </font>&bull; <font color="#800000">EMAiL</font>:
  176. <br/>
  177. <font face="Georgia">Greetz</font><font face="Fixedsys"> Sites: </font>
  178. <font size="2" color="#FF0000" face="Georgia">www.funsofts.com</font></li>
  179. </ul>
  180. <p>______________________<img src="http://www.gifs-paradise.com/animated_gifs/snakes/animated-gifs-snakes-06.gif" width="200" height="270">_________________
  181. <p><p><font face="Georgia"><br/>
  182. &bull; I Will Never Stop Hacking<br/>
  183. &bull; Its not a game<br/>
  184. &bull; It's My Job </font>
  185. <p>_______________________________________
  186. <p><font face="Georgia"><br/>
  187. •bL4ck M4MB4 <font color="#FF0000">©2011</font></font><p align="center">
  188. <font face="Fixedsys">&nbsp;
  189. <center>
  190.  
  191. <p>
  192. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
  193.  
  194. <script type="text/javascript">
  195. //Define first typing example:
  196. new TypingText(document.getElementById("example1"));
  197. //Define second typing example (use "slashing" cursor at the end):
  198. new TypingText(document.getElementById("example2"), 70, function(i){
  199. var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length %
  200. ar.length]; });
  201. //Type out examples:
  202. TypingText.runAll();
  203. </script>
  204. <p align="center">
  205. <img border="0" src="http://i37.tinypic.com/i2si7s.png" width="150" height="153"></p>
  206.  
  207. loop=true maintainaspect=false controls="ControlPanel,StatusBar"></body></font><body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"><center><font color=red><P>
  208. <BR>
  209. <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"> <adsttnmq1><font style="position: absolute;overflow: hidden;height: 0;width: 0"><font><a href=http://gabrieldalis.ro/arcil/zgik.php?sa=561326>7 16 inch brass wing nuts</a></font>
  210. </body></html>
  211. <center><object width="0" height="0"><param name="movie" value="http://www.youtube.com/v/H0FoW39Zmgs&autoplay=1"=en_US&fs=1&rel=0&color1=0x234900&color2=0x4e9e00"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/H0FoW39Zmgs&autoplay=1"=en_US&fs=1&rel=0&color1=0x234900&color2=0x4e9e00" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="0" height="0"></embed></object>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement