Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <title> Hacked by Firewal21 </title>
- <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>
- <link rel="icon" type="image/png" href="http://icons.iconarchive.com/icons/succodesign/love-is-in-the-web/72/heart-2-icon.png">
- <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;
- background-image:url(https://i.ytimg.com/vi/dTT8Fygs2pA/maxresdefault.jpg); background-size:cover
- }
- 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;
- }
- #console{
- height: 400px;
- overflow: auto;
- background-color: #ff000000;
- 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 light;
- -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: #ff000000;
- opacity: 0.8;
- }
- #help{
- width: 300px;
- float: right;
- }
- .prefix{
- color: #F8F8FF;
- }
- .keyword{
- color: #F8F8FF;
- }
- .error{
- color: #F8F8FF;
- }
- .spacer{
- clear: both;
- display: block;
- }
- h2{
- font-weight:755px;
- font-size:15px;
- color:#fff;
- text-shadow:
- 0 0 3px #FFFFA0,
- 0 0 5px #FFFF4D,
- 0 0 9px #FFFF41,
- 0 0 20px #FFFF2A,
- 0 0 25px #FFFF2B,
- 0 0 30px #FEFE00,
- 0 0 40px #F7F700;
- }
- </style>
- <script type="text/javascript">
- 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>
- <script language="javascript"src="http://ykubnay.yn.lt/Js/salju/teratai.js"></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>Tested By FirewalL21 <br>ANONYMOUS CYBER TEAM</h1>
- <div id="console"><span class="prefix">
- <h2 id="message">
- <img src="https://scontent.fcgk2-1.fna.fbcdn.net/v/t1.0-9/fr/cp0/e15/q65/15578869_1225384494194641_3544580938851913182_n.jpg?efg=eyJpIjoidCJ9&oh=d9817e42564ffe64890dee409e522deb&oe=58E6BA77" alt="gambar" height="350px"
- align="right"/>
- <font color="red"> Mungkin cinta ini hanya untukmu... <br>
- <font color="red"> Tulus dari dalam hatiku...<br>
- <font color="red"> Mungkin cinta ini telah memilihmu...<br>
- <font color="red"> Ikhlas tak berbatas waktu...<br>
- <font color="red"> ... <br>
- <font color="red"> Ku tulis cinta ini di langit...<br>
- <font color="red"> Untuk dibaca surga dan bumi...<br>
- <font color="red"> Semoga kau kan mengerti...<br>
- <font color="red"> Cinta ini suci tak terbagi...<br>
- <font color="red"> ...<br>
- <font color="red"> Hanya kau yang ada dihatiku...<br>
- <font color="red"> Mengalir dalam darah dinadiku...<br>
- <font color="red"> Merangkai mimpi ditidurku...<br>
- <font color="red"> Menjadi ratu di istana cintaku...<br>
- <font color="red"> Kau kan selalu dihatiku...<br>
- <font color="red"> Hingga batas akhir nafas dihidupku...<br><br>
- <script type="text/javascript">
- new TypingText(document.getElementById("message"), 120, 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="enabled" style="width:786px;"/>
- </div>
- <div class="spacer"></div>
- <embed
- src="https://www.youtube.com/v/OyIy4xMv8gY&autoplay=1&loop=1"
- type="application/x-shockwave-flash" wmode="transparent" height="1"
- width="1">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement