View Single Post
Old 05-10-2002, 07:09 PM  
nuclei
old school fart
 
Industry Role:
Join Date: May 2001
Location: Florida
Posts: 1,015
/me looks around and whistles innocently


#!/usr/bin/perl

#stupidly simple bot

$url_to_fetch = "http://some_domain.com";
$how_many_times = "1000";

# rewquires the LWP::Simple perl module
use LWP::Simple;

for(1..$how_many_times) {
get($url_to_fetch);
}
nuclei is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote