Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
90 lines (82 sloc)
3.15 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <HTML> | |
| <HEAD> | |
| <title> | |
| Hacked for Christmas | |
| </title> | |
| <script language="JavaScript"> | |
| <!-- | |
| var ScrollerID = 0, | |
| index = 0, | |
| WaitStates = 100; | |
| var DisplaySize = ((navigator.appName == "Netscape") | |
| && (navigator.appVersion.substring(0, 3) == "3.0")) ? 105 : 75; | |
| function ScrollMarquee( display ) { | |
| OutputMarquee( display, display.defaultValue, | |
| index ); | |
| index++; | |
| if( index >= display.defaultValue.length ) { | |
| index = 0; | |
| } | |
| clearTimeout( ScrollerID ); | |
| ScrollerID = setTimeout( "ScrollMarquee( | |
| document.marquee.display )", WaitStates ); | |
| } | |
| function OutputMarquee( MarqueeBox, MarqueeText, | |
| MarqueePosition ) { | |
| var message = MarqueeText.substring( | |
| MarqueePosition, MarqueeText.length ); | |
| while( message.length < DisplaySize ) { | |
| message += " . . . . . "; | |
| message += MarqueeText; | |
| } | |
| MarqueeBox.value = message.substring( 0, | |
| DisplaySize ); | |
| } | |
| // --> | |
| </script> | |
| </HEAD> | |
| <body bgColor=#AA0000 onLoad="ScrollerID = setTimeout( 'ScrollMarquee( | |
| document.marquee.display )', WaitStates )"> | |
| <CENTER> | |
| <A HREF="http://www.casema.net/~gin/index.html"> | |
| <IMG SRC="http://www.casema.net/~gin/phreaknl.gif" WIDTH="468" | |
| HEIGHT="60" ALT="#Phreak.nl" BORDER="0"> | |
| </A> | |
| </CENTER> | |
| <TABLE align="center" border="0" height="60" width="468"> | |
| <TBODY> | |
| <tr bgColor=#006600> | |
| <td height="75"> | |
| <font color=#004400 face="Arial" size="4" allign="top"> | |
| <center> | |
| <b> | |
| We wish you a Phearfull Y2K | |
| </b> | |
| </center> | |
| </font> | |
| </td> | |
| </tr> | |
| </TBODY> | |
| </table> | |
| <form name="marquee"> | |
| <center> | |
| <table border=0 cellspacing=0 cellpadding=1> | |
| <td align=center valign=middle> | |
| <input type=text name="display" size=64 value="Special millenium | |
| greets go out to... Nikkitaal Ester bivak pudding drgenius scrippie gerrie | |
| sync- dvorak pippitaal nexu mitsai dagger02 stealth sibeling aus flyah | |
| panevino mrfloat and all visitors of #hit2000 and #phreak.nl on ircnet we | |
| like to wish the best for all people who are having the same hobbies, but | |
| don't make it political, because most goverments are going to see you, an | |
| other people as terrorist, and that will result in a worser law on | |
| computer security. Security by obsecurity -like higher punishment- isn't | |
| the solution, knowledge is the solution. You all enriched my live, irl and | |
| online. Thnx, Someone whois not member of phreak.nl, but we are all | |
| related... so what the fuck.. the Dutch hack scene rulez.... Hackersnew | |
| has to open their eyes for the real issues in the world" | |
| onSubmit="ScrollMarquee( document.marquee.display )"></td></table> | |
| </center> | |
| </form> | |
| </BODY> | |
| </HTML> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |