in reply to Re: running an executable from a cgi script
in thread running an executable from a cgi script
Insecure CGI example: print "Enter a command to execute:" my $command = <STDIN>; system($command); # BAD! User enters 'rm -fR *' !!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: running an executable from a cgi script
by Angharad (Pilgrim) on Feb 09, 2006 at 16:48 UTC | |
by swkronenfeld (Hermit) on Feb 09, 2006 at 16:58 UTC | |
by Angharad (Pilgrim) on Feb 09, 2006 at 17:05 UTC |