Advertisement
NdaX404

Kepo

Mar 19th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.54 KB | None | 0 0
  1. <html>
  2.  
  3. <head></head>
  4. <title>./NdaX404</title>
  5. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
  6. <style>
  7. body{
  8. background-color: #010;
  9. background-repeat:no-repeat;
  10. background-attachment:fixed;
  11. background-position:right bottom;
  12. font-family: Bradley Hand ITC;
  13. font-size: 27px;
  14. }
  15. h1 {
  16. padding: 10px 15px;
  17. margin: 0px;
  18. font-size: 14px;
  19. background-color: #000000;
  20. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  21. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  22. color: #FFF;
  23. //-webkit-border-radius:8px 8px 0px 0px;
  24. //-moz-border-radius: 8px 8px 0px 0px;
  25. border-radius: 8px 8px 0px 0px;
  26. text-shadow:1px 1px 2px #333333;
  27. opacity: 0.5;
  28. }
  29. table {
  30. width: 565px;
  31. }
  32. table tr td{
  33. font-family: verdana;
  34. font-size: 11px;
  35. padding: 10px 5px;
  36. border-bottom: solid 1px #CCC;
  37.  
  38. }
  39. #wrapper{
  40. width: 800px;
  41. margin: 10px auto;
  42. text-align: left;
  43. 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 ;
  44. }
  45. #console{
  46. height: 400px;
  47. overflow: auto;
  48. background-color: #000;
  49. padding: 15px;
  50. font-family: monospace;
  51. font-size: 12px;
  52. color: #FFF;
  53. }
  54. .content{
  55. padding: 15px;
  56. }
  57. #commander{
  58. border: solid 1px #CCC;
  59. padding: 5px 10px;
  60. -webkit-border-radius: 2px;
  61. -moz-border-radius: 2px;
  62. border-radius: 2px;
  63. margin: 5px;
  64. width: 590px;
  65. height: 30px;
  66. }
  67. .box{
  68. -moz-box-shadow: 1px 1px 8px #666;
  69. -webkit-box-shadow: 1px 1px 8px #666;
  70. box-shadow: 1px 1px 8px #40D5D2;
  71. border: solid 1px black;
  72. -webkit-border-radius: 8px 8px 0px 0px;
  73. -moz-border-radius: 8px 8px 0px 0px;
  74. border-radius: 8px 8px 0px 0px;
  75. margin: 15px 0px;
  76. background-color: #F5F5F5;
  77. opacity: 0.8;
  78. }
  79. #help{
  80. width: 300px;
  81. float: right;
  82. }
  83. .prefix{
  84. color: #0077E7;
  85. }
  86. .keyword{
  87. color: #9eff63;
  88. }
  89. .error{
  90. color: #FF0000;
  91. }
  92. .spacer{
  93. clear: both;
  94. display: block;
  95. }
  96. </style>
  97. <script type="text/javascript">
  98.  
  99. TypingText = function(element, interval, cursor, finishedCallback) {
  100. if((typeof document.getElementById == "undefined") || (typeof
  101.  
  102. element.innerHTML == "undefined")) {
  103. this.running = true;
  104. return;
  105. }
  106. this.element = element;
  107. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  108.  
  109. return; });
  110. this.interval = (typeof interval == "undefined" ? 100 : interval);
  111. this.origText = this.element.innerHTML;
  112. this.unparsedOrigText = this.origText;
  113. this.cursor = (cursor ? cursor : "");
  114. this.currentText = "";
  115. this.currentChar = 0;
  116. this.element.typingText = this;
  117. if(this.element.id == "") this.element.id = "typingtext" +
  118.  
  119. TypingText.currentIndex++;
  120. TypingText.all.push(this);
  121. this.running = false;
  122. this.inTag = false;
  123. this.tagBuffer = "";
  124. this.inHTMLEntity = false;
  125. this.HTMLEntityBuffer = "";
  126. }
  127. TypingText.all = new Array();
  128. TypingText.currentIndex = 0;
  129. TypingText.runAll = function() {
  130. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  131. }
  132. TypingText.prototype.run = function() {
  133. if(this.running) return;
  134. if(typeof this.origText == "undefined") {
  135. setTimeout("document.getElementById('" + this.element.id +
  136.  
  137. "').typingText.run()", this.interval);
  138. return;
  139. }
  140. if(this.currentText == "") this.element.innerHTML = "";
  141. if(this.currentChar < this.origText.length) {
  142. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  143. this.tagBuffer = "<";
  144. this.inTag = true;
  145. this.currentChar++;
  146. this.run();
  147. return;
  148. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  149. this.tagBuffer += ">";
  150. this.inTag = false;
  151. this.currentText += this.tagBuffer;
  152. this.currentChar++;
  153. this.run();
  154. return;
  155. } else if(this.inTag) {
  156. this.tagBuffer += this.origText.charAt(this.currentChar);
  157. this.currentChar++;
  158. this.run();
  159. return;
  160. } else if(this.origText.charAt(this.currentChar) == "&" && !
  161.  
  162. this.inHTMLEntity) {
  163. this.HTMLEntityBuffer = "&";
  164. this.inHTMLEntity = true;
  165. this.currentChar++;
  166. this.run();
  167. return;
  168. } else if(this.origText.charAt(this.currentChar) == ";" &&
  169.  
  170. this.inHTMLEntity) {
  171. this.HTMLEntityBuffer += ";";
  172. this.inHTMLEntity = false;
  173. this.currentText += this.HTMLEntityBuffer;
  174. this.currentChar++;
  175. this.run();
  176. return;
  177. } else if(this.inHTMLEntity) {
  178. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  179. this.currentChar++;
  180. this.run();
  181. return;
  182. } else {
  183. this.currentText += this.origText.charAt(this.currentChar);
  184. }
  185. this.element.innerHTML = this.currentText;
  186. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  187.  
  188. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  189.  
  190. "");
  191. this.currentChar++;
  192. setTimeout("document.getElementById('" + this.element.id +
  193.  
  194. "').typingText.run()", this.interval);
  195. } else {
  196. this.currentText = "";
  197. this.currentChar = 0;
  198. this.running = false;
  199. this.finishedCallback();
  200. }
  201. }
  202. </script>
  203.  
  204.  
  205.  
  206. </head>
  207. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  208. <br/><br/>
  209. <div id="wrapper">
  210. <div class="box">
  211. <h1>Terminal</h1>
  212. <div id="console"><span class="prefix">
  213. <p id="message">
  214. <font color="yellow" size="5px">#./NdaX404_Was_Here</font><br>
  215.  
  216.  
  217. <font color="aqua">root@ndax404:~#</font><font color="white"> sudo su <br>
  218. <font color="aqua">root@ndax404:~#</font><font color="white"> enter password<br>
  219. <font color="aqua">root@ndax404:~#</font><font color="white"> *********** <br>
  220. <font color="aqua">root@ndax404:~#</font><font color="white"> Jika Website Mu Di Hack<br>
  221. <font color="aqua">root@ndax404:~#</font><font color="white"> Jangan Salahkan Kami<br>
  222. <font color="aqua">root@ndax404:~#</font><font color="white"> Karna Itu Adalah Hobi Kami<br>
  223. <font color="aqua">root@ndax404:~#</font><font color="white"> Tetapi Salahkan Dirimu Sendiri, Kenapa Tidak Menjaga Nya Dengan Baik<br>
  224. <font color="aqua">root@ndax404:~#</font><font color="white"> If You Have Problem With Me<br>
  225. <font color="aqua">root@ndax404:~#</font><font color="white"> Don't Tell The World, Tell Me And Finish it With Me.  <br>
  226. <font color="aqua">root@ndax404:~#</font><font color="white"> BY <font color="aqua" size="3px">./NdaX404</font><br>
  227. <br>
  228. <font color="yellow" size="5px">[+] Alchemist Army</font><br>
  229. <font color="white">[+] Message : .Hacking Is Not Crime, But Hacking Is Art.<br>
  230.  
  231. We are <font color="yellow" size="3px">Alchemist Army</font> <br>
  232. We are United<br>
  233. We are Legion<br>
  234. We do not forgive<br>
  235. We do not forget<br>
  236. Expect us<br>
  237. <br>
  238.  
  239. <font color="#00FF00 ">Why You Don't Fix Bug<br>
  240. <font color="#00FF00 ">I Told You , FIX THAT<br>
  241. <font color="#00FF00 ">Patch Your System<br>
  242. <font color="#FF3300 "size="5px">Because Am In Your SYSTEM<br></font>
  243. <font color="#FF3300 "size="5px"><br></font>
  244.  
  245. <font color="Cyan">[+] Greetz : Kaneki404 | PN1X | Mr.sugi0no69 | KzH_404 | MR.M-F | 4L3X4ND3R_G | Cyber_Ponti | Mr.Ossas404 | Cyber_Ponti15 | Mr.A311 | #/MakanBang502 | VocReloadEd | Mr.MZm709 | Mr.Bl4nk <br>
  246. <br>
  247.  
  248. <script type="text/javascript">
  249. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  250.  
  251. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  252.  
  253. //Type out examples:
  254. TypingText.runAll();
  255.  
  256. </script>
  257. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
  258. </div>
  259. <div class="spacer"></div>
  260.  
  261.  
  262. <embed src="http://www.youtube.com/v/LApS9G22cIU&amp;autoplay=1"
  263. type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement