All About Anime, Template, And Tricks

Subscribe me

Script untuk deface web

saya kasih ya script untuk deface web


<html><head>
<script language=JAVASCRIPT> var message="--<{ART OF DEFACING}>--"; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") </script>
<title>Hacked By Vnine</title>
<!-- untuk salju -->
<SCRIPT type="text/javascript">

// Set the number of snowflakes (more than 30 - 40 not recommended)
var snowmax=35

// Set the colors for the snow. Add as many colors as you like
var snowcolor=new Array("#AAAACC","#DDDDFF","#CCCCDD","#F3F3F3","#F0FFFF")

// Set the fonts, that create the snowflakes. Add as many fonts as you like
var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS")


// Set the letter that creates your snowflake (recommended: * )
var snowletter="*"

// Set the speed of sinking (recommended values range from 0.3 to 2)
var sinkspeed=0.6

// Set the maximum-size of your snowflakes
var snowmaxsize=22

// Set the minimal-size of your snowflakes
var snowminsize=8

// Set the snowing-zone
// Set 1 for all-over-snowing, set 2 for left-side-snowing
// Set 3 for center-snowing, set 4 for right-side-snowing
var snowingzone=1

  /*
   //   * NO CONFIGURATION BELOW HERE *
*/

// Do not edit below this line
var snow=new Array()
var marginbottom
var marginright
var timer
var i_snow=0
var x_mv=new Array();
var crds=new Array();
var lftrght=new Array();
var browserinfos=navigator.userAgent
var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
var ns6=document.getElementById&&!document.all
var opera=browserinfos.match(/Opera/)
var browserok=ie5||ns6||opera

function randommaker(range) {
  rand=Math.floor(range*Math.random())
    return rand
}

function initsnow() {
  if (ie5 || opera) {
    marginbottom = document.body.clientHeight
    marginright = document.body.clientWidth
  }
  else if (ns6) {
    marginbottom = window.innerHeight
    marginright = window.innerWidth
  }
  var snowsizerange=snowmaxsize-snowminsize
  for (i=0;i<=snowmax;i++) {
    crds[i] = 0;
      lftrght[i] = Math.random()*15;
      x_mv[i] = 0.03 + Math.random()/10;
    snow[i]=document.getElementById("s"+i)
    snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
    snow[i].size=randommaker(snowsizerange)+snowminsize
    snow[i].style.fontSize=snow[i].size
    snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
    snow[i].sink=sinkspeed*snow[i].size/5
    if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
    if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
    if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
    if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
    snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
    snow[i].style.left=snow[i].posx
    snow[i].style.top=snow[i].posy
  }
  movesnow()
}

function movesnow() {
  for (i=0;i<=snowmax;i++) {
    crds[i] += x_mv[i];
    snow[i].posy+=snow[i].sink
    snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]);
    snow[i].style.top=snow[i].posy

    if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
      if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
      if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
      if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
      if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
      snow[i].posy=0
    }
  }
  var timer=setTimeout("movesnow()",50)
}

for (i=0;i<=snowmax;i++) {
  document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
}
if (browserok) {
  window.onload=initsnow
}
</SCRIPT>
<!-- untuk animasi cursor -->
<script>
//mouse
//Circling text trail- Tim Tilton
//Website: http://www.tempermedia.com/
//Visit http://www.dynamicdrive.com for this script and more
function cursor_text_circle(){
// your message here
var msg='VNINE WAS HERE'.split('').reverse().join('');

var font='verdana,arial';
var size=3; // up to seven
var color='yellow';

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 for just plain rotation w/out drag
var speed=.1;

// This is the rotation speed, set it negative if you want
// it to spin clockwise
var rotation=-.1;

// Alter no variables past here!, unless you are good
//---------------------------------------------------


var ns=(document.layers);
var ie=(document.all);
var dom=document.getElementById;
msg=msg.split('');
var n=msg.length;
var a=size*13;
var currStep=0;
var ymouse=0;
var xmouse=0;
var props="<font face="+font+" size="+size+" color="+color+">";

if (ie)
window.pageYOffset=0

// writes the message
if (ns){
for (i=0; i < n; i++)
document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg[i]+'</font></center></layer>');
}
else if (ie||dom){
document.write('<div id="outer" style="position:absolute;top:0px;left:0px;z-index:30000;"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="iemsg'+(dom&&!ie? i:'')+'" style="position:absolute;top:0px;left:0;height:'+a+'px;width:'+a+'px;text-align:center;font-weight:normal;cursor:default">'+props+msg[i]+'</font></div>');
document.write('</div></div>');
}
(ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){
ymouse = (ns||(dom&&!ie))?evnt.pageY+20-(window.pageYOffset):event.y; // y-position
xmouse = (ns||(dom&&!ie))?evnt.pageX+20:event.x-20; // x-position
}

