1. <html>
  2. <title>Hacked By DEV1L_48</title>
  3. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  4. <script type='text/javascript'>
  5. //<![CDATA[
  6. msg = "..::Team Indonesia was Here::.. ";
  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"><b> ................   DEV1L_48 Team Indonesia     ................</b></div>
  27. <center><img src="http://img69.imageshack.us/edit_preview.php?l=img69/9695/maju.gif&action=rotate" /> <br />
  28.  
  29. <style type="text/css">body {
  30.  
  31. background: #000000;
  32.  
  33. font-family: Courier New;
  34.  
  35. color: #ff0000;
  36.  
  37. text-align: center;
  38.  
  39. }
  40.  
  41. a {
  42.  
  43. text-decoration:none;
  44.  
  45. color:
  46.  
  47. #ff0000;
  48.  
  49. }
  50.  
  51. </style>
  52.  
  53. <script type="text/javascript">/*<![CDATA[*/
  54.  
  55. TypingText = function(element, interval, cursor, finishedCallback) {
  56.  
  57. if((typeof document.getElementById ==
  58.  
  59. "undefined") || (typeof element.innerHTML == "undefined")) {
  60.  
  61. this.running = true;
  62.  
  63. return;
  64.  
  65. }
  66.  
  67. this.element = element;
  68.  
  69. this.finishedCallback = (finishedCallback
  70.  
  71. ? finishedCallback : function() { return; });
  72.  
  73. this.interval = (typeof interval == "undefined" ? 100 : interval);
  74.  
  75. this.origText = this.element.innerHTML;
  76.  
  77. this.unparsedOrigText = this.origText;
  78.  
  79. this.cursor = (cursor ? cursor : "");
  80.  
  81. this.currentText = "";
  82.  
  83. this.currentChar = 0;
  84.  
  85. this.element.typingText = this;
  86.  
  87. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  88.  
  89. TypingText.all.push(this);
  90.  
  91. this.running = false;
  92.  
  93. this.inTag = false;
  94.  
  95. this.tagBuffer = "";
  96.  
  97. this.inHTMLEntity = false;
  98.  
  99. this.HTMLEntityBuffer = "";
  100.  
  101. }
  102.  
  103. TypingText.all = new Array();
  104.  
  105. TypingText.currentIndex = 0;
  106.  
  107. TypingText.runAll
  108.  
  109. = function() {
  110.  
  111. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  112.  
  113. }
  114.  
  115. TypingText.prototype.run = function() {
  116.  
  117. if(this.running) return;
  118.  
  119. if(typeof this.origText == "undefined") {
  120.  
  121. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  122.  
  123. return;
  124.  
  125. }
  126.  
  127. if(this.currentText == "") this.element.innerHTML = "";
  128.  
  129. if(this.currentChar < this.origText.length) {
  130.  
  131. if(this.origText.charAt(this.currentChar) == "<" &&
  132.  
  133. !this.inTag) {
  134.  
  135. this.tagBuffer = "<";
  136.  
  137. this.inTag = true;
  138.  
  139. this.currentChar++;
  140.  
  141. this.run();
  142.  
  143. return;
  144.  
  145. } else if(this.origText.charAt(this.currentChar) == ">" &&
  146.  
  147. this.inTag) {
  148.  
  149. this.tagBuffer += ">";
  150.  
  151. this.inTag = false;
  152.  
  153. this.currentText += this.tagBuffer;
  154.  
  155. this.currentChar++;
  156.  
  157. this.run();
  158.  
  159. return;
  160.  
  161. } else
  162.  
  163. if(this.inTag) {
  164.  
  165. this.tagBuffer += this.origText.charAt(this.currentChar);
  166.  
  167. this.currentChar++;
  168.  
  169. this.run();
  170.  
  171. return;
  172.  
  173. } else
  174.  
  175. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  176.  
  177. this.HTMLEntityBuffer = "&";
  178.  
  179. this.inHTMLEntity = true;
  180.  
  181. this.currentChar++;
  182.  
  183. this.run();
  184.  
  185. return;
  186.  
  187. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  188.  
  189. this.HTMLEntityBuffer += ";";
  190.  
  191. this.inHTMLEntity =
  192.  
  193. false;
  194.  
  195. this.currentText += this.HTMLEntityBuffer;
  196.  
  197. this.currentChar++;
  198.  
  199. this.run();
  200.  
  201. return;
  202.  
  203. } else if(this.inHTMLEntity) {
  204.  
  205. this.HTMLEntityBuffer +=
  206.  
  207. this.origText.charAt(this.currentChar);
  208.  
  209. this.currentChar++;
  210.  
  211. this.run();
  212.  
  213. return;
  214.  
  215. } else {
  216.  
  217. this.currentText += this.origText.charAt(this.currentChar);
  218.  
  219. }
  220.  
  221. this.element.innerHTML = this.currentText;
  222.  
  223. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  224.  
  225. this.cursor(this.currentText) : this.cursor) : "");
  226.  
  227. this.currentChar++;
  228.  
  229. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  230.  
  231. this.interval);
  232.  
  233. } else {
  234.  
  235. this.currentText = "";
  236.  
  237. this.currentChar = 0;
  238.  
  239. this.running = false;
  240.  
  241. this.finishedCallback();
  242.  
  243. }
  244.  
  245. }
  246.  
  247.  
  248. /*]]>*/</script>
  249. <center><img src="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0"width="350px" height="60px">
  250.  
  251. <p id="message"><b> {+} Website Has Been Hacked By ==> DEV1L_48 {+} </b><br>
  252. ===========================================
  253. <span style="color: green;">
  254. <b><br>Hello Sir....</b></font><span style="color: lime;">
  255. <br />
  256. <br> <b><br>Attacking INDONESIA is the biggest mistakes you've ever done in your life
  257. <br> You guys must pay back for that (we will ROCK you) ^_^ </b>
  258. </font>
  259. <br />
  260. <br>
  261. <span style="color: Red;">
  262. <br><b>Don't Touch Indonesia Website Again !!</b><br></font>
  263. <center><img src=" http://alexpogeler.files.wordpress.com/2012/05/depths-of-hell-cartoon-310001.jpg " border="0"width="550px" height="320px"></center>
  264.  
  265. </center>
  266.  
  267. <div style="text-shadow: 0px 0px 5px red;">
  268. <span style="color: white;">
  269.  
  270.  
  271. <script type="text/javascript">/*<![CDATA[*/
  272.  
  273. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  274.  
  275. ar[i.length % ar.length]; });
  276.  
  277.  
  278. //Type out examples:
  279.  
  280. TypingText.runAll();
  281.  
  282. /*]]>*/</script>
  283. <embed src="http://www.youtube.com/v/qGaOlfmX8rQ&amp;autoplay=1" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1">
  284. </body>
  285. </html>