<!-- -- Uploaded on : https://haxor.my.id/open/FaizWhangsaf.html -- Official Web : https://prinsh.com -- script-deface-generator.prinsh.com --> <html> <head> <script> alert("Touched By Faiz?") alert("don't mess around on this website")</script> </head> <body onmousedown="return false" onselectstart="return false"> <script language="JavaScript" type="text/javascript"> <!-- function popupMsg(jaring was here) { alert(jaring was here); } //--> </script> <title>Faiz Was Here</title> <meta name="Description" content="tiada yang istimewa selain hidup:)"> <meta property="og:image" content="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSRMqkMiQ-jHe15uvAUHmrtrHV2xrwCcGJywhlheCVihrS_pGJ6Wg" alt="53430105-557504214770012-2414548526572814332-n" "=""> <link href="https://fonts.googleapis.com/css?family=Finger+Paint|Frijole|Sue+Ellen+Francisco" rel="stylesheet"> <style> body{ background-color:#000000; background-image:url(""); font-family: 'Sue Ellen Francisco', cursive; color: red; background-attachment:fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #slogan { text-align: center; font-size: 36px; color: #fff; font-family: 'Frijole', cursive; } #slogan span { color: #cb0000} #slogan span.selected { background: #09f; color: #fff; } .ahgcrewstyle { color: #F00; } .ahg { color: #0F0; } #message font strong { font-family: Tahoma, Geneva, sans-serif; font-size: 50px; } .gre { color: #9F3; font-size: 36px; } #message font { text-align:center; font-family: 'Finger Paint', cursive; font-size: 23px; } marquee{ position: fixed; width: 100%; bottom: 0px; width: 100%; bottom: 0px; font-family: 'Finger Paint', cursive; color: white; font-size: 15px; left: 0px; border-top: 1px solid #fff; padding: 7px; } </style> <center> <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> <center> <div id="slogan" data-text="HACKED BY FAIZ XPLOIT"> HACKED BY FAIZ <span>Xploit</span> </div> <script> (function($){ $.fn.typer = function(options){ var defaults = $.extend({ search: '', replace: [], speed: 60, delay: 45000, }, options); var bintext = function(length){ var text = ''; for(var $i = 0; $i<=length;$i++) { text = text + Math.floor(Math.random() * 2) } return text; }; this.each(function(){ var $this = $(this); var $text = $this.data('text'); var position = 0; var indexOf = $text.indexOf( defaults.search ); var normal = $text.substr(0, indexOf); var changer = $text.substr(indexOf, $text.length); defaults.replace.push(changer); var interval = setInterval(function(){ var $bintext = ''; if( position == indexOf ) { $bintext = bintext(changer.length-1); $this.html( $text.substr(0, normal.length) ); $this.append('<span>' + $bintext + '</span>') } else if( position > indexOf ) { $bintext = bintext($text.length-1); $this.delay(defaults.speed).find('span').html( changer.substring(0, position - indexOf) + $bintext.substring(position, ($bintext.length)) ); } else if( position < indexOf ) { $bintext = bintext($text.length-1); $this.delay(defaults.speed).html( normal.substring(0, position) + $bintext.substring(position, ($bintext.length)) ); } if( position < $text.length ) { position++; } else { clearInterval(interval); var index = 0; setInterval(function(){ var position = 0; var newText = defaults.replace[index]; var changeInterval = setInterval(function(){ var $bintext = ''; for(var $i = 0; $i<=newText.length-1;$i++) { $bintext = $bintext + Math.floor(Math.random() * 2) } $this.delay(defaults.speed).find('span').html( newText.substring(0, position) + $bintext.substring(position, ($bintext.length)) ); if( position < $text.length ) { position++; } else { clearInterval(changeInterval); } }, defaults.speed); if( index < defaults.replace.length-1 ) { index++; } else { index = 0; } }, defaults.delay) } }, defaults.speed) }); } })(jQuery) $(function(){ $('#slogan').typer({ search: 'JARING', replace: ['JARING', 'JARING', 'JARING','JARING','JARING','JARING','JARING','JARING','JARING','JARING'] }) }) </script> <img src="https://g.top4top.io/p_2983ncadr0.mp4" onmousedown="popupMsg('This image is Copyrighted -- Faiz')"> <p id="message"><font color="white">Change Your Mind for a Better Life!<br></font> <font> saya budak baru belajar ka</font> _</p> <marquee> sorong papan tarik papan... buah keranji dalam perahu.... suruh makan engkau makan..... suruh deface engkau tak mahu ----> angin teluk menyisir pantai...hanyut rumpai di bawah titi...biarlah buruk kain dipakaiÐ’ ...asal pandai mengambil hati </marquee> <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> <script type="text/javascript"> //<![CDATA[ shortcut={all_shortcuts:{},add:function(a,b,c){var d={type:"keydown",propagate:!1,disable_in_input:!1,target:document,keycode:!1};if(c)for(var e in d)"undefined"==typeof c[e]&&(c[e]=d[e]);else c=d;d=c.target,"string"==typeof c.target&&(d=document.getElementById(c.target)),a=a.toLowerCase(),e=function(d){d=d||window.event;if(c.disable_in_input){var e;d.target?e=d.target:d.srcElement&&(e=d.srcElement),3==e.nodeType&&(e=e.parentNode);if("INPUT"==e.tagName||"TEXTAREA"==e.tagName)return}d.keyCode?code=d.keyCode:d.which&&(code=d.which),e=String.fromCharCode(code).toLowerCase(),188==code&&(e=","),190==code&&(e=".");var f=a.split("+"),g=0,h={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+",";":":","'":'"',",":"<",".":">","/":"?","\\":"|"},i={esc:27,escape:27,tab:9,space:32,"return":13,enter:13,backspace:8,scrolllock:145,scroll_lock:145,scroll:145,capslock:20,caps_lock:20,caps:20,numlock:144,num_lock:144,num:144,pause:19,"break":19,insert:45,home:36,"delete":46,end:35,pageup:33,page_up:33,pu:33,pagedown:34,page_down:34,pd:34,left:37,up:38,right:39,down:40,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},j=!1,l=!1,m=!1,n=!1,o=!1,p=!1,q=!1,r=!1;d.ctrlKey&&(n=!0),d.shiftKey&&(l=!0),d.altKey&&(p=!0),d.metaKey&&(r=!0);for(var s=0;k=f[s],s<f.length;s++)"ctrl"==k||"control"==k?(g++,m=!0):"shift"==k?(g++,j=!0):"alt"==k?(g++,o=!0):"meta"==k?(g++,q=!0):1<k.length?i[k]==code&&g++:c.keycode?c.keycode==code&&g++:e==k?g++:h[e]&&d.shiftKey&&(e=h[e],e==k&&g++);if(g==f.length&&n==m&&l==j&&p==o&&r==q&&(b(d),!c.propagate))return d.cancelBubble=!0,d.returnValue=!1,d.stopPropagation&&(d.stopPropagation(),d.preventDefault()),!1},this.all_shortcuts[a]={callback:e,target:d,event:c.type},d.addEventListener?d.addEventListener(c.type,e,!1):d.attachEvent?d.attachEvent("on"+c.type,e):d["on"+c.type]=e},remove:function(a){var a=a.toLowerCase(),b=this.all_shortcuts[a];delete this.all_shortcuts[a];if(b){var a=b.event,c=b.target,b=b.callback;c.detachEvent?c.detachEvent("on"+a,b):c.removeEventListener?c.removeEventListener(a,b,!1):c["on"+a]=!1}}},shortcut.add("Ctrl+U",function(){top.location.href="https://www.youtube.com/"}); //]]> </script> <audio src="https://l.top4top.io/m_2982c46er0.mp4" controls=""></audio> </center> </center> </body> </html>