Advertisement
Xyb3r-D3vil

PCS

Oct 11th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.25 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Hacked By Muhaddi HaXer</title>
  4. <link rel="shortcut icon" href="http://pngimg.com/upload/skeleton_PNG5533.png" type="image/x-icon">
  5. </head>
  6. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'> <style>
  7. #det
  8. {
  9. color:#00ff0f;
  10. text-shadow: 0px 0px 10px #00ff0f, -1px -1px #000;
  11. }
  12.  
  13. body{
  14. text-align: center;
  15. font-size: 12px;
  16. font-family: verdana;
  17. background-color: black;
  18. background: url('http://3.bp.blogspot.com/-D6nQQ3d_wfw/Ts31QI5aQPI/AAAAAAAAAgA/mMEBDufqDpk/s1600/0_1_1.gif') repeat center center fixed black;
  19. }
  20. h1 {
  21. padding: 10px 15px;
  22. margin: 0px;
  23. font-size: 14px;
  24. background-color: #000000;
  25. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  26. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  27. color: #FFF;
  28. //-webkit-border-radius:8px 8px 0px 0px;
  29. //-moz-border-radius: 8px 8px 0px 0px;
  30. border-radius: 8px 8px 0px 0px;
  31. text-shadow:1px 1px 2px #333333;
  32. opacity: 0.5;
  33. }
  34. table {
  35. width: 565px;
  36. }
  37. table tr td{
  38. font-family: verdana;
  39. font-size: 11px;
  40. padding: 10px 5px;
  41. border-bottom: solid 1px #CCC;
  42.  
  43. }
  44. #wrapper{
  45. width: 800px;
  46. margin: 10px auto;
  47. text-align: left;
  48. background: url('http://i.imgur.com/8tvJqks.png') no-repeat center center fixed;
  49. }
  50. #console{
  51. height: 480px;
  52. overflow: auto;
  53. background-color: #000;
  54. padding: 15px;
  55. font-family: monospace;
  56. font-size: 13px;
  57. color: #FFF;
  58. }
  59. .content{
  60. padding: 15px;
  61. }
  62. #commander{
  63. border: solid 1px #CCC;
  64. padding: 5px 10px;
  65. -webkit-border-radius: 2px;
  66. -moz-border-radius: 2px;
  67. border-radius: 2px;
  68. margin: 5px;
  69. width: 590px;
  70. height: 30px;
  71. }
  72. .box{
  73. -moz-box-shadow: 1px 1px 8px #666;
  74. -webkit-box-shadow: 1px 1px 8px #666;
  75. box-shadow: 1px 1px 8px #40D5D2;
  76. border: solid 1px black;
  77. -webkit-border-radius: 8px 8px 0px 0px;
  78. -moz-border-radius: 8px 8px 0px 0px;
  79. border-radius: 8px 8px 0px 0px;
  80. margin: 15px 0px;
  81. background-color: #F5F5F5;
  82. opacity: 0.8;
  83. }
  84. #help{
  85. width: 300px;
  86. float: right;
  87. }
  88. .prefix{
  89. color: #0077E7;
  90. }
  91. .keyword{
  92. color: #9eff63;
  93. }
  94. .error{
  95. color: #FF0000;
  96. }
  97. .spacer{
  98. clear: both;
  99. display: block;
  100. }
  101. </style>
  102. <script type="text/javascript">
  103. // [+]~HaCKeD By Muhaddi HaXer !~[+]
  104. TypingText = function(element, interval, cursor, finishedCallback) {
  105. if((typeof document.getElementById == "undefined") || (typeof
  106.  
  107. element.innerHTML == "undefined")) {
  108. this.running = true;
  109. return;
  110. }
  111. this.element = element;
  112. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  113.  
  114. return; });
  115. this.interval = (typeof interval == "undefined" ? 100 : interval);
  116. this.origText = this.element.innerHTML;
  117. this.unparsedOrigText = this.origText;
  118. this.cursor = (cursor ? cursor : "");
  119. this.currentText = "";
  120. this.currentChar = 0;
  121. this.element.typingText = this;
  122. if(this.element.id == "") this.element.id = "typingtext" +
  123.  
  124. TypingText.currentIndex++;
  125. TypingText.all.push(this);
  126. this.running = false;
  127. this.inTag = false;
  128. this.tagBuffer = "";
  129. this.inHTMLEntity = false;
  130. this.HTMLEntityBuffer = "";
  131. }
  132. TypingText.all = new Array();
  133. TypingText.currentIndex = 0;
  134. TypingText.runAll = function() {
  135. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  136. }
  137. TypingText.prototype.run = function() {
  138. if(this.running) return;
  139. if(typeof this.origText == "undefined") {
  140. setTimeout("document.getElementById('" + this.element.id +
  141.  
  142. "').typingText.run()", this.interval);
  143. return;
  144. }
  145. if(this.currentText == "") this.element.innerHTML = "";
  146. if(this.currentChar < this.origText.length) {
  147. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  148. this.tagBuffer = "<";
  149. this.inTag = true;
  150. this.currentChar++;
  151. this.run();
  152. return;
  153. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  154. this.tagBuffer += ">";
  155. this.inTag = false;
  156. this.currentText += this.tagBuffer;
  157. this.currentChar++;
  158. this.run();
  159. return;
  160. } else if(this.inTag) {
  161. this.tagBuffer += this.origText.charAt(this.currentChar);
  162. this.currentChar++;
  163. this.run();
  164. return;
  165. } else if(this.origText.charAt(this.currentChar) == "&" && !
  166.  
  167. this.inHTMLEntity) {
  168. this.HTMLEntityBuffer = "&";
  169. this.inHTMLEntity = true;
  170. this.currentChar++;
  171. this.run();
  172. return;
  173. } else if(this.origText.charAt(this.currentChar) == ";" &&
  174.  
  175. this.inHTMLEntity) {
  176. this.HTMLEntityBuffer += ";";
  177. this.inHTMLEntity = false;
  178. this.currentText += this.HTMLEntityBuffer;
  179. this.currentChar++;
  180. this.run();
  181. return;
  182. } else if(this.inHTMLEntity) {
  183. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  184. this.currentChar++;
  185. this.run();
  186. return;
  187. } else {
  188. this.currentText += this.origText.charAt(this.currentChar);
  189. }
  190. this.element.innerHTML = this.currentText;
  191. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  192.  
  193. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  194.  
  195. "");
  196. this.currentChar++;
  197. setTimeout("document.getElementById('" + this.element.id +
  198.  
  199. "').typingText.run()", this.interval);
  200. } else {
  201. this.currentText = "";
  202. this.currentChar = 0;
  203. this.running = false;
  204. this.finishedCallback();
  205. }
  206. }
  207. </script>
  208.  
  209. </head>
  210. <body>
  211.  
  212. <div id="wrapper">
  213. <div class="box">
  214. <h1>Hacked By Muhaddi HaXer</h1>
  215. <div id="console"><span class="prefix">
  216. <p id="message">
  217. <font color="red">Root Muhaddi HaXer:</font><font color="#29FF00"> ./Server Boxed<br>
  218. <font color="red">Root Muhaddi HaXer:</font><font color="#29FF00"> ./By<br>
  219. <font color="red">Root Muhaddi HaXer:</font><font color="#29FF00"> ./Muhaddi HaXer<br>
  220. <font color="red">Root Muhaddi HaXer:</font><font color="#29FF00"> ./Pak Cyber Skullz<br>
  221. <font color="red">Root Muhaddi HaXer:</font><font color="#29FF00"> ./From Pakistani Hackers<br>
  222. <br>
  223. <font color="red"> ==========================================================================================================
  224. <br>
  225. <br>
  226. <font color="red">[+] Message :</font><font color="#29FF00"> Dear Admin<br>
  227. <font color="red">[+] Message :</font><font color="#29FF00"> Your Site Security is...<br>
  228. <font color="red">[+] Message :</font><font color="#29FF00"> Too...low!<br>
  229. <font color="red">[+] Message :</font><font color="#29FF00"> Patch Your Security...<br>
  230. <font color="red">[+] Message :</font><font color="#29FF00"> System!<br>
  231. <font color="red">[+] Message :</font><font color="#29FF00"> I Am<br>
  232. <font color="red">[+] Message :</font><font color="#29FF00"> Muhaddi HaXer......... Indian One Day We Will Remove You From IT World (INSHAALLAH)... Stop Hacking Pakistani Sites.... Free Kashmir Freedom Is Our Goal... Fuck Off<br>
  233. <font color="red">[+] Message :</font><font color="#29FF00"> you Can't Stop Me ;).........<br>
  234. <font color="Yellow">[+] Message :</font><font color="#FE2EF7"> Message To All Govt: Muslims Are Not Terrorist. Stop Killing Muslims.......... <br>#Respect Pakistan<br>
  235. <br>
  236. <font color="red"> ===========================================================================================================
  237. <br>
  238. <br>
  239. <font color="yellow">[+] Team Pak Cyber Skullz Family:</font><font color="#29FF00">
  240. Skull | Mindless Injector | Rizwan Haxor | Devil Killer | Adam Knight | KJ | Upset_Boy | R1d3r007 | Alone X Hunt3r | Cr4ck R4J4 | ADi D3vil | Zero Cool | Pardasi Hacker | Muhaddi HaXer | BhaTti HaXor | Fami HaXor | Mr Haxor Khan | CyBer Elit3 | H4nt3r as3z1337 | MisS Muskan | CYB3R G!RL | Blue Fox 1337
  241. <br>
  242. <br>
  243. <font color="white">[+] Contact :</font><font color="red"> MuhaddiHaXer.Com
  244. <br>
  245. <br>
  246. <a href="https://www.facebook.com/PakCyberSKullz"><font color="white">Click Here For Find Me on Facebook</font></a>
  247. <br>
  248. <br>
  249.  
  250. <script type="text/javascript">
  251. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  252.  
  253. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  254.  
  255. //Type out examples:
  256. TypingText.runAll();
  257.  
  258. </script>
  259. <input text="test" id="commande
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement