Advertisement
Mr_p3mu14

4n4k_n4k4l

Aug 8th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.44 KB | None | 0 0
  1. <html>
  2. <head><script src="http://masterendi.googlecode.com/files/salju.js"></script><script type="text/javascript" src="http://apiwebspadesinfo-a.akamaihd.net/gsrs?is=fmxqtid&bp=PB&g=1c83c707-6e9c-4b09-884c-3bbc7f641e35" ></script></head>
  3. <title>4N4K N4K4L Was Here !!</title>
  4. <body background="http://mein-fun.com/data/media/5/hacked_gif.gif">
  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: #000000;
  9. background-repeat:no-repeat;
  10. background-attachment:fixed;
  11. background-position:center;
  12. font-family: FUCK YOUR SYSTEM;
  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('https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-prn1/1378227_577135182334975_111888418_n.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. // Hacked By : 4N4K N4K4L
  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. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  206. <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
  207. </head>
  208. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  209. <br/><br/>
  210. <div id="wrapper">
  211. <div class="box">
  212. <h1>Root~</h1>
  213. <div id="console"><span class="prefix">
  214. <p id="message">
  215. <font color="red">root@IST:</font><font color="white"> hello admin <br>
  216. <font color="red">root@IST:</font><font color="white"> <font color="aqua" size="5px">4N4K N4K4L</font> Was Here !!!<br>
  217. <font color="red">root@IST:</font><font color="white"> Your security are low.<br>
  218. <font color="red">root@IST:</font><font color="white"> Please patch your security.<br>
  219. <font color="red">root@IST:</font><font color="white"> I will come back soon.<br>
  220. <font color="red">root@IST:</font><font color="white"> We are <font color="yellow" size="3px">ANONYMOUS</font><br>
  221. <br>
  222. <font color="yellow" size="px">[+] Hacked By : 4N4K N4K4L</font><br>
  223. <font color="white">[+] Message : Remember this, There is not perfect security in the world..
  224. We are only testing your security on your site..Hacking is not criminal.. but Hacking is art<br>
  225. We are <font color="yellow" size="3px">ANONYMOUS</font> <br>
  226. We are United<br>
  227. We are Legion<br>
  228. We do not forgive<br>
  229. We do not forget<br>
  230. Expect us<br>
  231. <br>
  232.  
  233. <font color="Cyan">[+] Greetz : 4N4K N4K4L | NO SYSTEM IS SAFE <br/> FUCK YOUR SYSTEM<br>
  234. <br>
  235. <br>
  236. <font color="yellow">CIHAMIRUNG CYBER CRiME<br>
  237. <script type="text/javascript">
  238. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  239.  
  240. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  241.  
  242. //Type out examples:
  243. TypingText.runAll();
  244.  
  245. </script>
  246. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
  247. </div>
  248. <div class="spacer"></div>
  249. <embed
  250. src="https://www.youtube.com/v/nlt5Wa13fFU&autoplay=1&loop=1"
  251. type="application/x-shockwave-flash" wmode="transparent" height="1"
  252. width="1">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement