home *** CD-ROM | disk | FTP | other *** search
- #!/bin/bash
- # ######################################################################
- # WebSideSpoof.sh Written by RSnake (7/17/1998)
- # Come and visit: http://www.webfringe.com !!!
- #
- # Sanitized and made LUSER-friendly by Tattooman (7/19/98)
- #
- # Run with these commands at your shell account prompt:
- #
- # chmod 700 webside_spoof.sh
- # webside_spoof.sh 4000 5
- #
- # Where '4000' is the amount of times you wish to spoof - must not be
- # larger than '999999' and must be a multiple of 4 for most reliable
- # (pretty looking) output. Also '5' is the delay between spoofs.
- # You'll probably want to keep the delay at '1' or above unless you
- # are running this script on a Cray. The load stays below 2 on a 133
- # Linux box with a delay of '1'.
- #
- # Replace the 'url' line with YOUR WebSideStory cgi link:
- # ######################################################################
-
- url=http://w12.hitbox.com/wc3/W123456789.cgi
-
- x=$1
- while [ $x -gt 0 ]
- do
- lynx -dump $url > /dev/null &
- x=$(($x-1))
- echo -n $x ' '
- sleep $2
- done
- echo && echo Done.
-