Guest User

HACKED :))

a guest
Apr 27th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.19 KB | None | 0 0
  1. <html><head><title>.::...::Hacked By Skrillex::..</title>
  2. <link rel="SHORTCUT ICON" href="http://i45.tinypic.com/1o6cqx.png">
  3. <script type="text/javascript">
  4. //<![CDATA[
  5. msg = "..::Hacked By Skrillex::.. ";
  6. msg = ".::." + msg;pos = 0;
  7. function scrollMSG() {
  8. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  9. if (pos > msg.length) pos = 0
  10. window.setTimeout("scrollMSG()",80);
  11. }
  12. scrollMSG();
  13. //]]></script>
  14. <script type="text/javascript">
  15. var DADrightclicktheme = 'Dark';
  16. var DADrightclickimage = 'http://sphotos-h.ak.fbcdn.net/hphotos-ak-ash3/p206x206/1J8NpjiybfgjnQyEaA2f3nZy8RXuNV8Ghx.jpg';</script>
  17. <script type="text/javascript" src="http://tuyulz-blogspot.googlecode.com/files/Anti%20Klik.js"> </script>
  18. <script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
  19.  
  20. <style type="text/css">body {cursor:url("http://i45.tinypic.com/1o6cqx.png"),default}</style>  
  21. </head><body background="http://i1079.photobucket.com/albums/w515/raafi_teja/matrixrandom.gif">
  22.  
  23.  
  24.  
  25. <div id="matrix"><b> ................  Hacked By Skrillex     ................</b></div>
  26. <center><img src="http://img69.imageshack.us/edit_preview.php?l=img69/9695/maju.gif&amp;action=rotate"> <br>
  27.  
  28. <style type="text/css">body {
  29.  
  30. background-image:url(http://i.imgur.com/QlPhe8F.png);
  31.  
  32. font-family: Courier New;
  33.  
  34. color: #ff0000;
  35.  
  36. text-align: center;
  37.  
  38. }
  39.  
  40. a {
  41.  
  42. text-decoration:none;
  43.  
  44. color:
  45.  
  46. #ff0000;
  47.  
  48. }
  49.  
  50. </style>
  51.  
  52. <script type="text/javascript">/*<![CDATA[*/
  53.  
  54. TypingText = function(element, interval, cursor, finishedCallback) {
  55.  
  56. if((typeof document.getElementById ==
  57.  
  58. "undefined") || (typeof element.innerHTML == "undefined")) {
  59.  
  60. this.running = true;
  61.  
  62. return;
  63.  
  64. }
  65.  
  66. this.element = element;
  67.  
  68. this.finishedCallback = (finishedCallback
  69.  
  70. ? finishedCallback : function() { return; });
  71.  
  72. this.interval = (typeof interval == "undefined" ? 100 : interval);
  73.  
  74. this.origText = this.element.innerHTML;
  75.  
  76. this.unparsedOrigText = this.origText;
  77.  
  78. this.cursor = (cursor ? cursor : "");
  79.  
  80. this.currentText = "";
  81.  
  82. this.currentChar = 0;
  83.  
  84. this.element.typingText = this;
  85.  
  86. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  87.  
  88. TypingText.all.push(this);
  89.  
  90. this.running = false;
  91.  
  92. this.inTag = false;
  93.  
  94. this.tagBuffer = "";
  95.  
  96. this.inHTMLEntity = false;
  97.  
  98. this.HTMLEntityBuffer = "";
  99.  
  100. }
  101.  
  102. TypingText.all = new Array();
  103.  
  104. TypingText.currentIndex = 0;
  105.  
  106. TypingText.runAll
  107.  
  108. = function() {
  109.  
  110. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  111.  
  112. }
  113.  
  114. TypingText.prototype.run = function() {
  115.  
  116. if(this.running) return;
  117.  
  118. if(typeof this.origText == "undefined") {
  119.  
  120. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  121.  
  122. return;
  123.  
  124. }
  125.  
  126. if(this.currentText == "") this.element.innerHTML = "";
  127.  
  128. if(this.currentChar < this.origText.length) {
  129.  
  130. if(this.origText.charAt(this.currentChar) == "<" &&
  131.  
  132. !this.inTag) {
  133.  
  134. this.tagBuffer = "<";
  135.  
  136. this.inTag = true;
  137.  
  138. this.currentChar++;
  139.  
  140. this.run();
  141.  
  142. return;
  143.  
  144. } else if(this.origText.charAt(this.currentChar) == ">" &&
  145.  
  146. this.inTag) {
  147.  
  148. this.tagBuffer += ">";
  149.  
  150. this.inTag = false;
  151.  
  152. this.currentText += this.tagBuffer;
  153.  
  154. this.currentChar++;
  155.  
  156. this.run();
  157.  
  158. return;
  159.  
  160. } else
  161.  
  162. if(this.inTag) {
  163.  
  164. this.tagBuffer += this.origText.charAt(this.currentChar);
  165.  
  166. this.currentChar++;
  167.  
  168. this.run();
  169.  
  170. return;
  171.  
  172. } else
  173.  
  174. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  175.  
  176. this.HTMLEntityBuffer = "&";
  177.  
  178. this.inHTMLEntity = true;
  179.  
  180. this.currentChar++;
  181.  
  182. this.run();
  183.  
  184. return;
  185.  
  186. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  187.  
  188. this.HTMLEntityBuffer += ";";
  189.  
  190. this.inHTMLEntity =
  191.  
  192. false;
  193.  
  194. this.currentText += this.HTMLEntityBuffer;
  195.  
  196. this.currentChar++;
  197.  
  198. this.run();
  199.  
  200. return;
  201.  
  202. } else if(this.inHTMLEntity) {
  203.  
  204. this.HTMLEntityBuffer +=
  205.  
  206. this.origText.charAt(this.currentChar);
  207.  
  208. this.currentChar++;
  209.  
  210. this.run();
  211.  
  212. return;
  213.  
  214. } else {
  215.  
  216. this.currentText += this.origText.charAt(this.currentChar);
  217.  
  218. }
  219.  
  220. this.element.innerHTML = this.currentText;
  221.  
  222. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  223.  
  224. this.cursor(this.currentText) : this.cursor) : "");
  225.  
  226. this.currentChar++;
  227.  
  228. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  229.  
  230. this.interval);
  231.  
  232. } else {
  233.  
  234. this.currentText = "";
  235.  
  236. this.currentChar = 0;
  237.  
  238. this.running = false;
  239.  
  240. this.finishedCallback();
  241.  
  242. }
  243.  
  244. }
  245.  
  246.  
  247. /*]]>*/</script>
  248. <center><img src="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0" width="350px" height="60px">
  249.  
  250. <p id="message"><b> {+} Website Has Been Hacked By ==&gt; Skrillex {+} </b><br>
  251. </p><p id="message"><b> {+} Te fut in gura cu toata familia ta ==&gt; Paraschiv {+} </b><br>
  252. ===========================================
  253. <span style="color: green;">
  254. <b><br>Salut....</b><span style="color: lime;">
  255. <br>
  256. <br> 1..
  257. <br> 2...
  258. <br> 3....
  259. <br> 4.....
  260. <br> 5.......
  261. <br> Username: ........
  262. <br> Password: .........
  263. <br> Conectare La bază de date reusita.
  264. <br> Comunitate inchisa !
  265. <br> <b><br>Hacked By Skrillex &amp; Conection Lost By Skrillex The Best Hacker In The World
  266. <br> Va Fut Cand Vreau Si Fac Ce Vreau  ^_^ </b>
  267.  
  268. <br>
  269. <br>
  270. <span style="color: Red;">
  271. <br><b>ZONEPLG.RO Va Asteptam !!</b><br>
  272.  
  273.  
  274. </span></span></span></p></center>
  275.  
  276.  
  277. <div style="text-shadow: 0px 0px 5px red;">
  278. <span style="color: white;">
  279. <b>Special Thanks To : </b><marquee scrollamount="10" direction="left" width="50%">Hacked By Skrillez - - ZonePLG.Ro - Conection Lost By skrillex The Best Hacker In The World
  280. </marquee>
  281.  
  282. <script type="text/javascript">/*<![CDATA[*/
  283.  
  284. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  285.  
  286. ar[i.length % ar.length]; });
  287.  
  288.  
  289. //Type out examples:
  290.  
  291. TypingText.runAll();
  292.  
  293. /*]]>*/</script>
  294. <embed name="GoodEnough" src="http://51.68.17.11/mp3.mp3" loop="false" hidden="true" autostart="true">
  295.  
  296. </span></div></center></body></html>
Add Comment
Please, Sign In to add comment