
09-08-2009, 10:06 AM
|
|
Member
|
|
Join Date: Dec 2008
Posts: 13
|
|
Quote:
Originally Posted by mistwang
I think that you cannot get what you want from any web server. CGI will work like that, you have to limit the access with file system permission if you want.
If Perl internal does not limit exec() and system(), nobody can.
|
Lighttpd does allow to map extension based interpreter:
$HTTP["url"] =~ "/cgi-bin/" {
cgi.assign = ( ".pl" => "/usr/bin/perl" )
}
|