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.
108 lines (57 sloc)
1.76 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</title> | |
| </head> | |
| <!-- FREE KEVEN, AND OH YA HI MOM! --> | |
| <script> | |
| function makearray(n) { | |
| this.length = n; | |
| for(var i = 1; i <= n; i++) | |
| this[i] = 0; | |
| return this; | |
| } | |
| hexa = new makearray(16); | |
| for(var i = 0; i < 10; i++) | |
| hexa[i] = i; | |
| hexa[10]="a"; hexa[11]="b"; hexa[12]="c"; | |
| hexa[13]="d"; hexa[14]="e"; hexa[15]="f"; | |
| function hex(i) { | |
| if (i < 0) | |
| return "00"; | |
| else if (255 < i) | |
| return "ff"; | |
| else | |
| return "" + hexa[Math.floor(i/16)] + hexa[i%16]; | |
| } | |
| function setbgColor(r, g, b) { | |
| var hr = hex(r); var hg = hex(g); var hb = hex(b); | |
| document.bgColor = "#"+hr+hg+hb; | |
| } | |
| function fade(sr, sg, sb, er, eg, eb, step) { | |
| for(var i = 0; i <= step; i++) { | |
| setbgColor( | |
| Math.floor(sr * ((step-i)/step) + er * (i/step)), | |
| Math.floor(sg * ((step-i)/step) + eg * (i/step)), | |
| Math.floor(sb * ((step-i)/step) + eb * (i/step))); | |
| } | |
| } | |
| fade(255,255,255, 0,0,0, 120);fade(255,255,255, 0,0,0, 20);fade(255,255,255, 0,0,0, 20);</script> | |
| <body BGCOLOR="#FFFFFF" onLoad="PlaySound()"> | |
| <!--webbot bot="HTMLMarkup" startspan TAG="XBOT" --></SCRIPT><!--webbot bot="HTMLMarkup" endspan | |
| --> | |
| <script LANGUAGE="JavaScript"> | |
| function PlaySound(){ | |
| window.location = "bowwows.wav" | |
| } | |
| </script> | |
| <p>Hacked By:</p> | |
| <p align="center"><img src="Mud.jpg" width="260" height="189"> </p> | |
| <p align="center"><strong>And The</strong></p> | |
| <p align="center"><img src="ipxmen.jpg" width="280" height="89"> </p> | |
| <center> | |
| <p>Shoutz: Cyber0wl, Nitecrwlr, LoopBack, Embryonic, and Jade Skorpyon,</p> | |
| <p>Also shoutz to all hackers and internet security orgs that made this Possible</p> | |
| <p></a> <a href="bio.htm">What the Hell is BowWowWow.org</a></p> | |
| <p> </p> | |
| </body> | |
| </html> |