Christian Kasper wrote:

> I call a perl program from a script with s bit set on user and group.
> The perl interpreter told me, that my require <"xxx.pl";>statement is
> insecure. I know, that the s-bit switch on the -T (tainting) option.
>
> How can i solve this problem ??

Try:

  require "xxx.pl";

You may have to add something like this:

  use lib "/path/to/your/file";

before require.

<*> is used for file globbing (that's why it's insecure to require) and
<"xxx.pl";> will return '"xxx.pl";' string (with doublequotes and
semicolon) so perl wouldn't find what you want anyway.

- RaFaL Pocztarski, [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to