The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
47 views

showing error Insecure dependency in parameter 3 of DBI::db=HASH(0xa32bd40)->do method call while running with -T switch

i got the error Insecure dependency in parameter 3 of DBI::db=HASH(0xa32bd40)->do method call while running with -T switch while i modified the file show_bug.cgi what is the reason?
0
votes
0answers
25 views

Taint verification of a string

I developed an application that extract the IMEI of the android and stores it in a string.To verify if this string is tainted or not by using eclipse,i used "getTaintString" as following: import ...
1
vote
2answers
52 views

Error reading file in tainted mode

I am a trying to use taint mode. I want to open a file based on user input and open a file to read data. Below is my code #!/usr/bin/perl -w use strict; use warnings; my $name = $ARGV[0]; my $file = ...
1
vote
2answers
51 views

Do I need 'taint' mode for an internal website?

The medium-sized internal-only website that I came in to support has about 1/2 the *.cgi files without 'taint' mode. Do I need 'taint' mode for an internal website?
0
votes
1answer
88 views

perl cgi::param error with single plus sign in Taint mode

I work on a website based on Perl CGI. It's run with Perl -T (Taint mode). I noticed that a text input contains just a plus sign and nothing else ("+") causes CGI::param() to give this error: ...
0
votes
1answer
106 views

What are tainted objects, and when should we untaint them?

When do Ruby objects need to be made tainted and when should we untaint them? How does the concept of tainted object make a Ruby script run in safe mode? Can anyone elaborate on this to make the ...
1
vote
1answer
142 views

splint how to perform taint analysis

How to perform Taint Analysis using Splint? I have installed Splint on my Ubuntu 12.04. Created a small test case as below: #include<stdio.h> #include<string.h> int main(int argc, char ...
3
votes
1answer
114 views

Why does Perl not want to require certain files when running under -T?

I recently noticed that on my system it is not possible to require 'lib/file.pl' when running under -T, but require './lib/file.pl' works. $ perl -wT -e 'require "lib/file.pl";' Can't locate ...
1
vote
4answers
287 views

What is the significance of -T or -w in #!/usr/bin/perl?

I googled about #!/usr/bin/perl, but I could not find any satisfactory answer. I know it’s a pretty basic thing, but still, could explain me what is the significance of #!/usr/bin/perl in Perl? ...
2
votes
1answer
235 views

Increase security by creating un-eval-uatable (“unparsable cruft”) JSON?

we are looking at using the unparseable curft approach to our json as an extra level of security. In looking at the approaches, I've come across google's while(1); and facebook's for(;;); and then ...
3
votes
3answers
198 views

How does Rails taint active record columns by default?

Question about Rails magic: I was playing with IRB and the tainted? method, then I just did the following: >> User.first.attributes.collect { |column, value| [column, value.tainted?] } => ...
0
votes
2answers
398 views

Spring JSON tainting response from JacksonMessageConverter

I have a JacksonMessageConverter in my Spring application for returning JSON response. But before the JSON is returned, I would like to taint the JSON as given in Ajax Security - Preventing JSON ...
2
votes
3answers
252 views

Is there an open source tainting tool? [closed]

is there an open source tainting tool? I am trying to analyze a Java project and it's java source code. Therefore I can see where and which purpose are parameters used for. For instance, is it used in ...
4
votes
4answers
648 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 ...
1
vote
3answers
102 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?
4
votes
2answers
264 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 ...
1
vote
1answer
1k 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; ...
0
votes
2answers
466 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 ...
4
votes
1answer
757 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 ...
6
votes
2answers
796 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?
16
votes
4answers
2k views

Is Perl's taint mode useful?

perl -T Do you use it? Does it help you finding security holes in your Perl scripts?
4
votes
2answers
350 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
3k 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
2answers
438 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, ...