Simple shell script that runs up the counter of your icq homepage. I guess you could call it a counter exploit. Mainly, demonstrates how an icq newbie writes bourne shell scripts (good if you want to learn shell programming, you're dull if you want it to run up your hits -- but not 1/2 as dull as you would be sitting there hitting the refresh button on your browser:-). Could work with Cygnus Cygwin Bash shell in Windows if you have a win32 port of wget. Works with icq homepage counters. #!/bin/sh # Program: icqhits.sh # Date: 10/16/00 # Author: Jay Daniels <[EMAIL PROTECTED]> # # Description: generate webpage hits! Works with icq homepages. if [ != $1 ]; then echo "Usage: icqhits.sh http://94722357.home.icq.com/index.html" exit 1 fi echo -n "Enter number of hits? (500)"; read num if [ -z $num ]; then num='500' fi count='0' while [ $count != $num ]; do /usr/bin/wget -q -o wout.dat $1 > /dev/null 2>&1 count=`expr $count + 1` echo -n "*" done echo echo finished echo "Now no one will know you are total newbie at ICQ;)" # All done, exit ok. exit 0 # a total waste of time;0) # EOF --- error # wonder what that does? Ever wonder why errno means error in Linux? ---- post: [EMAIL PROTECTED] url: http://theMezz.com/informant forum: http://theMezz.com/bbs subscribe: [EMAIL PROTECTED] unsubscribe: [EMAIL PROTECTED] digest: [EMAIL PROTECTED] notDigest: [EMAIL PROTECTED] ___________________________________________________________ T O P I C A The Email You Want. http://www.topica.com/t/16 Newsletters, Tips and Discussions on Your Favorite Topics
