Parameter Sanitizing

2005-04-22 Thread Roger Kunkel
Title: Message Hello,   I'm interested in using the Perl taint mode or sanitizing input parameters in some systematic way. Can anyone offer some pointers on effective ways to do this in Embperl?   Thanks, rk.  

RE: make test in Embperl-2.0rc3

2005-04-22 Thread Gerald Richter
Hi, > > I am trying to install Embperl-2.0rc3, "make test" shows a > few errors when testing mod_perl mode > Try make test TESTARGS="-i" If the only errors you get are about "too few errormessages" then it's safe to use Embperl, it's only a matter of slightly different error message of dif

RE: Embperl & CGI

2005-04-22 Thread Gerald Richter
> > Another question: can I call an ordinary CGI script from > within an embperl page, and send it the parameters it needs? > Of course, I can 'require' it from within [- -] tags, but > then the CGI parameters won't work right. > If you use Apache 2, you can include a the CGI as subrequest by

RE: Execute question

2005-04-22 Thread Gerald Richter
Hi, If you are using Embperl::Object you can also take adavance of the application object, which allow to modify the request prior to any page is executed. The file eg/web/epwebapp.pl shows an example (see init method) Gerald