Advertisement
qwertasek

Untitled

May 10th, 2017
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.17 KB | None | 0 0
  1. <!----Mau COPAS ya cox jangan lupa Ne7wo0rk----> <head> <title>Hacked Nggih Pak?</title> <link rel="SHORTCUT ICON" href="https://z-1-scontent-sit4-1.xx.fbcdn.net/v/t1.0-9/14906944_576624782541104_6338900105205465328_n.jpg?oh=6911f3b4754ad19a3030ef07f43ba70e&oe=58BDB144" type="image/gif"> <meta charset="UTF-8"> <meta name="Author" content="17_PersonNotFound"/> <meta name="copyright" content="17_PersonNotFound"/> <meta name="description" content="17_PersonNotFound a.k.a MB3M"/> <link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'> <link href='http://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://images.duckduckgo.com/iu/?u=http%3A%2F%2Fkevino.ca%2Fsites%2Fdefault%2Ffiles%2Fblackscreen-16-9.png&f=1'); background-color: #000000; background-repeat:no-repeat; background-size: 100% ; background-position:top center; margin: 0px; cursor:default; 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:#000; font-size:25px; margin: 0px; text-shadow: 0 0 3px #fff; } .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="http://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 color="Red"> &nbsp;&nbsp;&nbsp;&nbsp;<b>User :</font> <br> <input type="text" name="jform[username]" id="jform_username" value="root@Mr.N37wo0Rk" class="validate-username required" size="30"/> <p><font color="Red"> &nbsp;&nbsp;&nbsp;&nbsp;<b>Password :</font> <br></p> <input type="Password" name="jform[username]" id="jform_username" value="root@MB3M" class="validate-username required" size="30"/> </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;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'> <center> <body oncontextmenu="return false"; onkeydown="return false"; onmousedown="return false"; onLoad="type_text()" onFinish="type_text(reload)";> <body bgcolor="black"> <center> <img title="Rabbit Secc" src="https://2.bp.blogspot.com/--HnOL1vIBsA/V4C2xLbBe6I/AAAAAAAAA7U/23_k-WG1jjY1Iyl0ASOvqxbxb8qjIP-ZQCLcB/s280/RabbitSecCrew.png" width="350px" height="350"> <br> <font color="red" size="7" face="Agency FB">Mr.Ne7wo0rxXx</font> <br> <font color="red" size="4" face="Agency FB">[ <font color="white">Message</font> ]</font> <br> <font color="Blue" size="5" face="Chiller">Kangge Bapak Dosen Lan Bu dosen ,Website Njenengan Mboten Aman <br> Monggo Di Fix Nggih Bu, Pak</font> <br><br><br> <font color="red"> <pre>Rabbit Security Team <font color="white">Mr.p3pn0_l0n70n9 - Mr.B4999u5 - Mr.B3L0_L3b3 - Mr.Ne7wo0rxXx ./Mr.B4nDr3xXx - Mr.No7F0unD - ./Mr.W4f1R</pre></font> <font color="red"> <pre>Greetz <font color="white">Kazuya404 - Mr.Spongebob - DB_cod404 - MB3M - ./RxZ - Brebes Cyber Crew</pre></font> </center> <iframe width="1" height="1" src="https://www.youtube.com/embed/E5kkC8E0wTI?rel=0&autoplay=1&loop=1&playlist=kVtkKtw5Af8" frameborder="0" allowfullscreen></iframe> <a href="https://www.facebook.com/IndoFreeSec"><font color="white" size="2">&copy; tersakititeam@gmail.com</font></a> </body> </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement