Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
658 views

Is Perl's taint mode useful?

perl -T Do you use it? Does it help you finding security holes in your Perl scripts?
6
votes
2answers
425 views

How do I set the taint mode in a perl script with a '#!/usr/bin/env perl'- shebang?

how do I set the taint mode in a perl script with a #!/usr/bin/env perl shebang?
4
votes
4answers
123 views

How to untaint system call in CGI.pm

I have the following CGI script: #!/usr/bin/perl -T use strict; use warnings; use CGI::Carp qw(fatalsToBrowser); use CGI qw/:standard/; my $query = CGI->new(); my $searchterm = param('name'); my ...
4
votes
2answers
97 views

Finding the source of a perl taint mode error

When running a perl CGI script in taint mode, I get an error of the form... Insecure dependency in some_function while running with -T switch at (eval some_line) line some_other_line. Compilation ...
4
votes
1answer
425 views

taint-mode perl: preserve suid when running external program via system()

I'm trying to add a feature to a legacy script. The script is suid, and uses perl -T (taint mode: man perlsec), for extra security. The feature I need to add is implemented in Python. My problem is ...
3
votes
2answers
180 views

Perl's taint mode in PHP

Just wondering... is there a PHP equivalent to Perl's Taint Mode? I don't think there is, but thought I'd ask.
2
votes
2answers
2k views

What's a good Perl regex to untaint an absolute path?

Well, I tried and failed so, here I am again. I need to match my abs path pattern. /public_html/mystuff/10000001/001/10/01.cnt I am in taint mode etc.. #!/usr/bin/perl -Tw use CGI::Carp ...
1
vote
3answers
80 views

Laundering tainted data quesion?

When I do laundering tainted data with checking whether it has any bad characters are there unicode-properties which will filter the bad characters?
1
vote
1answer
210 views

Insecure $ENV{ENV} while running with -T switch

When I try the last example from perlfaq5: How-do-I-count-the-number-of-lines-in-a-file? I get an error-message. What should I do to get the script working? #!/usr/local/bin/perl -T use warnings; ...
1
vote
2answers
340 views

Why doesn't a pipe open work under Perl's taint mode?

My original script is as follows: my $cmd = "dir"; open (H, "$cmd |"); my @result = <H>; close (H); print STDERR @result,"\n"; This scripts works fine. If I add following line to the script, ...
0
votes
2answers
244 views

How can I invoke /sbin/iptables from a Perl CGI under taint mode?

When I invoke "sudo /sbin/iptables ..." in my Perl CGI scripts, I get the error: Insecure dependency in system while running with -T switch at usr/lib/perl5/vendor_perl/5.8.8/IPC/Run3.pm line 403 I ...