<html--> <meta name="verify-v1" content="WqT6kZySLLYe/gRjkWf1sNcr+RrPRuowoZD31PZAV+Q=" /> </head> <html><head><title>HACKED BY -=[ SICK_HACKER ]=-</title><link REL="SHORTCUT ICON" HREF="http://i612.photobucket.com/albums/tt207/irdhitopan/firefox.png"> </head> <noscript></noscript><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script> /* An object-oriented Typing Text script, to allow for multiple instances. A script that causes any text inside any text element to be "typed out", one letter at a time. Note that any HTML tags will not be included in the typed output, to prevent them from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE v6. Browsers that do not support this script will simply see the text fully displayed from the start, including any HTML tags.
Functions defined: TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function(){return}]): Create a new TypingText object around the given element. Optionally specify a delay between characters of interval milliseconds. cursor allows users to specify some HTML to be appended to the end of the string whilst typing. Optionally, can also be a function which accepts the current text as an argument. This allows the user to create a "dynamic cursor" which changes depending on the latest character or the current length of the string. finishedCallback allows advanced scripters to supply a function to be executed on finishing. The function must accept no arguments.
TypingText.run(): Run the effect.
static TypingText.runAll(): Run all TypingText-enabled objects on the page. */
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" ? 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); // 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>
<style> body { padding:0; margin:0; background-image:url(); background-repeat: repeat; background-position:center; background-color: black; color: #00ff00; font: normal 80% Verdana; margin-top: 0px; margin-left: 0px; padding: 0; margin-right: 0px; } </style><head><noframes><body><!-- --><script type="text/javascript" src="http://staticthumbs.freewebs.com/i.js"></script><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script> <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script> <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script> </body></noframes><body bgcolor="#000000"><center> <img src="http://sickhackerz.webs.com/gambar/warning.gif"> <h1><script language="JavaScript1.2">
var message="<==|| HACKED BY HACKAZER N BANDIT_1995 ||==>" var neonbasecolor="black" var neontextcolor="#00ff00" var neontextcolor2="#00ff00" var flashspeed=100 // speed of flashing in milliseconds var flashingletters=3 // number of letters flashing in neontextcolor var flashingletters2=1 // number of letters flashing in neontextcolor2 (0 to disable) var flashpause=0 // the pause between flash-cycles in milliseconds
///No need to edit below this line/////
var n=0 if (document.all||document.getElementById){ document.write('<font color="'+neonbasecolor+'">') for (m=0;m<message.length;m++) document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>') document.write('</font>') } else document.write(message)
function crossref(number){ var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number) return crossobj }
function neon(){
//Change all letters to base color if (n==0){ for (m=0;m<message.length;m++) crossref(m).style.color=neonbasecolor }
//cycle through and change individual letters to neon color crossref(n).style.color=neontextcolor
if (n>flashingletters-1) crossref(n-flashingletters).style.color=neontextcolor2 if (n>(flashingletters+flashingletters2)-1) crossref(n-flashingletters-flashingletters2).style.color=neonbasecolor
if (n<message.length-1) n++ else{ n=0 clearInterval(flashing) setTimeout("beginneon()",flashpause) return } }
function beginneon(){ if (document.all||document.getElementById) flashing=setInterval("neon()",flashspeed) } beginneon()
</script></h1><br><Br><BR><BR>
<div id="example1"></div> <p id="example2"> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br> <b>..:: SICK_HACKER AND HACKAZER N HARIZ::..</b><br><br> ...::: IM'SORRY :::...<BR><BR>
<b>P R O K L A M A S I <br> Kami bangsa greyhat hacker dengan ini menjatakan kemerdekaan komunitas greyhat indonesia.<br> Hal-hal jang mengenai pemindahan forum d.l.l.<br> di selenggarakan dengan tjara seksama dan dalam tempo jang se singkat-singkatnja.<br>
neraka, hari 17 boelan 8 tahoen '2009<br> Atas nama bangsa grayhat. </b><br><br>
<br><b>~~~~~~~~~~~~~~~~~ AND THANX TO ~~~~~~~~~~~~~~~~~ HARIZ</b><br> ~~~~~~~~~~~~~~~~~ ALL ~~~~~~~~~~~~~~~~~<br> ~~~~~~~~~~~~~~~~~ HECKERIA TEAM ~~~~~~~~~~~~~~~~~<br>
<script type="text/javascript"> <!--// function tb9_makeArray(n){ this.length = n; return this.length; }
tb9_messages = new tb9_makeArray(3); tb9_messages[0] = "-||**HACKED BY**||-"; tb9_messages[1] = " **||HAckazeR||**"; tb9_messages[2] = "||**Sick_HACKERS AND DEBIAN**||"; tb9_rptType = 'infinite'; tb9_rptNbr = 5; tb9_speed = 50; tb9_delay = 2000; var tb9_counter=1; var tb9_currMsg=0; var tb9_timerID = null var tb9_bannerRunning = false var tb9_state = "" tb9_clearState() function tb9_stopBanner() { if (tb9_bannerRunning) clearTimeout(tb9_timerID) tb9_timerRunning = false } function tb9_startBanner() { tb9_stopBanner() tb9_showBanner() } function tb9_clearState() { tb9_state = "" for (var i = 0; i < tb9_messages[tb9_currMsg].length; ++i) { tb9_state += "0" } } function tb9_showBanner() { if (tb9_getString()) { tb9_currMsg++ if (tb9_messages.length <= tb9_currMsg) { if ((tb9_rptType == 'finite') && (tb9_counter==tb9_rptNbr)){ tb9_stopBanner(); return; } tb9_counter++; tb9_currMsg=0; } tb9_clearState() tb9_timerID = setTimeout("tb9_showBanner()", tb9_delay) } else { var tb9_str = "" for (var j = 0; j < tb9_state.length; ++j) { tb9_str += (tb9_state.charAt(j) == "1") ? tb9_messages[tb9_currMsg].charAt(j) : "___" } document.title = tb9_str tb9_timerID = setTimeout("tb9_showBanner()", tb9_speed) } } function tb9_getString() { var full = true for (var j = 0; j < tb9_state.length; ++j) { if (tb9_state.charAt(j) == 0) full = false } if (full) return true while (1) { var num = tb9_getRandom(tb9_messages[tb9_currMsg].length) if (tb9_state.charAt(num) == "0") break } tb9_state = tb9_state.substring(0, num) + "1" + tb9_state.substring(num + 1, tb9_state.length) return false } function tb9_getRandom(max) { var now = new Date() var num = now.getTime() * now.getSeconds() * Math.random() return num % max } tb9_startBanner() // --> </script> <script language="JavaScript"> var numraindrops="150"; var speed="5"; var rainsize="2"; var wind="left"; var genxgallery=""; </script>
<script src="http://www.geocities.com/doubleonehacker@ymail.com/hujan.js"></script>
</center> </p> <script type="text/javascript"> //Define first typing example: new TypingText(document.getElementById("example1")); //Define second typing example (use "slashing" cursor at the end): new TypingText(document.getElementById("example2"), 50, function(i){ var ar = new Array("_"," ","_","_"); return " " + ar[i.length % ar.length]; }); //Type out examples: TypingText.runAll(); </script> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="1" height="1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"> <param name="quality" value="high" /> <param name="src" value="http://www.fileden.com/files/2008/6/28/1979470/indonesia.swf" /><embed type="application/x-shockwave-flash" width="1" height="1" src="http://www.fileden.com/files/2008/6/28/1979470/indonesia.swf" quality="high"></embed> </object> </font></CENTER></html><noembed><xmp>
|