if (ns||ie||dom)
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
var y=new Array();
var x=new Array();
var Y=new Array();
var X=new Array();
for (i=0; i < n; i++){
y[i]=0;
x[i]=0;
Y[i]=0;
X[i]=0;
}

var iecompattest=function(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
}

var makecircle=function(){ // rotation properties
if (ie) outer.style.top=iecompattest().scrollTop+'px';
currStep-=rotation;
for (i=0; i < n; i++){ // makes the circle
var d=(ns)?document.layers['nsmsg'+i]:ie? iemsg[i].style:document.getElementById('iemsg'+i).style;
d.top=y[i]+a*Math.sin((currStep+i*1)/3.8)+window.pageYOffset-15+(ie||dom? 'px' : '');
d.left=x[i]+a*Math.cos((currStep+i*1)/3.8)*2+(ie||dom? 'px' : ''); // remove *2 for just a plain circle, not oval
}
}

var drag=function(){ // makes the resistance
y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
for (var i=1; i < n; i++){
y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

}
makecircle();
// not rotation speed, leave at zero
setTimeout(function(){drag();},10);
}
if (ns||ie||dom)
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", drag, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", drag );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
drag();
};
}
else
window.onload = drag;
}

}
cursor_text_circle();

</script>
<!-- batas script animasi cursor -->
<link rel="SHORTCUT ICON" href="http://animations.fg-a.com/indonesC.gif"><script language="JavaScript">function tb5_makeArray(n){ this.length = n; return this.length;
}
tb5_messages = new tb5_makeArray(2);
tb5_messages[0] = "hacked by Vnine";
tb5_messages[1] = "Hacked";
tb5_rptType = 'infinite';
tb5_rptNbr = 100;
tb5_speed = 100;
tb5_delay = 100;
var tb5_counter=1;
var tb5_currMsg=0;
var tb5_stsmsg="";
function tb5_shuffle(arr){
var k;
for (i=0; i<arr.length; i++){ k = Math.round(Math.random() * (arr.length - i - 2)) + i; temp = arr[i];arr[i]=arr[k];arr[k]=temp;
}
return arr;
}
tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "/";
}
tb5_arr = tb5_shuffle(tb5_arr);
function tb5_init(n){
var k;
if (n == tb5_arr.length){ if (tb5_currMsg == tb5_messages.length-1){ if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){ clearTimeout(tb5_timerID); return; } tb5_counter++; tb5_currMsg=0; } else{ tb5_currMsg++; } n=0; tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length); tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length); for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = ""; } tb5_arr = tb5_shuffle(tb5_arr); tb5_sp=tb5_delay;
}
else{ tb5_sp=tb5_speed; k = tb5_arr[n]; tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k); tb5_stsmsg = ""; for (var i=0; i<tb5_sts.length; i++) tb5_stsmsg += tb5_sts[i]; document.title = tb5_stsmsg; n++; } tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
}
function tb5_randomizetitle(){ tb5_init(0);
}
tb5_randomizetitle();

</script>

