in reply to Insecure Dependency Message

Form the tiny snippet you put i can oly guess that the value for $username comes from outside the script and you are not untainting it before passing it to the shell. As for the error showing up without the -T, IIRC perl automaticlly turns on taint mode when the script is suid. DO a search on perlsec for more info

Replies are listed 'Best First'.
Re: Re: Insecure Dependency Message
by wheakory (Initiate) on Mar 07, 2001 at 04:40 UTC
    I already fixed the problem. I forgot to untaint the value outside the script, exactly the information you gave above. Thank you for your reponse though.