Cara Membuat Script Deface
Kali ini mimin bakal sharing sedikit nih tutorial cara membuat script deface praktis Dan simple.
Sebelumnya kita harus sudah memiliki aplikasi Buat Membuat scriptnya Aplikasi Script Bisa Notepad++,Visual Studio Code,Dll. tapi karena saya disini Memberikan tutorialnya di smartphone android ,jadi kita harus sudah punya aplikasi codingan khusus android seperti DroidEdit Free, anWriter Free, Dll .
Kalian Bisa copas scriptnya ,Dan kalian Bisa mengeditnya .
Sihlakan di edit :') .
<html>
<head>
<title>HACKED BY 4LF45T</title>
<link rel="shortcut icon" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhB8sfmZ8J201i1CSW_DrHlIqB__MHqfQyQS8YAsgNw_zHnlnXqABlGHEoAsUIVHH475waoASVYzakFkySqEEQWkMnUO8briqxiwVGz-sC6mnVKsmh0dFw5Ei-yloddtza9LIqAFtzhBbo/s1600/_MG_0910.jpg">
<meta name="Description" content="a very sad loner">
<meta property="og:image" content="https://g.top4top.io/p_1490mmnht1.jpg" 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>
</head>
<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>
<body>
<center><img src="http://i.imgur.com/6ximq6d.png" width="300px" height="406px"></center>
<div id="slogan" data-text="HACKED BY 4LF45T"></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<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: '4LF45T',
replace: ['4LF45T', '4LF45T', '4LF45T','4LF45T','4LF45T','4LF45T','4LF45T','4LF45T','4LF45T','4LF45T']
})
})
</script>
<p id="message"><font color="white">Change Your Mind for a Better Life!<br/></font>
<font>
Hidup adalah serangkaian perubahan yang alami dan spontan.<br>
Jangan tolak mereka karena itu hanya membuat penyesalan dan duka. Biarkan realita menjadi realita.<br>
Biarkan sesuatu mengalir dengan alami ke manapun mereka suka.<br><br>
GreatZ :</br>
</font></p>
<marquee>5YN15T3R_742 - HADESH - TUYULB0TAK.404 - YUUDAICHIPOI - D34TH!N0T3 - AKATSUKI ATTACKER ID</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>
<iframe src='https://5.top4top.net/m_14440a8e31.mp3' frameborder='0' height='0' width='0'>
</iframe>
</body>
</html>
Simpan file dengan extension .html atau .htm
Nah itu dia bagaimana cara pembuatannya dan cara pengeditannya
Sekian dulu dari tutorial Cara membuat script deface simple.