in reply to Re^5: Perl needs Zend (mod_perl vs. fastcgi)
in thread Perl needs Zend
With FastCGI, perl and the FastCGI child process dies. There is no meaningful difference between that and an apache/mod_perl process dying. In both cases, the current request is ruined, another process is spawned, and things continue.
With a security problem, you do not "get" apache if you compromise a mod_perl script. You have no access to anything else in the server but your current process, and certainly no access to the parent process. What matters is what you can do to the system itself, which is determined by what user you run as, and this is the same for FastCGI.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^7: Perl needs Zend (mod_perl vs. fastcgi)
by shmem (Chancellor) on Oct 26, 2006 at 12:22 UTC | |
by perrin (Chancellor) on Oct 26, 2006 at 19:28 UTC |