in reply to Apache 2 / mod_perl exploit
My opinion on this is, that mod_perl 1 shouldn't be used in a multi-user setup anyway due to the problem of a shared interpreter. Theoretically, Apache 2 promised a way around the problem of shared interpreter(s), but seemingly, there are other problems ...
I am aware of only two "safe" solutions for doing mod_perl hosting for multiple servers on one machine:
Other compartementizing setups (and/or links to them) are welcome!
perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Apache 2 / mod_perl exploit
by Anonymous Monk on Jan 22, 2004 at 11:59 UTC |