wheakory has asked for the wisdom of the Perl Monks concerning the following question:
I have a C wrapper script that's setuid root that calls a perl script I need to allow several users to run this script as setuid root. Within the perl script I receive this error.
Insecure Dependency in `` while running with -T switch at /opt/bin/reset_primehours.line 50Which is a system grep command to this path directory /var/admin/bin" line 50 <STDIN> chunk 1.
I am basically greping a user out of this file.
I can't go any farther in the perl script after the Insecure Dependency message pops up. I tried it without the -T switch set and it basically comes up with the same error message.
Any work around or solution. Heres the code it stops on:
$is_user_there = `grep ^$username= /var/admin/bin/primemaster_tmp`;Edited my mirod: added tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Insecure Dependency Message
by Desdinova (Friar) on Mar 07, 2001 at 04:06 UTC | |
by wheakory (Initiate) on Mar 07, 2001 at 04:40 UTC |