</head><body style="cursor: no-drop;" return="" false;'="" onmousedown="return false;" bgcolor="black">

<onload=type_text() onclick='alert(" NORTH TORAJA HACKER COMMUNITY ")'>  

<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" ? 90 : 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 = "";
//  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.
  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>
<style type="text/css">.style2{font-family:"Cooper Black";font-size:x-large;text-shadow:red 0px 0px 4px;}.style3{color:#FF0000;text-shadow:red 0px 0px 4px;font-size:14pt;font-family:"Old English Text MT";}.style5{color:#FF0000;text-shadow:red 0px 0px 4px;}.style6{color:#008000;font-size:11pt;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;text-shadow:red 0px 0px 4px;}.style7{font-size:13pt;text-shadow:red 0px 0px 4px;}.style8{color:#008000;text-shadow:red 0px 0px 4px;}.style9{font-family:"Comic Sans MS";text-shadow:red 0px 0px 4px;}.style10{font-size:11pt;text-shadow:red 0px 0px 4px;}.style11{font-family:"Modern No. 20";font-size:14pt;text-shadow:red 0px 0px 4px;}.style12{color:#000000;text-shadow:red 0px 0px 4px;}.style13{font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;text-shadow:red 0px 0px 4px;}.style14{font-size:13pt;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;text-shadow:red 0px 0px 4px;}.style15{color:#008000;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;text-shadow:red 0px 0px 4px;}.style16{font-size:11pt;font-family:"MV Boli";color:#FF0000;text-shadow:red 0px 0px 4px;}.style17{text-decoration:none;text-shadow:red 0px 0px 4px;}.style18{color:#000000;}.style19{text-decoration:none;}.style20{color:#008000;font-size:13pt;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;}.style21{color:#FF0000;}.style22{color:#000000;font-size:xx-large;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;}.style24{color:#000000;background-color:#FFFFFF;}.style25{font-size:xx-large;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;}.style26{color:#FF7F00;font-size:xx-large;font-family:"Arial Rounded MT Bold",forte,"comic sans ms",chiller;}</style><center><p class="style5" align="center">
 <font color="#ffffff"></font></p><div id="kontol_ngaceng"><font color="#ffffff">
<pre><p class="style5" align="center"><font face="Courier New" size="2"><font color="#00FF00"><b>                                                      
<center>+---------------------------------------------<font color="#FF0000" size="5">VNINEHACKAHOLIC TEAM</font>---------------------------------------------+</center>
<center><h1><blink>Hacked By Vnine --- [Vnine Was Here]</blink></h1></p></center>
<center><h2> VnineHacker Team – To All VnineHacker Family</h2></center>
<center><p  onmouseover="MM_effectShake(this)">Vnine Underground Team</p></center>
<center><h3><marquee behavior=alternate width="50%"  direction="left" ><font face="Tahoma" color="#0000FF" size="2"> Dunia penuh ceria dan tawa, Memang sulit Tapi Bisa</h3></marquee></center>   
</b></font><b>
<font face="Courier New" size="2"><font face="Courier New" size="5"><font color="#00FF00"></font></font></font></b><font face="Courier New" size="2"><font face="Courier New" size="5"><font face="Courier New" size="3"><font color="#00FF00"></font>
<font face="Courier New" size="3"><font color="#00FF00"><i></i></font></font></font></font></font></font></font></p><font face="Courier New" size="2"><font face="Courier New" size="2"><font face="Courier New" size="5"><font face="Courier New" size="3"><font face="Courier New" size="2"><font face="Courier New" size="3">
<center><font color="#00FF00"><b>                                                      
<center>+-------------------------------------<font color="#FF0000" size="5">VNINEHACKAHOLIC TEAM</font>-------------------------------------+</center></font></font></font></font>
</font></font></pre>
</font> </div><font color="#00FF00"><font face="Courier New" size="2"><font face="Courier New" size="2"><font face="Courier New" size="5"><font face="Courier New" size="3"><font face="Courier New" size="2"><font face="Courier New" size="3">
<script type="text/javascript">
new TypingText(document.getElementById("kontol_ngaceng"), 30, function(i){ var ar = new Array("", ""); return " " + ar[i.length % ar.length]; });
TypingText.runAll();
</script>
<CENTER>
<SCRIPT>
farbbibliothek = new Array();
farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200");
farbbibliothek[1] = new Array("#FF0000","#FF1100","#FF2200");
farbbibliothek[2] = new Array("#FF0000","#FF1100","#FF2200");
farbbibliothek[3] = new Array("#FF0000","#FF1100","#FF2200");
farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
farbbibliothek[6] = new Array("#0000FF","#FFFF00");
farben = farbbibliothek[4];
function farbschrift()
{
for(var i=0 ; i<Buchstabe.length; i++)
{
document.all["a"+i].style.color=farben[i];
}
farbverlauf();
}
function string2array(text)
{
Buchstabe = new Array();
while(farben.length<text.length)
{
farben = farben.concat(farben);
}
k=0;
while(k<=text.length)
{
Buchstabe[k] = text.charAt(k);
k++;
}
}
function divserzeugen()
{
for(var i=0 ; i<Buchstabe.length; i++)
{















document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");















}















farbschrift();















}















var a=1;















function farbverlauf()















{















for(var i=0 ; i<farben.length; i++)















{















farben[i-1]=farben[i];















}















farben[farben.length-1]=farben[-1];















setTimeout("farbschrift()",30);















}















// Zu Demonstrationszwecken*****************















var farbsatz=1;















function farbtauscher()















{















farben = farbbibliothek[farbsatz];















while(farben.length<text.length)















{















farben = farben.concat(farben);















}















farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));

}
setInterval("farbtauscher()",5000);
text= "Deface By VnineHacker Team – To All VnineHacker Famzy "; //h

