Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Explosion Squad Cyber</title>
- <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">
- <meta charset="UTF-8">
- <meta name="Author" content="./KamarM4yaT404" />
- <meta name="copyright" content="./KamarM4yaT404" />
- <meta name="description" content=" Pawned by ./KamarM4yaT404 " />
- <link href="https://fonts.googleapis.com/css?family=Iceland:400,700" rel='stylesheet' type='text/css'>
- <link href="https://fonts.googleapis.com/css?family=Iceland:400,700" rel='stylesheet' type='text/css'>
- <meta property="og:image" content="">
- <style type="text/css">
- body {
- overflow:hidden;
- background-image:url('https://2.bp.blogspot.com/-p2h1sCnZOAo/WZYCA4L4t8I/AAAAAAAABqc/PkDjRckNhHYNNbbyL0z1VYAOtz02Wdp_wCLcBGAs/s1600/pirata.jpg');
- background-color: #000000;
- background-repeat:no-repeat;
- background-size: 100% ;
- background-position:top center;
- margin: 0px;
- cursor:none;
- font-family: Iceland, sans-serif;
- }
- a{
- text-decoration: none;
- }
- h1{
- font-family: Iceland, sans-serif;
- font-size:90px;
- color:#fff;
- margin:0px 0px 0px;
- }
- h2{
- font-family: Iceland, sans-serif;
- font-size:40px;
- color:#000;
- margin: 0px;
- text-shadow: 0 0 3px #fff;
- }
- p{
- color:#fff;
- font-size:25px;
- margin: 0px;
- text-shadow: 0 0 3px #ff0099;
- }
- .fot{
- font-family: Iceland, sans-serif;
- font-size:14px;
- color:#fff;
- margin: 0px;
- text-shadow: 0 0 3px #000, 0px 0px 5px #000;
- }
- h1{
- color:#000;
- text-shadow: 0 0 5px #fff;
- }
- .greets{
- font-family: Arial, sans-serif;
- line-height: 24px;
- font-size: 11px;
- width: 50%;
- background: #000;
- opacity: 0.9;
- text-transform: uppercase;
- z-index: 9999;
- border-radius:10px;
- -moz-box-shadow: 1px 0px 2px #000;
- -webkit-box-shadow: 1px 0px 2px #000;
- box-shadow: 1px 0px 2px #000;
- }
- </style>
- </head>
- <div id="I301_html">
- <script type="text/javascript" src="https://code.jquery.com/jquery.min.js"></script>
- <script type="text/javascript">setTimeout("$('#loading').fadeOut(5000);", 10000); </script>
- <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>
- <div id="loading">
- <body onload="document.f.p.focus()" topmargin="0" leftmargin="0" bgcolor="#000000" marginheight="0" marginwidth="0">
- <table border="0" cellpadding="2" cellspacing="0" width="100%">
- <tbody><tr>
- </tr>
- <tr>
- </tr>
- </tbody></table>
- <font id="ResponseData" color="#ff99cc">
- <pre><script type="text/javascript">
- TypingText = function(element, interval, cursor, finishedCallback) {
- if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
- this.running = true; // Never run.
- return;
- }
- this.element = element;
- this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
- this.interval = (typeof interval == "undefined" ? 100 : interval);
- this.origText = this.element.innerHTML;
- this.unparsedOrigText = this.origText;
- this.cursor = (cursor ? cursor : "");
- this.currentText = "";
- this.currentChar =0;
- this.element.typingText = this;
- if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
- TypingText.all.push(this);
- this.running = false;
- this.inTag = false;
- this.tagBuffer = "";
- this.inHTMLEntity = false;
- this.HTMLEntityBuffer = "";
- }
- TypingText.all = new Array();
- TypingText.currentIndex = 0;
- TypingText.runAll = function() {
- for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
- }
- TypingText.prototype.run = function() {
- if(this.running) return;
- if(typeof this.origText == "undefined") {
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
- return;
- }
- if(this.currentText == "") this.element.innerHTML = "";
- // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
- if(this.currentChar < this.origText.length) {
- if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
- this.tagBuffer = "<";
- this.inTag = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
- this.tagBuffer += ">";
- this.inTag = false;
- this.currentText += this.tagBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inTag) {
- this.tagBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
- this.HTMLEntityBuffer = "&";
- this.inHTMLEntity = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
- this.HTMLEntityBuffer += ";";
- this.inHTMLEntity = false;
- this.currentText += this.HTMLEntityBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inHTMLEntity) {
- this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else {
- this.currentText += this.origText.charAt(this.currentChar);
- }
- this.element.innerHTML = this.currentText;
- this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
- this.currentChar++;
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
- } else {
- this.currentText = "";
- this.currentChar = 0;
- this.running = false;
- this.finishedCallback();
- }
- }
- </script>
- <script>
- function disableselect(e){return false}
- function reEnable(){return true}
- //if IE4+
- document.onselectstart=new Function ("return false")
- //if NS6
- if (window.sidebar){
- document.onmousedown=disableselect
- document.onclick=reEnable
- }
- </script>
- <script>
- var message="";
- function clickIE()
- {if (document.all)
- {(message);return false;}}
- function clickNS(e) {
- if
- (document.layers||(document.getElementById&&!document.all))
- {
- if (e.which==2||e.which==3) {(message);return false;}}}
- if (document.layers)
- {document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
- else
- {document.onmouseup=clickNS;document.oncontextmenu =clickIE;}
- document.oncontextmenu=new Function("return false")
- </script>
- <table style=" background-repeat: no-repeat;" align="right" border="0" width="100%">
- <br>
- <tbody>
- <tr>
- <td valign="top"><p id="hack">
- <br>
- <br>
- <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> <b>[+] ./KamarM4yaT404 Was Here Your System!!
- </font> <br>
- <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> <b>[+] Dear admin! </font><br>
- <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> <b>[+] fuck you dick </font><br>
- <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> <b>[+] <font style="color:red;text-shadow:#000 0px 0px 3px">./KamarM4yaT404</font></font> [+] </font> <br>
- <font color="White">
- </p></tr>
- </tbody></table> </div>
- <br>
- <script type="text/javascript">
- new TypingText(document.getElementById("hack"), 50, function(i) { var ar = new Array("_",""); return " " + ar[i.length % ar.length]; });
- TypingText.runAll();
- </script>
- <style>
- td
- {
- background-color: #000000;
- font-family: Courier New;
- font-size:20px;
- color:#000000;
- border-color: #000000;
- border-width:1pt;
- border-style:solid;
- border-collapse:collapse;
- padding:0pt 3pt;
- vertical-align:top;
- }
- table
- {
- border-color: #88aace;
- border-width:0pt 1pt;
- border-style:dash;
- }
- A:Link, A:Visited
- {
- color: #88aace;
- }
- A.no:Link, A.no:Visited
- {
- color: #88aace;
- text-decoration: none;
- }
- A:Hover, A:Visited:Hover , A.no:Hover, A.no:Visited:Hover
- {
- color: #88aace;
- background-color:#2e2e2e;
- text-decoration:
- overline underline;
- }
- .style1
- {
- color: #88aace
- }
- .style2
- {
- color: 1f1f1f
- }
- body
- {
- color:white;
- background-position:right;
- background-attachment:fixed;
- </div>
- }
- </style>
- </div>
- </div>
- <body oncontextmenu="return false" onkeydown="return false">
- <center>
- <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>
- <font style="color:green;text-shadow:#000 0px 0px 3px"></font></h2>
- <img src="http://www.gambaranimasi.org/data/media/154/animasi-bergerak-badut-0333.gif" width="250" height="250">
- <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>
- <p><b><font style="color:green;text-shadow:#000 0px 0px 3px">Sorry Admin, Your security is very weak ,</font>
- <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>
- <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>
- </p>
- </span>
- <div style="font-size:10px;color:gold;text-shadow:grey 0px 0px 3px">
- <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>
- </div>
- <div class="greets">
- <table align=center border="0">
- <tr>
- <td width=100% id=greetz>
- <marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
- <font size="5px" style="font-family: Iceland, sans-serif;color:white;text-shadow: 0 0 3px red, 0px 0px 5px blue">
- <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 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>
- </marquee>
- <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>
- <center><iframe width="0" height="0" src="https://f.top4top.net/m_1118sckd81.mp3" frameborder="0" allowfullscreen></iframe></center>
- </td>
- </table></div>
- <div class="fot">
- Copyrights © Explosion Squad Cyber Since 2k18</div>
- </script>
- <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'>
- <font size="6" color="white"></font><div id="Clock" align="center" style="font-size:38px;font-family:'iceland';color:cyan;"></div><hr width="80%">
- </html>
- </center>
- <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" + "¶ms=" + "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