in reply to Turning on Taint in mod_perl after compile time or in specific packages only?

No, there is not. There's only one Perl interpreter per process/thread in a persistent environment like mod_perl, and taint is either on or not.

UPDATE: One workaround would be to run multiple mod_perl backends, one with taint on and one with taint off, and send requests to the appropriate one through your front-end proxy.

  • Comment on Re: Turning on Taint in mod_perl after compile time or in specific packages only?