Advertisement
NdaX404

script deface mhanxx jhuned

Dec 10th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 11.90 KB | None | 0 0
  1. <HTML>
  2.  
  3. <!-- Mirrored from officialprimaliker.site.bz/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 10 Dec 2016 07:58:41 GMT -->
  4. <head>
  5. <title> ..:: NdaX404 ::.. </title>
  6. <script type='text/javascript'>
  7. //<![CDATA[
  8. msg = "..::HACKED BY NdaX404 ::.. ";
  9. msg = ".:Please patch your system:." + msg;pos = 0;
  10. function scrollMSG() {
  11. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  12. if (pos > msg.length) pos = 0
  13. window.setTimeout("scrollMSG()",80);
  14. }
  15. scrollMSG();
  16. //]]></script>
  17. <meta name="description"content="{+} Spesial Thanks To All Member Nda"/>
  18. </head>
  19. <center><font size="15" color="red"><center><b><blink> HACKED BY </blink></b></font><font size="15" color="white"><b><blink> Alchemist</blink></b></font><font size="15" color="white"><b><blink> Army </blink></b></font></center>
  20.  <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/games/gam-11/gam1090.ani), url(http://cur.cursors-4u.net/games/gam-11/gam1090.png), progress;}</style><a href="http://www.cursors-4u.com/cursor/2010/02/24/animated-cool-shiny-blue-pointer.html" target="_blank" title="Animated Cool Shiny Blue Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Animated Cool Shiny Blue Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
  21.  <<body style="background-color:#000000;background>
  22. <center><FONT COLOR="gray"><FONT
  23. SIZE=5>You Have HACKED BY NdaX404 </FONT></FONT></center>
  24. <center><img src="http://www.kkienn.com/media/ID.jpg"
  25. width="250" height="250">
  26.     <style>
  27. center {
  28.     text-shadow: 2px 2px black;
  29. }
  30.  
  31. </style><style type="text/css">
  32. <!--
  33. .ahgcrewstyle {
  34. color: #F00;
  35. }
  36. .ahg {
  37. color: #0F0;
  38. }
  39. #message font strong {
  40. font-family: Tahoma, Geneva, sans-serif;
  41. font-size: 18px;
  42. }
  43. .gre {
  44. color: #9F3;
  45. font-size: 36px;
  46. }
  47. #message font {
  48. font-size: 20px;
  49. }
  50. -->
  51. </style>
  52. <center>
  53. <script type="text/javascript">
  54. TypingText = function(element, interval, cursor, finishedCallback) {
  55. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  56. this.running = true;
  57. return;
  58. }
  59. this.element = element;
  60. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  61. this.interval = (typeof interval == "undefined" ? 100 : interval);
  62. this.origText = this.element.innerHTML;
  63. this.unparsedOrigText = this.origText;
  64. this.cursor = (cursor ? cursor : "");
  65. this.currentText = "";
  66. this.currentChar = 0;
  67. this.element.typingText = this;
  68. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  69. TypingText.all.push(this);
  70. this.running = false;
  71. this.inTag = false;
  72. this.tagBuffer = "";
  73. this.inHTMLEntity = false;
  74. this.HTMLEntityBuffer = "";
  75. }
  76. TypingText.all = new Array();
  77. TypingText.currentIndex = 0;
  78. TypingText.runAll = function() {
  79. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  80. }
  81. TypingText.prototype.run = function() {
  82. if(this.running) return;
  83. if(typeof this.origText == "undefined") {
  84. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  85. return;
  86. }
  87. if(this.currentText == "") this.element.innerHTML = "";
  88. if(this.currentChar < this.origText.length) {
  89. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  90. this.tagBuffer = "<";
  91. this.inTag = true;
  92. this.currentChar++;
  93. this.run();
  94. return;
  95. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  96. this.tagBuffer += ">";
  97. this.inTag = false;
  98. this.currentText += this.tagBuffer;
  99. this.currentChar++;
  100. this.run();
  101. return;
  102. } else if(this.inTag) {
  103. this.tagBuffer += this.origText.charAt(this.currentChar);
  104. this.currentChar++;
  105. this.run();
  106. return;
  107. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  108. this.HTMLEntityBuffer = "&";
  109. this.inHTMLEntity = true;
  110. this.currentChar++;
  111. this.run();
  112. return;
  113. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  114. this.HTMLEntityBuffer += ";";
  115. this.inHTMLEntity = false;
  116. this.currentText += this.HTMLEntityBuffer;
  117. this.currentChar++;
  118. this.run();
  119. return;
  120. } else if(this.inHTMLEntity) {
  121. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  122. this.currentChar++;
  123. this.run();
  124. return;
  125. } else {
  126. this.currentText += this.origText.charAt(this.currentChar);
  127. }
  128. this.element.innerHTML = this.currentText;
  129. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  130. this.currentChar++;
  131. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  132. } else {
  133. this.currentText = "";
  134. this.currentChar = 0;
  135. this.running = false;
  136. this.finishedCallback();
  137. }
  138. }
  139. </script>
  140.  
  141.  
  142. <p id="message"><font>
  143. <br><font color="green"><b><i>{+} Website Has Ben HACKED BY NdaX404 {+}
  144. <br>Ketika kita semua memiliki akses ke informasi, kita kuat.<br> Ketika kita kuat, kita tetap memiliki kekuatan untuk melakukan hal yang mustahil.
  145. <br>Di dunia nyata memang kita di anggap bodoh
  146. <br>tapi tidak apa apa sebab
  147. <br>mereka tidak tau keahlian kita di internet dan dunia maya
  148. </i></b></br></font></p>
  149. <script type="text/javascript">
  150. new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "index.html", "-"); return " " + ar[i.length % ar.length]; });
  151. //Type out examples:
  152. TypingText.runAll();
  153. </script>
  154.  
  155. <br><center><marquee behavior="scroll" direction="right" scrollamount="100" scrolldelay="100" width="50%"><font color="red">----------------------------------------</font></marquee>
  156. <br><marquee behavior="scroll" direction="left" scrollamount="100" scrolldelay="100" width="50%"><font color="white">----------------------------------------</font></marquee></center>
  157. <center><font color="red"><font size="8">-----___NO SYSTEM </font><font color="white"><font size="8">IS SAFE___-----</font></center>
  158. <center><FONT COLOR="green"><FONT SIZE=5>We Are Alchemist Army</FONT></center>
  159. <center><FONT COLOR="white"><FONT SIZE=5>We Are Is Free</FONT></center>
  160. <center><FONT COLOR="white"><FONT SIZE=5>We Do Not Forgive</FONT></center>
  161. <center><FONT COLOR="white"><FONT SIZE=5>We Do Not Forget</FONT></center>
  162. <center><FONT COLOR="white"><FONT SIZE=5>Expect Us</FONT></center>
  163. <center><FONT COLOR="red"><FONT SIZE=5>###############################</FONT><FONT COLOR="white"><FONT SIZE=5>###############################</FONT></center>
  164. <center><FONT COLOR="white"><FONT SIZE=5><marquee> Spesial Thanks To : Mr./N()TF0UND/ - ./AZvR404 - 4LV1N_404 - Sector.V2 - NdaX404 - ./Xc4 - Mr.Leon_ - mr.coyox92 - Mr.B45KOM - Tr.05.Tr -All Member Alchemist Army </marquee>
  165. <center><FONT COLOR="red"><FONT SIZE=5>###############################</FONT><FONT COLOR="white"><FONT SIZE=5>###############################</FONT></center>
  166. <center><FONT COLOR="Green"><FONT SIZE=6> HACKED BY NdaX404 </FONT></center>
  167. </script>
  168. <center>
  169.  <style type="text/css">
  170. body{
  171. background:url(https://lh3.googleusercontent.com/-CYobas4WGXo/Ts32QusPKsI/AAAAAAAAAgw/xQQMNbgAa0M/s800/port_listener.gif) repeat center center fixed black;
  172. }
  173. </style>
  174. <style>
  175. <script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs2.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582H6x5iDAuv2BZgSnd9mm4nqpfHIX8sIKbu%2fG65Xjih5ttFZ9og4u4L5AVa7Fy%2b%2bqdxVMw5HMCITKyJyEzrd%2fNEZiDj1CJZZvQPnQtJnLMjvbS4tf2yFI4165s%2b0lzDR7KVT1vEGMV13nac%2bYBviWaT6Gch6YtR42NhOFecZNBwJTG8dh3fyp7AkkG441jWXh1PH6OY%2fEEmZup6M5HpOVJgb2It7zsGTfJuf2EteEBr5XKwys9Bdq9ffBu6fJKi85Qud%2fj0dnEagYiHKju49%2f37Ll2g6Mr3J0G3nkEvLpBG8yf0y05iM6toAzDyNDY4HDm8IFy2oTdOmZbBZof7LcIJyMU98Q8BG3kSjC4JuyVjmJ5Ls8bJwhena62J3tOKn5UJXMhgEoy%2bNP" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script><script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs2.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582H6x5iDAuv2B8h7%2fPbHJComTR1FnueX%2f3yGCCoL4wZe94QJLATREeO96dDkI3wXYAegV5SQWpg4d%2b%2fHI2dkaUPmJCOQ31vzZ%2fxoJ02PY5EvUJGZHotXbWOZC2pyghgdLYRjiJL7iLZl3nW8Yj1FhSiijClVIsnc0UKiuHcaQYn1y%2f8jt1JSdbBj379sjdq9q7uxkZyZmapoN6up7K7QVUA1Sw5cdf4dgtc2Po0gwQB%2f%2bTtjCW0OhpGlIBAZNXjMkTNCQQGUcOOnfMQov2y6drEPv7BXkuworG3dpl0jozb2%2fVqsu%2foJaDojLUqscbSi5Fh%2bl%2fud7gpIN2rgQJUZfXDRmZcfCj5UETjTwd7TDN7lR0XSy%2bmMtsVAI3NhXiwbNKC3Cyp2%2bHVK%2b" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script><script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs2.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582H6x5iDAuv2BxWwvvXwZ6vgk3mHCeN3%2b%2fWh9HvnOTL0reTUdBPy3sbO7XgDfCZYDAuBwiSzhYGj1j8Pqlg%2bTqq1uDxtMYCTTtTflgCCIoEp7iFDi%2be474EmHbKjQlrV6OhLx8Z5%2bymotIu2k6niiJRmxqp9d7AqBnoH3qPmHf%2f1dRdFsJd1G7nu%2fUU1hyIb%2fE04cFloU4waYIKUVGeOgQeKC0%2fcBHBb7DhHiVGi%2blSZTOM4NQvRTvgXGbsLoxFKm4wiFmqWv15dL9f9njaHYOUOV964p7e0DfKCFql25%2bZJxQO4IRF6mwmSQhd%2fzqWADJRWXFFHKf8Xs8TlWbsdVcXPYBONOjo%2fenvtFTFbmNzZRtixfS4I2vD0MloJL9oN5k6l0B530ZdgE" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
  176. </HTML>
  177. <!-- www.1freehosting.com Analytics Code -->
  178. <noscript><a title="Pagerank SEO analytic" href="http://www.1pagerank.com/">Pagerank SEO analytic</a></noscript>
  179. <script type="text/javascript">
  180.  
  181.   var _gaq = _gaq || [];
  182.   _gaq.push(['_setAccount', 'UA-21588661-2']);
  183.   _gaq.push(['_setDomainName', window.location.host]);
  184.   _gaq.push(['_setAllowLinker', true]);
  185.   _gaq.push(['_trackPageview']);
  186.  
  187.   (function() {
  188.     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  189.     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  190.     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  191.  
  192.     var fga = document.createElement('script'); fga.type = 'text/javascript'; fga.async = true;
  193.     fga.src = ('https:' == document.location.protocol ? 'https://www' : 'http://www') + '.1freehosting.com/cdn/ga.js';
  194.     var fs = document.getElementsByTagName('script')[0]; fs.parentNode.insertBefore(fga, fs);
  195.  
  196.   })();
  197. </script>
  198. <!-- End Of Analytics Code --><!-- --> <script type='text/javascript' src='http://go.pub2srv.com/apu.php?zoneid=16780'> </script> <script type="text/javascript" src="http://1phads.com/notice.php?p=16781&amp;interactive=1&amp;pushup=1"> </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement