Re: [Patch] for problem with shellwords.pl
authorCurtis Poe <cp@onsitetech.com>
Tue, 21 May 2002 11:17:40 +0000 (04:17 -0700)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 21 May 2002 22:59:58 +0000 (22:59 +0000)
From: "Curtis Poe" <cp@onsitetech.com>
Date: Tue, 21 May 2002 11:17:40 -0700
Message-ID: <015c01c200f3$cb691670$1a01a8c0@ot.onsitetech.com>

Subject: [Patch] for security problem with Text::ParseWords
From: "Curtis Poe" <cp@onsitetech.com>
Date: Tue, 21 May 2002 15:10:18 -0700
Message-ID: <022f01c20114$4b3c4550$1a01a8c0@ot.onsitetech.com>

p4raw-id: //depot/perl@16727

lib/Text/ParseWords.pm
lib/shellwords.pl

index e370f6f..6949c45 100644 (file)
@@ -50,6 +50,7 @@ sub nested_quotewords {
 sub parse_line {
        # We will be testing undef strings
        no warnings;
+       use re 'taint'; # if it's tainted, leave it as such
 
     my($delimiter, $keep, $line) = @_;
     my($quote, $quoted, $unquoted, $delim, $word, @pieces);
index 1c45a5a..ca7dc7e 100644 (file)
@@ -17,6 +17,7 @@ sub shellwords {
     while ($_ ne '') {
        $field = '';
        for (;;) {
+           use re 'taint'; # leave strings tainted
            if (s/^"(([^"\\]|\\.)*)"//) {
                ($snippet = $1) =~ s#\\(.)#$1#g;
            }