string2array(text);


divserzeugen();



//document.write(text);


            </SCRIPT>
   <BR>
  <font face="Tahoma" color="#ff0000" size="2">Thanks To :</font><marquee width="50%" scrolldelay="20" scrollamount="2" direction="left" behavior="scroll"><font face="Tahoma" color="#FFFF66" size="2">| Cruz3N | Ry4n | Mizuho_Aikaw4 | EaGle_Cyber
 | P0Liz |Blu3sky | Aj0uL3 | Om Ari | Orp4marz | Freakin_Newbie | EDC DEFACE TEAM | Y3Y3T_Cod3z
  </font></marquee><br>

<center>
<center>


<center>

</center></center></center></font></font></font></font></font></font></font></center></center></body></html>
 
jika sudah copy code ini lalu copas di notepad simpang menggunakan Ctrl+S jadikan all file lalu save jadi .html 

Penulis: Anonim

Artikel Script untuk deface web, diterbitkan oleh Anonim pada hari Jumat, 22 Februari 2013. Semoga artikel ini dapat menambah wawasan Anda. Anonim adalah Seorang Manusia yang selalu ingin menjadi lebih baik ,Karena Bila Anda berpikir Anda bisa,maka Anda benar. Bila Anda berpikir Anda tidak bisa, Anda pun benar… karena itu ketika seseorang berpikir tidak bisa, maka sesungguhnya dia telah membuang kesempatan untuk menjadi bisa

Posting Komentar - Back to Content

-Jangan SPAM link yang bukan blog anda
-Jangan Live Link
-Jangan Berkomentar Kasar
-No SARA
-No Rasis dll

Bagi yang tidak punya Account Google dll anda dapat berkomentar menggunakan "Anonymous/Anonim"

THANKS :)

Salam IDL

Alexa

Recent Comment

Burung twitter

IP

Yuk menyumbang

tuker link yuk!!!

 
Terima Kasih Atas Kunjungan Anda. Gunakan Google Chrome Atau Mozila Fire Fox Terbaru Untuk Melihat Tampilan Sempurna Blog Ini