Advertisement
Sendogarpu

takedown

May 25th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.78 KB | None | 0 0
  1. <html>
  2. <title>Hacked By Alliance Technical</title>
  3. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  4. <script type='text/javascript'>
  5. //<![CDATA[
  6. msg = "..::Hacked By SendoGarpu::.. ";
  7. msg = ".:Please patch your system:." + msg;pos = 0;
  8. function scrollMSG() {
  9. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  10. if (pos > msg.length) pos = 0
  11. window.setTimeout("scrollMSG()",80);
  12. }
  13. scrollMSG();
  14. //]]></script>
  15. <script type='text/javascript'>
  16. var DADrightclicktheme = 'Dark';
  17. var DADrightclickimage = 'http://sphotos-h.ak.fbcdn.net/hphotos-ak-ash3/p206x206/14562_183874628425481_1378122133_n.jpg';</script>
  18. <script type='text/javascript' src="http://tuyulz-blogspot.googlecode.com/files/Anti%20Klik.js"> </script>
  19. <script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
  20.  
  21. <style type="text/css">body {cursor:url("http://i45.tinypic.com/1o6cqx.png"),default}</style>
  22. <body background="http://i1079.photobucket.com/albums/w515/raafi_teja/matrixrandom.gif">
  23.  
  24. </script>
  25.  
  26. <div id="matrix">
  27. <span style="color: red;">
  28. <div style="text-shadow: 0px 0px 5px yellow;">
  29. <b> ................ DANGER 36 ................</b></div>
  30. <center>
  31. <style type="text/css">body {
  32.  
  33. background: #000000;
  34.  
  35. font-family: Courier New;
  36.  
  37. color: #ff0000;
  38.  
  39. text-align: center;
  40.  
  41. }
  42.  
  43. a {
  44.  
  45. text-decoration:none;
  46.  
  47. color:
  48.  
  49. #ff0000;
  50.  
  51. }
  52.  
  53. </style>
  54.  
  55. <script type="text/javascript">/*<![CDATA[*/
  56.  
  57. TypingText = function(element, interval, cursor, finishedCallback) {
  58.  
  59. if((typeof document.getElementById ==
  60.  
  61. "undefined") || (typeof element.innerHTML == "undefined")) {
  62.  
  63. this.running = true;
  64.  
  65. return;
  66.  
  67. }
  68.  
  69. this.element = element;
  70.  
  71. this.finishedCallback = (finishedCallback
  72.  
  73. ? finishedCallback : function() { return; });
  74.  
  75. this.interval = (typeof interval == "undefined" ? 100 : interval);
  76.  
  77. this.origText = this.element.innerHTML;
  78.  
  79. this.unparsedOrigText = this.origText;
  80.  
  81. this.cursor = (cursor ? cursor : "");
  82.  
  83. this.currentText = "";
  84.  
  85. this.currentChar = 0;
  86.  
  87. this.element.typingText = this;
  88.  
  89. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  90.  
  91. TypingText.all.push(this);
  92.  
  93. this.running = false;
  94.  
  95. this.inTag = false;
  96.  
  97. this.tagBuffer = "";
  98.  
  99. this.inHTMLEntity = false;
  100.  
  101. this.HTMLEntityBuffer = "";
  102.  
  103. }
  104.  
  105. TypingText.all = new Array();
  106.  
  107. TypingText.currentIndex = 0;
  108.  
  109. TypingText.runAll
  110.  
  111. = function() {
  112.  
  113. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  114.  
  115. }
  116.  
  117. TypingText.prototype.run = function() {
  118.  
  119. if(this.running) return;
  120.  
  121. if(typeof this.origText == "undefined") {
  122.  
  123. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  124.  
  125. return;
  126.  
  127. }
  128.  
  129. if(this.currentText == "") this.element.innerHTML = "";
  130.  
  131. if(this.currentChar < this.origText.length) {
  132.  
  133. if(this.origText.charAt(this.currentChar) == "<" &&
  134.  
  135. !this.inTag) {
  136.  
  137. this.tagBuffer = "<";
  138.  
  139. this.inTag = true;
  140.  
  141. this.currentChar++;
  142.  
  143. this.run();
  144.  
  145. return;
  146.  
  147. } else if(this.origText.charAt(this.currentChar) == ">" &&
  148.  
  149. this.inTag) {
  150.  
  151. this.tagBuffer += ">";
  152.  
  153. this.inTag = false;
  154.  
  155. this.currentText += this.tagBuffer;
  156.  
  157. this.currentChar++;
  158.  
  159. this.run();
  160.  
  161. return;
  162.  
  163. } else
  164.  
  165. if(this.inTag) {
  166.  
  167. this.tagBuffer += this.origText.charAt(this.currentChar);
  168.  
  169. this.currentChar++;
  170.  
  171. this.run();
  172.  
  173. return;
  174.  
  175. } else
  176.  
  177. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  178.  
  179. this.HTMLEntityBuffer = "&";
  180.  
  181. this.inHTMLEntity = true;
  182.  
  183. this.currentChar++;
  184.  
  185. this.run();
  186.  
  187. return;
  188.  
  189. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  190.  
  191. this.HTMLEntityBuffer += ";";
  192.  
  193. this.inHTMLEntity =
  194.  
  195. false;
  196.  
  197. this.currentText += this.HTMLEntityBuffer;
  198.  
  199. this.currentChar++;
  200.  
  201. this.run();
  202.  
  203. return;
  204.  
  205. } else if(this.inHTMLEntity) {
  206.  
  207. this.HTMLEntityBuffer +=
  208.  
  209. this.origText.charAt(this.currentChar);
  210.  
  211. this.currentChar++;
  212.  
  213. this.run();
  214.  
  215. return;
  216.  
  217. } else {
  218.  
  219. this.currentText += this.origText.charAt(this.currentChar);
  220.  
  221. }
  222.  
  223. this.element.innerHTML = this.currentText;
  224.  
  225. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  226.  
  227. this.cursor(this.currentText) : this.cursor) : "");
  228.  
  229. this.currentChar++;
  230.  
  231. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  232.  
  233. this.interval);
  234.  
  235. } else {
  236.  
  237. this.currentText = "";
  238.  
  239. this.currentChar = 0;
  240.  
  241. this.running = false;
  242.  
  243. this.finishedCallback();
  244.  
  245. }
  246.  
  247. }
  248.  
  249.  
  250. /*]]>*/</script>
  251. <center>
  252. <img src="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0"width="350px" height="60px">
  253. <span style="color: green;">
  254. <div style="text-shadow: 0px 0px 5px red;">
  255. <p id="message"><b> {+} Website Has Been Hacked By ==> S3ndo6arpu {+} </b><br>
  256. <br>PLEASE CHECK YOUR SYSTEM NOT SECURE!<br>
  257. <span style="color: green;">
  258. </font>
  259. <center>
  260. <img src="https://2.bp.blogspot.com/-DCmamQOX_QQ/VzM0NdIurrI/AAAAAAAAA0E/V-PfkIJpIZAnTIPjSRDdctDME9WCU_8fwCKgB/s400/11215843_615239168578567_866739867654445039_n.jpg" border="0"width="550px" height="320px"></center>
  261. </center>
  262. <div style="text-shadow: 0px 0px 5px red;">
  263. <span style="color: white;">
  264. <b>Special Thanks To : </b><marquee scrollamount="10" direction="left" width="50%">s3ndo6apu - J3ndi - Transmision Connect - Danger36 - s3ndo6apu - Alliance Technical - CDHO-Team
  265. </marquee>
  266.  
  267. <script type="text/javascript">/*<![CDATA[*/
  268.  
  269. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  270.  
  271. ar[i.length % ar.length]; });
  272.  
  273.  
  274. //Type out examples:
  275.  
  276. TypingText.runAll();
  277.  
  278. /*]]>*/</script>
  279. <embed src="https://www.youtube.com/watch?v=XjpuU1Yk5Z8" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1">
  280. </body>
  281. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement