| | handwaving of HTML here... |
Type in the address you want to look up
| ####
#
# Stuff left out....
my $hostname=$cgi->param('host_to_search_rq');
system("nslookup $hostname"); #BAD!!! BAD!!! BAD!!!
#
#
####
|
| Much handwaving again...
|
if (! $cgi->param('command_rq') ) {
print $cgi->p("input a command: ",
$cgi->text(-name=>"command_rq") );
} else {
# OH MY GOD!!! DON'T DO THIS!
open PIPE,$cgi->parma('command_rq') . "|"
or die $!;
my @results =
print $cgi->pre(@results);
}