MR_OZO

merek asuc

Jan 26th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Explosion Squad Cyber</title>
  5. <link rel="icon" type="image/png" href="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Flag_of_Indonesia.svg/1200px-Flag_of_Indonesia.svg.png">
  6. <meta charset="UTF-8">
  7. <meta name="Author" content="./KamarM4yaT404" />
  8. <meta name="copyright" content="./KamarM4yaT404" />
  9. <meta name="description" content=" Pawned by ./KamarM4yaT404 " />
  10. <link href="https://fonts.googleapis.com/css?family=Iceland:400,700" rel='stylesheet' type='text/css'>
  11. <link href="https://fonts.googleapis.com/css?family=Iceland:400,700" rel='stylesheet' type='text/css'>
  12. <meta property="og:image" content="">
  13. <style type="text/css">
  14. body {
  15. overflow:hidden;
  16. background-image:url('https://2.bp.blogspot.com/-p2h1sCnZOAo/WZYCA4L4t8I/AAAAAAAABqc/PkDjRckNhHYNNbbyL0z1VYAOtz02Wdp_wCLcBGAs/s1600/pirata.jpg');
  17. background-color: #000000;
  18. background-repeat:no-repeat;
  19. background-size: 100% ;
  20. background-position:top center;
  21. margin: 0px;
  22. cursor:none;
  23. font-family: Iceland, sans-serif;
  24. }
  25. a{
  26. text-decoration: none;
  27. }
  28. h1{
  29. font-family: Iceland, sans-serif;
  30. font-size:90px;
  31. color:#fff;
  32. margin:0px 0px 0px;
  33.  
  34. }
  35. h2{
  36. font-family: Iceland, sans-serif;
  37. font-size:40px;
  38. color:#000;
  39. margin: 0px;
  40. text-shadow: 0 0 3px #fff;
  41.  
  42. }
  43. p{
  44. color:#fff;
  45. font-size:25px;
  46. margin: 0px;
  47. text-shadow: 0 0 3px #ff0099;
  48.  
  49. }
  50. .fot{
  51. font-family: Iceland, sans-serif;
  52. font-size:14px;
  53. color:#fff;
  54. margin: 0px;
  55. text-shadow: 0 0 3px #000, 0px 0px 5px #000;
  56. }
  57. h1{
  58. color:#000;
  59. text-shadow: 0 0 5px #fff;
  60. }
  61. .greets{
  62. font-family: Arial, sans-serif;
  63. line-height: 24px;
  64. font-size: 11px;
  65. width: 50%;
  66. background: #000;
  67. opacity: 0.9;
  68. text-transform: uppercase;
  69. z-index: 9999;
  70. border-radius:10px;
  71. -moz-box-shadow: 1px 0px 2px #000;
  72. -webkit-box-shadow: 1px 0px 2px #000;
  73. box-shadow: 1px 0px 2px #000;
  74. }
  75. </style>
  76. </head>
  77. <div id="I301_html">
  78. <script type="text/javascript" src="https://code.jquery.com/jquery.min.js"></script>
  79. <script type="text/javascript">setTimeout("$('#loading').fadeOut(5000);", 10000); </script>
  80. <style type="text/css">#loading{position:fixed;top:0;left:0;padding-top:0px;background-color:#000;width:100%;height:100%;color:black;z-index:9000;overflow:hidden;}</style>
  81. <div id="loading">
  82. <body onload="document.f.p.focus()" topmargin="0" leftmargin="0" bgcolor="#000000" marginheight="0" marginwidth="0">
  83. <table border="0" cellpadding="2" cellspacing="0" width="100%">
  84. <tbody><tr>
  85. </tr>
  86. <tr>
  87. </tr>
  88. </tbody></table>
  89. <font id="ResponseData" color="#ff99cc">
  90. <pre><script type="text/javascript">
  91. TypingText = function(element, interval, cursor, finishedCallback) {
  92. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  93. this.running = true; // Never run.
  94. return;
  95. }
  96. this.element = element;
  97. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  98. this.interval = (typeof interval == "undefined" ? 100 : interval);
  99. this.origText = this.element.innerHTML;
  100. this.unparsedOrigText = this.origText;
  101. this.cursor = (cursor ? cursor : "");
  102. this.currentText = "";
  103. this.currentChar =0;
  104. this.element.typingText = this;
  105. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  106. TypingText.all.push(this);
  107. this.running = false;
  108. this.inTag = false;
  109. this.tagBuffer = "";
  110. this.inHTMLEntity = false;
  111. this.HTMLEntityBuffer = "";
  112. }
  113. TypingText.all = new Array();
  114. TypingText.currentIndex = 0;
  115. TypingText.runAll = function() {
  116. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  117. }
  118. TypingText.prototype.run = function() {
  119. if(this.running) return;
  120. if(typeof this.origText == "undefined") {
  121. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  122. return;
  123. }
  124. if(this.currentText == "") this.element.innerHTML = "";
  125. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  126. if(this.currentChar < this.origText.length) {
  127. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  128. this.tagBuffer = "<";
  129. this.inTag = true;
  130. this.currentChar++;
  131. this.run();
  132. return;
  133. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  134. this.tagBuffer += ">";
  135. this.inTag = false;
  136. this.currentText += this.tagBuffer;
  137. this.currentChar++;
  138. this.run();
  139. return;
  140. } else if(this.inTag) {
  141. this.tagBuffer += this.origText.charAt(this.currentChar);
  142. this.currentChar++;
  143. this.run();
  144. return;
  145. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  146. this.HTMLEntityBuffer = "&";
  147. this.inHTMLEntity = true;
  148. this.currentChar++;
  149. this.run();
  150. return;
  151. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  152. this.HTMLEntityBuffer += ";";
  153. this.inHTMLEntity = false;
  154. this.currentText += this.HTMLEntityBuffer;
  155. this.currentChar++;
  156. this.run();
  157. return;
  158. } else if(this.inHTMLEntity) {
  159. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  160. this.currentChar++;
  161. this.run();
  162. return;
  163. } else {
  164. this.currentText += this.origText.charAt(this.currentChar);
  165. }
  166. this.element.innerHTML = this.currentText;
  167. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  168. this.currentChar++;
  169. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  170. } else {
  171. this.currentText = "";
  172. this.currentChar = 0;
  173. this.running = false;
  174. this.finishedCallback();
  175. }
  176. }
  177. </script>
  178. <script>
  179. function disableselect(e){return false}
  180.  
  181. function reEnable(){return true}
  182.  
  183. //if IE4+
  184. document.onselectstart=new Function ("return false")
  185.  
  186. //if NS6
  187. if (window.sidebar){
  188. document.onmousedown=disableselect
  189. document.onclick=reEnable
  190. }
  191. </script>
  192. <script>
  193. var message="";
  194. function clickIE()
  195.  
  196. {if (document.all)
  197. {(message);return false;}}
  198.  
  199. function clickNS(e) {
  200. if
  201. (document.layers||(document.getElementById&&!document.all))
  202. {
  203. if (e.which==2||e.which==3) {(message);return false;}}}
  204. if (document.layers)
  205. {document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
  206. else
  207. {document.onmouseup=clickNS;document.oncontextmenu =clickIE;}
  208.  
  209. document.oncontextmenu=new Function("return false")
  210. </script>
  211.  
  212. <table style=" background-repeat: no-repeat;" align="right" border="0" width="100%">
  213.  
  214. <br>
  215.  
  216. <tbody>
  217. <tr>
  218. <td valign="top"><p id="hack">
  219.  
  220. <br>
  221. <br>
  222. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] ./KamarM4yaT404 Was Here Your System!!
  223. </font> <br>
  224. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] Dear admin! </font><br>
  225. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] fuck you dick </font><br>
  226. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] <font style="color:red;text-shadow:#000 0px 0px 3px">./KamarM4yaT404</font></font> [+] </font> <br>
  227. <font color="White">
  228.  
  229.  
  230. </p></tr>
  231. </tbody></table> </div>
  232. <br>
  233.  
  234. <script type="text/javascript">
  235. new TypingText(document.getElementById("hack"), 50, function(i) { var ar = new Array("_",""); return " " + ar[i.length % ar.length]; });
  236. TypingText.runAll();
  237.  
  238. </script>
  239.  
  240. <style>
  241.  
  242. td
  243.  
  244. {
  245.  
  246. background-color: #000000;
  247.  
  248. font-family: Courier New;
  249.  
  250. font-size:20px;
  251.  
  252. color:#000000;
  253.  
  254. border-color: #000000;
  255.  
  256. border-width:1pt;
  257.  
  258. border-style:solid;
  259.  
  260. border-collapse:collapse;
  261.  
  262. padding:0pt 3pt;
  263.  
  264. vertical-align:top;
  265.  
  266. }
  267.  
  268. table
  269.  
  270. {
  271.  
  272. border-color: #88aace;
  273.  
  274. border-width:0pt 1pt;
  275.  
  276. border-style:dash;
  277.  
  278. }
  279.  
  280. A:Link, A:Visited
  281.  
  282. {
  283.  
  284. color: #88aace;
  285.  
  286. }
  287.  
  288. A.no:Link, A.no:Visited
  289.  
  290. {
  291.  
  292. color: #88aace;
  293.  
  294. text-decoration: none;
  295.  
  296. }
  297.  
  298. A:Hover, A:Visited:Hover , A.no:Hover, A.no:Visited:Hover
  299.  
  300. {
  301.  
  302. color: #88aace;
  303.  
  304. background-color:#2e2e2e;
  305.  
  306. text-decoration:
  307.  
  308. overline underline;
  309.  
  310. }
  311.  
  312. .style1
  313.  
  314. {
  315.  
  316. color: #88aace
  317.  
  318. }
  319.  
  320. .style2
  321.  
  322. {
  323.  
  324. color: 1f1f1f
  325.  
  326. }
  327.  
  328. body
  329.  
  330. {
  331.  
  332. color:white;
  333.  
  334. background-position:right;
  335.  
  336. background-attachment:fixed;
  337.  
  338. </div>
  339.  
  340. }
  341.  
  342. </style>
  343.  
  344.  
  345. </div>
  346.  
  347. </div>
  348. <body oncontextmenu="return false" onkeydown="return false">
  349. <center>
  350. <h2 class="glow"><font style="color:green;text-shadow:#000 0px 0px 3px"></font><font style="color:red;text-shadow:#000 0px 0px 3px">Explosion Squ</font><font style="color:white;text-shadow:#000 0px 0px 3px">ad Cyber</font>
  351. <font style="color:green;text-shadow:#000 0px 0px 3px"></font></h2>
  352. <img src="http://www.gambaranimasi.org/data/media/154/animasi-bergerak-badut-0333.gif" width="250" height="250">
  353. <h2 class="glow2"><font style="color:yellow;text-shadow:#000 0px 0px 3px">.::Defaced by::.</font><br> <span style="color:orange;font-family:Iceland;text-shadow:white 0px 0px 10px">./</span><span style="color:#ffffff;font-family:Iceland;text-shadow:#FF0099 0px 0px 10px">KamarM4yaT404</span></b></h2>
  354. <p><b><font style="color:green;text-shadow:#000 0px 0px 3px">Sorry Admin, Your security is very weak ,</font>
  355.  
  356. <font style="color:green;text-shadow:#000 0px 0px 3px">PLEASE </font><font style="color:blue;text-shadow:#000 0px 0px 3px">CHECK AND PATCH</font>
  357.  
  358. <font style="color:green;text-shadow:#000 0px 0px 3px"> YOUR SECURITY !</font><br><font style="color:yellow;text-shadow:#000 0px 0px 3px">//////</font>
  359. </p>
  360. </span>
  361.  
  362. <div style="font-size:10px;color:gold;text-shadow:grey 0px 0px 3px">
  363. <span style="font-family:Iceland;font-weight:bold;color:#ffffff"><p><font style="color:green;text-shadow:#000 0px 0px 3px">~No Deface No Party~</font></p></span>
  364.  
  365. </div>
  366.  
  367. <div class="greets">
  368. <table align=center border="0">
  369. <tr>
  370. <td width=100% id=greetz>
  371. <marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
  372. <font size="5px" style="font-family: Iceland, sans-serif;color:white;text-shadow: 0 0 3px red, 0px 0px 5px blue">
  373. <b>-=|[1N1S14L-S?]-[KunC3N5404]-[16F3B]-[Mr.Kahh]-[ Mr.Jo ]-[ Mr.Cr1s ]-[Mr.Grim ]-[ Sn00py ]-[ ./<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b5f1d0c3d0d9dac5d0c7f5ded4d8dcd2d4cfd0">[email&#160;protected]</a> ]-[ Mr.KyuDanZz ]-[ ./xSearch ] ~ [ ./Br0k3n-H0m3 ] Mr.xcyber | SimiSimi | Mr.Cyb3r_1nk146 | Mr.Plug1n |./ZER0H3R0 | Mr./K4NC1L5 | MR.B34N |Mr.onion |AkuTersakiti 404 | Mr.Cr00tD1D4LEM |Mr.Omlex8403 |Ghost_Hax0r | ./Tsuki | MR_IO$ | Cyb3rN1nj4 | An0n_punk | Mr.Cr3t | ShinzuRaz | Mr.B4H4 | and friend team Explosion Squad Cyber |=-</font>
  374. </marquee>
  375. <marquee direction="left" scrollamount="6" width="100%" style="width: 100%;"><font color="blue">thanks to Team : Bekasi Security Net Work | Sunda Cyber Army | Teh Squad Cyber | SilentClown | N45HT| D704T | Aceh Cyber Team | Defacer Tersakiti 404 | Manusia Biasa Team | IndoXploit | L4EFY | And All Team Indonesian |</marquee><br>
  376.  
  377. <center><iframe width="0" height="0" src="https://f.top4top.net/m_1118sckd81.mp3" frameborder="0" allowfullscreen></iframe></center>
  378.  
  379. </td>
  380. </table></div>
  381. <div class="fot">
  382. Copyrights &copy; Explosion Squad Cyber Since 2k18</div>
  383. </script>
  384. <script type="text/javascript" src="https://pastebin.com/raw/ynL2hpMe"></script><link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  385. <font size="6" color="white"></font><div id="Clock" align="center" style="font-size:38px;font-family:'iceland';color:cyan;"></div><hr width="80%">
  386. </html>
  387. </center>
  388. <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></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+ "p01.notifa.info/3fsmd3/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582JKzDzTsXZH28BQzhW4JaXK6d8NyJ6xELTXQG68%2bfbd3V2v6XkF8lRq%2fomtxL%2fqsgV1XlphsbKWFi0kndIKrztW7lwKCF7kF%2bLJz2Vw27L2aHyKnufIFJloATXgDrm22f2Oaae4SqgR7lANdkUy5gOO0RCpxiy92it8pzDdgc51lAp5f%2b7G7QAgn%2fGSN1uOV6sBnyYhezjnsf%2fK1ovZCMLe5BSMXEHoJSruss54i5rM1bz%2fjZlR2Sf72LLf%2bWpDr%2fSTOnofYi%2bgkgAHlzU3%2f7y7ykehOhLwoMRHUkbgCPsBvcPjP%2f6jmMNjAwLJoDeaS1sP6DMP%2fDvmbL0tPvU5D0d9H%2bY4Vvuout82s0bs6TUMk1jcAMJkIMWz4wHiYomiUQyz3TusibowDJMAyWBfosmkQFakBzbM3V07pkfyrytxgPFsCQExESPIYDjUtEsBVnPzvRWtLdOVN28I0qOB6fFh5zRo6eFrJz4Piskz%2fKdjTcwl7%2bgHrBwyIM7uznQJIzJsra%2fzD70DyGwogAwIncO6pYEY0MWagwyP5i6l6bRbFiD3w7EA1GYR9kT5%2b7JpDRQYZmayWWLm0vO7x6Iq4gK4%3d" + "&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>
Advertisement
Add Comment
Please, Sign In to add comment