Commit | Line | Data |
1e422769 |
1 | #!./perl -T |
2 | # |
3 | # Taint tests by Tom Phoenix <rootbeer@teleport.com>. |
4 | # |
5 | # I don't claim to know all about tainting. If anyone sees |
9607fc9c |
6 | # tests that I've missed here, please add them. But this is |
1e422769 |
7 | # better than having no tests at all, right? |
8 | # |
9 | |
10 | BEGIN { |
11 | chdir 't' if -d 't'; |
20822f61 |
12 | @INC = '../lib'; |
1e422769 |
13 | } |
14 | |
15 | use strict; |
16 | use Config; |
dc459aad |
17 | use File::Spec::Functions; |
1e422769 |
18 | |
09f04786 |
19 | BEGIN { require './test.pl'; } |
27cc343c |
20 | plan tests => 244; |
7c36658b |
21 | |
22 | |
0ecd3ba2 |
23 | $| = 1; |
24 | |
c9f931b8 |
25 | use vars qw($ipcsysv); # did we manage to load IPC::SysV? |
26 | |
3eeba6fb |
27 | BEGIN { |
28 | if ($^O eq 'VMS' && !defined($Config{d_setenv})) { |
29 | $ENV{PATH} = $ENV{PATH}; |
30 | $ENV{TERM} = $ENV{TERM} ne ''? $ENV{TERM} : 'dummy'; |
31 | } |
be3174d2 |
32 | if ($Config{'extensions'} =~ /\bIPC\/SysV\b/ |
33 | && ($Config{d_shm} || $Config{d_msg})) { |
c9f931b8 |
34 | eval { require IPC::SysV }; |
35 | unless ($@) { |
36 | $ipcsysv++; |
ddc3217d |
37 | IPC::SysV->import(qw(IPC_PRIVATE IPC_RMID IPC_CREAT S_IRWXU IPC_NOWAIT)); |
c9f931b8 |
38 | } |
b9d1c439 |
39 | } |
3eeba6fb |
40 | } |
41 | |
09f04786 |
42 | my $Is_MacOS = $^O eq 'MacOS'; |
43 | my $Is_VMS = $^O eq 'VMS'; |
44 | my $Is_MSWin32 = $^O eq 'MSWin32'; |
45 | my $Is_NetWare = $^O eq 'NetWare'; |
46 | my $Is_Dos = $^O eq 'dos'; |
47 | my $Is_Cygwin = $^O eq 'cygwin'; |
48 | my $Invoke_Perl = $Is_VMS ? 'MCR Sys$Disk:[]Perl.' : |
49 | $Is_MSWin32 ? '.\perl' : |
50 | $Is_MacOS ? ':perl' : |
51 | $Is_NetWare ? 'perl' : |
52 | './perl' ; |
c90c0ff4 |
53 | my @MoreEnv = qw/IFS CDPATH ENV BASH_ENV/; |
7bac28a0 |
54 | |
1e422769 |
55 | if ($Is_VMS) { |
7bac28a0 |
56 | my (%old, $x); |
57 | for $x ('DCL$PATH', @MoreEnv) { |
58 | ($old{$x}) = $ENV{$x} =~ /^(.*)$/ if exists $ENV{$x}; |
59 | } |
1e422769 |
60 | eval <<EndOfCleanup; |
61 | END { |
3eeba6fb |
62 | \$ENV{PATH} = '' if $Config{d_setenv}; |
1e422769 |
63 | warn "# Note: logical name 'PATH' may have been deleted\n"; |
562a7b0c |
64 | \@ENV{keys %old} = values %old; |
1e422769 |
65 | } |
66 | EndOfCleanup |
67 | } |
68 | |
69 | # Sources of taint: |
70 | # The empty tainted value, for tainting strings |
71 | my $TAINT = substr($^X, 0, 0); |
72 | # A tainted zero, useful for tainting numbers |
09f04786 |
73 | my $TAINT0; |
74 | { |
75 | no warnings; |
76 | $TAINT0 = 0 + $TAINT; |
77 | } |
1e422769 |
78 | |
79 | # This taints each argument passed. All must be lvalues. |
80 | # Side effect: It also stringifies them. :-( |
81 | sub taint_these (@) { |
82 | for (@_) { $_ .= $TAINT } |
83 | } |
84 | |
85 | # How to identify taint when you see it |
86 | sub any_tainted (@) { |
87 | not eval { join("",@_), kill 0; 1 }; |
88 | } |
89 | sub tainted ($) { |
90 | any_tainted @_; |
91 | } |
92 | sub all_tainted (@) { |
93 | for (@_) { return 0 unless tainted $_ } |
94 | 1; |
95 | } |
96 | |
09f04786 |
97 | |
98 | sub test ($;$) { |
99 | my($ok, $diag) = @_; |
100 | |
101 | my $curr_test = curr_test(); |
102 | |
103 | if ($ok) { |
104 | print "ok $curr_test\n"; |
1e422769 |
105 | } else { |
09f04786 |
106 | print "not ok $curr_test\n"; |
107 | printf "# Failed test at line %d\n", (caller)[2]; |
1e422769 |
108 | for (split m/^/m, $diag) { |
109 | print "# $_"; |
110 | } |
9607fc9c |
111 | print "\n" unless |
1e422769 |
112 | $diag eq '' |
113 | or substr($diag, -1) eq "\n"; |
114 | } |
09f04786 |
115 | |
116 | next_test(); |
117 | |
118 | return $ok; |
1e422769 |
119 | } |
120 | |
121 | # We need an external program to call. |
dc459aad |
122 | my $ECHO = ($Is_MSWin32 ? ".\\echo$$" : $Is_MacOS ? ":echo$$" : ($Is_NetWare ? "echo$$" : "./echo$$")); |
1e422769 |
123 | END { unlink $ECHO } |
124 | open PROG, "> $ECHO" or die "Can't create $ECHO: $!"; |
125 | print PROG 'print "@ARGV\n"', "\n"; |
126 | close PROG; |
127 | my $echo = "$Invoke_Perl $ECHO"; |
128 | |
dc459aad |
129 | my $TEST = catfile(curdir(), 'TEST'); |
130 | |
1e422769 |
131 | # First, let's make sure that Perl is checking the dangerous |
132 | # environment variables. Maybe they aren't set yet, so we'll |
133 | # taint them ourselves. |
134 | { |
135 | $ENV{'DCL$PATH'} = '' if $Is_VMS; |
136 | |
f68313a1 |
137 | if ($Is_MSWin32 && $Config{ccname} =~ /bcc32/ && ! -f 'cc3250mt.dll') { |
138 | my $bcc_dir; |
139 | foreach my $dir (split /$Config{path_sep}/, $ENV{PATH}) { |
140 | if (-f "$dir/cc3250mt.dll") { |
141 | $bcc_dir = $dir and last; |
142 | } |
143 | } |
144 | if (defined $bcc_dir) { |
145 | require File::Copy; |
146 | File::Copy::copy("$bcc_dir/cc3250mt.dll", '.') or |
147 | die "$0: failed to copy cc3250mt.dll: $!\n"; |
148 | eval q{ |
149 | END { unlink "cc3250mt.dll" } |
150 | }; |
151 | } |
152 | } |
153 | |
7bac28a0 |
154 | $ENV{PATH} = ''; |
c90c0ff4 |
155 | delete @ENV{@MoreEnv}; |
7bac28a0 |
156 | $ENV{TERM} = 'dumb'; |
157 | |
8852b6d2 |
158 | if ($Is_Cygwin && ! -f 'cygwin1.dll') { |
343d3f38 |
159 | system("/usr/bin/cp /usr/bin/cygwin1.dll .") && |
160 | die "$0: failed to cp cygwin1.dll: $!\n"; |
cef9cd04 |
161 | eval q{ |
162 | END { unlink "cygwin1.dll" } |
163 | }; |
164 | } |
165 | |
166 | if ($Is_Cygwin && ! -f 'cygcrypt-0.dll' && -f '/usr/bin/cygcrypt-0.dll') { |
167 | system("/usr/bin/cp /usr/bin/cygcrypt-0.dll .") && |
168 | die "$0: failed to cp cygcrypt-0.dll: $!\n"; |
169 | eval q{ |
170 | END { unlink "cygcrypt-0.dll" } |
171 | }; |
343d3f38 |
172 | } |
173 | |
09f04786 |
174 | test eval { `$echo 1` } eq "1\n"; |
175 | |
176 | SKIP: { |
177 | skip "Environment tainting tests skipped", 4 |
178 | if $Is_MSWin32 || $Is_NetWare || $Is_VMS || $Is_Dos || $Is_MacOS; |
7bac28a0 |
179 | |
7bac28a0 |
180 | my @vars = ('PATH', @MoreEnv); |
181 | while (my $v = $vars[0]) { |
182 | local $ENV{$v} = $TAINT; |
183 | last if eval { `$echo 1` }; |
184 | last unless $@ =~ /^Insecure \$ENV{$v}/; |
185 | shift @vars; |
186 | } |
09f04786 |
187 | test !@vars, "@vars"; |
c90c0ff4 |
188 | |
189 | # tainted $TERM is unsafe only if it contains metachars |
190 | local $ENV{TERM}; |
191 | $ENV{TERM} = 'e=mc2'; |
09f04786 |
192 | test eval { `$echo 1` } eq "1\n"; |
c90c0ff4 |
193 | $ENV{TERM} = 'e=mc2' . $TAINT; |
09f04786 |
194 | test !eval { `$echo 1` }; |
195 | test $@ =~ /^Insecure \$ENV{TERM}/, $@; |
5aabfad6 |
196 | } |
7bac28a0 |
197 | |
9607fc9c |
198 | my $tmp; |
2986a63f |
199 | if ($^O eq 'os2' || $^O eq 'amigaos' || $Is_MSWin32 || $Is_NetWare || $Is_Dos) { |
48c036b1 |
200 | print "# all directories are writeable\n"; |
201 | } |
202 | else { |
9607fc9c |
203 | $tmp = (grep { defined and -d and (stat _)[2] & 2 } |
099f76bb |
204 | qw(sys$scratch /tmp /var/tmp /usr/tmp), |
9607fc9c |
205 | @ENV{qw(TMP TEMP)})[0] |
206 | or print "# can't find world-writeable directory to test PATH\n"; |
207 | } |
208 | |
09f04786 |
209 | SKIP: { |
210 | skip "all directories are writeable", 2 unless $tmp; |
211 | |
7bac28a0 |
212 | local $ENV{PATH} = $tmp; |
09f04786 |
213 | test !eval { `$echo 1` }; |
214 | test $@ =~ /^Insecure directory in \$ENV{PATH}/, $@; |
1e422769 |
215 | } |
216 | |
09f04786 |
217 | SKIP: { |
218 | skip "This is not VMS", 4 unless $Is_VMS; |
219 | |
1e422769 |
220 | $ENV{'DCL$PATH'} = $TAINT; |
09f04786 |
221 | test eval { `$echo 1` } eq ''; |
222 | test $@ =~ /^Insecure \$ENV{DCL\$PATH}/, $@; |
223 | SKIP: { |
224 | skip q[can't find world-writeable directory to test DCL$PATH], 2 |
25fb98c0 |
225 | unless $tmp; |
09f04786 |
226 | |
9607fc9c |
227 | $ENV{'DCL$PATH'} = $tmp; |
09f04786 |
228 | test eval { `$echo 1` } eq ''; |
229 | test $@ =~ /^Insecure directory in \$ENV{DCL\$PATH}/, $@; |
9607fc9c |
230 | } |
1e422769 |
231 | $ENV{'DCL$PATH'} = ''; |
232 | } |
1e422769 |
233 | } |
234 | |
235 | # Let's see that we can taint and untaint as needed. |
236 | { |
237 | my $foo = $TAINT; |
09f04786 |
238 | test tainted $foo; |
9607fc9c |
239 | |
240 | # That was a sanity check. If it failed, stop the insanity! |
241 | die "Taint checks don't seem to be enabled" unless tainted $foo; |
1e422769 |
242 | |
243 | $foo = "foo"; |
09f04786 |
244 | test not tainted $foo; |
1e422769 |
245 | |
246 | taint_these($foo); |
09f04786 |
247 | test tainted $foo; |
1e422769 |
248 | |
249 | my @list = 1..10; |
09f04786 |
250 | test not any_tainted @list; |
1e422769 |
251 | taint_these @list[1,3,5,7,9]; |
09f04786 |
252 | test any_tainted @list; |
253 | test all_tainted @list[1,3,5,7,9]; |
254 | test not any_tainted @list[0,2,4,6,8]; |
1e422769 |
255 | |
256 | ($foo) = $foo =~ /(.+)/; |
09f04786 |
257 | test not tainted $foo; |
1e422769 |
258 | |
259 | $foo = $1 if ('bar' . $TAINT) =~ /(.+)/; |
09f04786 |
260 | test not tainted $foo; |
261 | test $foo eq 'bar'; |
1e422769 |
262 | |
b3eb6a9b |
263 | { |
264 | use re 'taint'; |
265 | |
266 | ($foo) = ('bar' . $TAINT) =~ /(.+)/; |
09f04786 |
267 | test tainted $foo; |
268 | test $foo eq 'bar'; |
b3eb6a9b |
269 | |
270 | $foo = $1 if ('bar' . $TAINT) =~ /(.+)/; |
09f04786 |
271 | test tainted $foo; |
272 | test $foo eq 'bar'; |
b3eb6a9b |
273 | } |
274 | |
275 | $foo = $1 if 'bar' =~ /(.+)$TAINT/; |
09f04786 |
276 | test tainted $foo; |
277 | test $foo eq 'bar'; |
48c036b1 |
278 | |
1e422769 |
279 | my $pi = 4 * atan2(1,1) + $TAINT0; |
09f04786 |
280 | test tainted $pi; |
1e422769 |
281 | |
282 | ($pi) = $pi =~ /(\d+\.\d+)/; |
09f04786 |
283 | test not tainted $pi; |
284 | test sprintf("%.5f", $pi) eq '3.14159'; |
1e422769 |
285 | } |
286 | |
287 | # How about command-line arguments? The problem is that we don't |
288 | # always get some, so we'll run another process with some. |
dc459aad |
289 | SKIP: { |
290 | my $arg = catfile(curdir(), "arg$$"); |
1e422769 |
291 | open PROG, "> $arg" or die "Can't create $arg: $!"; |
292 | print PROG q{ |
293 | eval { join('', @ARGV), kill 0 }; |
294 | exit 0 if $@ =~ /^Insecure dependency/; |
295 | print "# Oops: \$@ was [$@]\n"; |
296 | exit 1; |
297 | }; |
298 | close PROG; |
299 | print `$Invoke_Perl "-T" $arg and some suspect arguments`; |
09f04786 |
300 | test !$?, "Exited with status $?"; |
1e422769 |
301 | unlink $arg; |
302 | } |
303 | |
304 | # Reading from a file should be tainted |
305 | { |
09f04786 |
306 | test open(FILE, $TEST), "Couldn't open '$TEST': $!"; |
1e422769 |
307 | |
308 | my $block; |
309 | sysread(FILE, $block, 100); |
9607fc9c |
310 | my $line = <FILE>; |
1e422769 |
311 | close FILE; |
09f04786 |
312 | test tainted $block; |
313 | test tainted $line; |
1e422769 |
314 | } |
315 | |
c90c0ff4 |
316 | # Globs should be forbidden, except under VMS, |
317 | # which doesn't spawn an external program. |
09f04786 |
318 | SKIP: { |
319 | skip "globs should be forbidden", 2 if 1 or $Is_VMS; |
320 | |
7bac28a0 |
321 | my @globs = eval { <*> }; |
09f04786 |
322 | test @globs == 0 && $@ =~ /^Insecure dependency/; |
1e422769 |
323 | |
7bac28a0 |
324 | @globs = eval { glob '*' }; |
09f04786 |
325 | test @globs == 0 && $@ =~ /^Insecure dependency/; |
1e422769 |
326 | } |
327 | |
328 | # Output of commands should be tainted |
329 | { |
330 | my $foo = `$echo abc`; |
09f04786 |
331 | test tainted $foo; |
1e422769 |
332 | } |
333 | |
334 | # Certain system variables should be tainted |
335 | { |
09f04786 |
336 | test all_tainted $^X, $0; |
1e422769 |
337 | } |
338 | |
339 | # Results of matching should all be untainted |
340 | { |
341 | my $foo = "abcdefghi" . $TAINT; |
09f04786 |
342 | test tainted $foo; |
1e422769 |
343 | |
344 | $foo =~ /def/; |
09f04786 |
345 | test not any_tainted $`, $&, $'; |
1e422769 |
346 | |
347 | $foo =~ /(...)(...)(...)/; |
09f04786 |
348 | test not any_tainted $1, $2, $3, $+; |
1e422769 |
349 | |
350 | my @bar = $foo =~ /(...)(...)(...)/; |
09f04786 |
351 | test not any_tainted @bar; |
1e422769 |
352 | |
09f04786 |
353 | test tainted $foo; # $foo should still be tainted! |
354 | test $foo eq "abcdefghi"; |
1e422769 |
355 | } |
356 | |
357 | # Operations which affect files can't use tainted data. |
358 | { |
09f04786 |
359 | test !eval { chmod 0, $TAINT }, 'chmod'; |
360 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
361 | |
9607fc9c |
362 | # There is no feature test in $Config{} for truncate, |
363 | # so we allow for the possibility that it's missing. |
09f04786 |
364 | test !eval { truncate 'NoSuChFiLe', $TAINT0 }, 'truncate'; |
365 | test $@ =~ /^(?:Insecure dependency|truncate not implemented)/, $@; |
1e422769 |
366 | |
09f04786 |
367 | test !eval { rename '', $TAINT }, 'rename'; |
368 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
369 | |
09f04786 |
370 | test !eval { unlink $TAINT }, 'unlink'; |
371 | test $@ =~ /^Insecure dependency/, $@; |
9607fc9c |
372 | |
09f04786 |
373 | test !eval { utime $TAINT }, 'utime'; |
374 | test $@ =~ /^Insecure dependency/, $@; |
48c036b1 |
375 | |
09f04786 |
376 | SKIP: { |
377 | skip "chown() is not available", 2 unless $Config{d_chown}; |
1e422769 |
378 | |
09f04786 |
379 | test !eval { chown -1, -1, $TAINT }, 'chown'; |
380 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
381 | } |
382 | |
09f04786 |
383 | SKIP: { |
384 | skip "link() is not available", 2 unless $Config{d_link}; |
385 | |
386 | test !eval { link $TAINT, '' }, 'link'; |
387 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
388 | } |
09f04786 |
389 | |
390 | SKIP: { |
391 | skip "symlink() is not available", 2 unless $Config{d_symlink}; |
392 | |
393 | test !eval { symlink $TAINT, '' }, 'symlink'; |
394 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
395 | } |
396 | } |
397 | |
398 | # Operations which affect directories can't use tainted data. |
399 | { |
09f04786 |
400 | test !eval { mkdir "foo".$TAINT, 0755.$TAINT0 }, 'mkdir'; |
401 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
402 | |
09f04786 |
403 | test !eval { rmdir $TAINT }, 'rmdir'; |
404 | test $@ =~ /^Insecure dependency/, $@; |
9607fc9c |
405 | |
09f04786 |
406 | test !eval { chdir "foo".$TAINT }, 'chdir'; |
407 | test $@ =~ /^Insecure dependency/, $@; |
48c036b1 |
408 | |
09f04786 |
409 | SKIP: { |
410 | skip "chroot() is not available", 2 unless $Config{d_chroot}; |
411 | |
412 | test !eval { chroot $TAINT }, 'chroot'; |
413 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
414 | } |
415 | } |
416 | |
417 | # Some operations using files can't use tainted data. |
418 | { |
419 | my $foo = "imaginary library" . $TAINT; |
09f04786 |
420 | test !eval { require $foo }, 'require'; |
421 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
422 | |
423 | my $filename = "./taintB$$"; # NB: $filename isn't tainted! |
424 | END { unlink $filename if defined $filename } |
425 | $foo = $filename . $TAINT; |
426 | unlink $filename; # in any case |
427 | |
09f04786 |
428 | test !eval { open FOO, $foo }, 'open for read'; |
429 | test $@ eq '', $@; # NB: This should be allowed |
9d116dd7 |
430 | |
431 | # Try first new style but allow also old style. |
327ccce1 |
432 | # We do not want the whole taint.t to fail |
433 | # just because Errno possibly failing. |
09f04786 |
434 | test eval('$!{ENOENT}') || |
61ae2fbf |
435 | $! == 2 || # File not found |
436 | ($Is_Dos && $! == 22) || |
437 | ($^O eq 'mint' && $! == 33); |
1e422769 |
438 | |
09f04786 |
439 | test !eval { open FOO, "> $foo" }, 'open for write'; |
440 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
441 | } |
442 | |
443 | # Commands to the system can't use tainted data |
444 | { |
445 | my $foo = $TAINT; |
446 | |
09f04786 |
447 | SKIP: { |
448 | skip "open('|') is not available", 4 if $^O eq 'amigaos'; |
449 | |
450 | test !eval { open FOO, "| x$foo" }, 'popen to'; |
451 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
452 | |
09f04786 |
453 | test !eval { open FOO, "x$foo |" }, 'popen from'; |
454 | test $@ =~ /^Insecure dependency/, $@; |
48c036b1 |
455 | } |
1e422769 |
456 | |
09f04786 |
457 | test !eval { exec $TAINT }, 'exec'; |
458 | test $@ =~ /^Insecure dependency/, $@; |
9607fc9c |
459 | |
09f04786 |
460 | test !eval { system $TAINT }, 'system'; |
461 | test $@ =~ /^Insecure dependency/, $@; |
48c036b1 |
462 | |
1e422769 |
463 | $foo = "*"; |
464 | taint_these $foo; |
465 | |
09f04786 |
466 | test !eval { `$echo 1$foo` }, 'backticks'; |
467 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
468 | |
09f04786 |
469 | SKIP: { |
470 | # wildcard expansion doesn't invoke shell on VMS, so is safe |
471 | skip "This is not VMS", 2 unless $Is_VMS; |
472 | |
473 | test join('', eval { glob $foo } ) ne '', 'globbing'; |
474 | test $@ eq '', $@; |
1e422769 |
475 | } |
476 | } |
477 | |
478 | # Operations which affect processes can't use tainted data. |
479 | { |
09f04786 |
480 | test !eval { kill 0, $TAINT }, 'kill'; |
481 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
482 | |
09f04786 |
483 | SKIP: { |
484 | skip "setpgrp() is not available", 2 unless $Config{d_setpgrp}; |
1e422769 |
485 | |
09f04786 |
486 | test !eval { setpgrp 0, $TAINT0 }, 'setpgrp'; |
487 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
488 | } |
09f04786 |
489 | |
490 | SKIP: { |
491 | skip "setpriority() is not available", 2 unless $Config{d_setprior}; |
492 | |
493 | test !eval { setpriority 0, $TAINT0, $TAINT0 }, 'setpriority'; |
494 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
495 | } |
496 | } |
497 | |
498 | # Some miscellaneous operations can't use tainted data. |
499 | { |
09f04786 |
500 | SKIP: { |
501 | skip "syscall() is not available", 2 unless $Config{d_syscall}; |
502 | |
503 | test !eval { syscall $TAINT }, 'syscall'; |
504 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
505 | } |
506 | |
507 | { |
508 | my $foo = "x" x 979; |
509 | taint_these $foo; |
510 | local *FOO; |
511 | my $temp = "./taintC$$"; |
512 | END { unlink $temp } |
09f04786 |
513 | test open(FOO, "> $temp"), "Couldn't open $temp for write: $!"; |
1e422769 |
514 | |
09f04786 |
515 | test !eval { ioctl FOO, $TAINT0, $foo }, 'ioctl'; |
516 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
517 | |
09f04786 |
518 | SKIP: { |
519 | skip "fcntl() is not available", 2 unless $Config{d_fcntl}; |
520 | |
521 | test !eval { fcntl FOO, $TAINT0, $foo }, 'fcntl'; |
522 | test $@ =~ /^Insecure dependency/, $@; |
1e422769 |
523 | } |
524 | |
525 | close FOO; |
526 | } |
527 | } |
528 | |
9607fc9c |
529 | # Some tests involving references |
1e422769 |
530 | { |
531 | my $foo = 'abc' . $TAINT; |
532 | my $fooref = \$foo; |
09f04786 |
533 | test not tainted $fooref; |
534 | test tainted $$fooref; |
535 | test tainted $foo; |
1e422769 |
536 | } |
54310121 |
537 | |
538 | # Some tests involving assignment |
539 | { |
540 | my $foo = $TAINT0; |
541 | my $bar = $foo; |
09f04786 |
542 | test all_tainted $foo, $bar; |
543 | test tainted($foo = $bar); |
544 | test tainted($bar = $bar); |
545 | test tainted($bar += $bar); |
546 | test tainted($bar -= $bar); |
547 | test tainted($bar *= $bar); |
548 | test tainted($bar++); |
549 | test tainted($bar /= $bar); |
550 | test tainted($bar += 0); |
551 | test tainted($bar -= 2); |
552 | test tainted($bar *= -1); |
553 | test tainted($bar /= 1); |
554 | test tainted($bar--); |
555 | test $bar == 0; |
54310121 |
556 | } |
a1f49e72 |
557 | |
558 | # Test assignment and return of lists |
559 | { |
560 | my @foo = ("A", "tainted" . $TAINT, "B"); |
09f04786 |
561 | test not tainted $foo[0]; |
562 | test tainted $foo[1]; |
563 | test not tainted $foo[2]; |
a1f49e72 |
564 | my @bar = @foo; |
09f04786 |
565 | test not tainted $bar[0]; |
566 | test tainted $bar[1]; |
567 | test not tainted $bar[2]; |
a1f49e72 |
568 | my @baz = eval { "A", "tainted" . $TAINT, "B" }; |
09f04786 |
569 | test not tainted $baz[0]; |
570 | test tainted $baz[1]; |
571 | test not tainted $baz[2]; |
a1f49e72 |
572 | my @plugh = eval q[ "A", "tainted" . $TAINT, "B" ]; |
09f04786 |
573 | test not tainted $plugh[0]; |
574 | test tainted $plugh[1]; |
575 | test not tainted $plugh[2]; |
a1f49e72 |
576 | my $nautilus = sub { "A", "tainted" . $TAINT, "B" }; |
09f04786 |
577 | test not tainted ((&$nautilus)[0]); |
578 | test tainted ((&$nautilus)[1]); |
579 | test not tainted ((&$nautilus)[2]); |
a1f49e72 |
580 | my @xyzzy = &$nautilus; |
09f04786 |
581 | test not tainted $xyzzy[0]; |
582 | test tainted $xyzzy[1]; |
583 | test not tainted $xyzzy[2]; |
a1f49e72 |
584 | my $red_october = sub { return "A", "tainted" . $TAINT, "B" }; |
09f04786 |
585 | test not tainted ((&$red_october)[0]); |
586 | test tainted ((&$red_october)[1]); |
587 | test not tainted ((&$red_october)[2]); |
a1f49e72 |
588 | my @corge = &$red_october; |
09f04786 |
589 | test not tainted $corge[0]; |
590 | test tainted $corge[1]; |
591 | test not tainted $corge[2]; |
a1f49e72 |
592 | } |
fb73857a |
593 | |
594 | # Test for system/library calls returning string data of dubious origin. |
595 | { |
596 | # No reliable %Config check for getpw* |
09f04786 |
597 | SKIP: { |
598 | skip "getpwent() is not available", 1 unless |
599 | eval { setpwent(); getpwent() }; |
600 | |
fb73857a |
601 | setpwent(); |
602 | my @getpwent = getpwent(); |
603 | die "getpwent: $!\n" unless (@getpwent); |
09f04786 |
604 | test ( not tainted $getpwent[0] |
2959b6e3 |
605 | and tainted $getpwent[1] |
fb73857a |
606 | and not tainted $getpwent[2] |
607 | and not tainted $getpwent[3] |
608 | and not tainted $getpwent[4] |
609 | and not tainted $getpwent[5] |
3972a534 |
610 | and tainted $getpwent[6] # ge?cos |
fb73857a |
611 | and not tainted $getpwent[7] |
3972a534 |
612 | and tainted $getpwent[8]); # shell |
fb73857a |
613 | endpwent(); |
fb73857a |
614 | } |
615 | |
09f04786 |
616 | SKIP: { |
617 | # pretty hard to imagine not |
618 | skip "readdir() is not available", 1 unless $Config{d_readdir}; |
619 | |
fb73857a |
620 | local(*D); |
621 | opendir(D, "op") or die "opendir: $!\n"; |
622 | my $readdir = readdir(D); |
09f04786 |
623 | test tainted $readdir; |
624 | closedir(D); |
fb73857a |
625 | } |
626 | |
09f04786 |
627 | SKIP: { |
628 | skip "readlink() or symlink() is not available" unless |
629 | $Config{d_readlink} && $Config{d_symlink}; |
630 | |
fb73857a |
631 | my $symlink = "sl$$"; |
632 | unlink($symlink); |
dc459aad |
633 | my $sl = "/something/naughty"; |
634 | # it has to be a real path on Mac OS |
635 | $sl = MacPerl::MakePath((MacPerl::Volumes())[0]) if $Is_MacOS; |
636 | symlink($sl, $symlink) or die "symlink: $!\n"; |
fb73857a |
637 | my $readlink = readlink($symlink); |
09f04786 |
638 | test tainted $readlink; |
fb73857a |
639 | unlink($symlink); |
fb73857a |
640 | } |
641 | } |
642 | |
643 | # test bitwise ops (regression bug) |
644 | { |
645 | my $why = "y"; |
646 | my $j = "x" | $why; |
09f04786 |
647 | test not tainted $j; |
fb73857a |
648 | $why = $TAINT."y"; |
649 | $j = "x" | $why; |
09f04786 |
650 | test tainted $j; |
fb73857a |
651 | } |
652 | |
48c036b1 |
653 | # test target of substitution (regression bug) |
654 | { |
655 | my $why = $TAINT."y"; |
656 | $why =~ s/y/z/; |
09f04786 |
657 | test tainted $why; |
48c036b1 |
658 | |
659 | my $z = "[z]"; |
660 | $why =~ s/$z/zee/; |
09f04786 |
661 | test tainted $why; |
48c036b1 |
662 | |
663 | $why =~ s/e/'-'.$$/ge; |
09f04786 |
664 | test tainted $why; |
48c036b1 |
665 | } |
d929ce6f |
666 | |
09f04786 |
667 | |
668 | SKIP: { |
669 | skip "no IPC::SysV", 2 unless $ipcsysv; |
670 | |
671 | # test shmread |
672 | SKIP: { |
673 | skip "shm*() not available", 1 unless $Config{d_shm}; |
674 | |
675 | no strict 'subs'; |
676 | my $sent = "foobar"; |
677 | my $rcvd; |
678 | my $size = 2000; |
679 | my $id = shmget(IPC_PRIVATE, $size, S_IRWXU); |
680 | |
681 | if (defined $id) { |
682 | if (shmwrite($id, $sent, 0, 60)) { |
683 | if (shmread($id, $rcvd, 0, 60)) { |
684 | substr($rcvd, index($rcvd, "\0")) = ''; |
685 | } else { |
686 | warn "# shmread failed: $!\n"; |
687 | } |
688 | } else { |
689 | warn "# shmwrite failed: $!\n"; |
690 | } |
691 | shmctl($id, IPC_RMID, 0) or warn "# shmctl failed: $!\n"; |
692 | } else { |
693 | warn "# shmget failed: $!\n"; |
694 | } |
695 | |
696 | skip "SysV shared memory operation failed", 1 unless |
697 | $rcvd eq $sent; |
698 | |
699 | test tainted $rcvd; |
c9f931b8 |
700 | } |
c2e66d9e |
701 | |
d929ce6f |
702 | |
09f04786 |
703 | # test msgrcv |
704 | SKIP: { |
705 | skip "msg*() not available", 1 unless $Config{d_msg}; |
41d6edb2 |
706 | |
b9d1c439 |
707 | no strict 'subs'; |
41d6edb2 |
708 | my $id = msgget(IPC_PRIVATE, IPC_CREAT | S_IRWXU); |
709 | |
710 | my $sent = "message"; |
711 | my $type_sent = 1234; |
712 | my $rcvd; |
713 | my $type_rcvd; |
714 | |
715 | if (defined $id) { |
ddc3217d |
716 | if (msgsnd($id, pack("l! a*", $type_sent, $sent), IPC_NOWAIT)) { |
717 | if (msgrcv($id, $rcvd, 60, 0, IPC_NOWAIT)) { |
41d6edb2 |
718 | ($type_rcvd, $rcvd) = unpack("l! a*", $rcvd); |
719 | } else { |
ddc3217d |
720 | warn "# msgrcv failed: $!\n"; |
41d6edb2 |
721 | } |
722 | } else { |
ddc3217d |
723 | warn "# msgsnd failed: $!\n"; |
41d6edb2 |
724 | } |
c2e66d9e |
725 | msgctl($id, IPC_RMID, 0) or warn "# msgctl failed: $!\n"; |
41d6edb2 |
726 | } else { |
727 | warn "# msgget failed\n"; |
728 | } |
729 | |
09f04786 |
730 | SKIP: { |
731 | skip "SysV message queue operation failed", 1 |
732 | unless $rcvd eq $sent && $type_sent == $type_rcvd; |
733 | |
734 | test tainted $rcvd; |
41d6edb2 |
735 | } |
41d6edb2 |
736 | } |
737 | } |
738 | |
3887d568 |
739 | { |
740 | # bug id 20001004.006 |
741 | |
dc459aad |
742 | open IN, $TEST or warn "$0: cannot read $TEST: $!" ; |
3887d568 |
743 | local $/; |
744 | my $a = <IN>; |
745 | my $b = <IN>; |
09f04786 |
746 | |
747 | ok tainted($a) && tainted($b) && !defined($b); |
748 | |
27c9684d |
749 | close IN; |
3887d568 |
750 | } |
27c9684d |
751 | |
752 | { |
753 | # bug id 20001004.007 |
754 | |
dc459aad |
755 | open IN, $TEST or warn "$0: cannot read $TEST: $!" ; |
27c9684d |
756 | my $a = <IN>; |
757 | |
758 | my $c = { a => 42, |
759 | b => $a }; |
09f04786 |
760 | |
761 | ok !tainted($c->{a}) && tainted($c->{b}); |
762 | |
27c9684d |
763 | |
764 | my $d = { a => $a, |
765 | b => 42 }; |
09f04786 |
766 | ok tainted($d->{a}) && !tainted($d->{b}); |
767 | |
27c9684d |
768 | |
769 | my $e = { a => 42, |
770 | b => { c => $a, d => 42 } }; |
09f04786 |
771 | ok !tainted($e->{a}) && |
772 | !tainted($e->{b}) && |
773 | tainted($e->{b}->{c}) && |
774 | !tainted($e->{b}->{d}); |
27c9684d |
775 | |
776 | close IN; |
777 | } |
778 | |
b94c04ac |
779 | { |
780 | # bug id 20010519.003 |
781 | |
248c32c0 |
782 | BEGIN { |
783 | use vars qw($has_fcntl); |
784 | eval { require Fcntl; import Fcntl; }; |
785 | unless ($@) { |
786 | $has_fcntl = 1; |
787 | } |
788 | } |
b94c04ac |
789 | |
09f04786 |
790 | SKIP: { |
791 | skip "no Fcntl", 18 unless $has_fcntl; |
792 | |
248c32c0 |
793 | my $evil = "foo" . $TAINT; |
794 | |
795 | eval { sysopen(my $ro, $evil, &O_RDONLY) }; |
09f04786 |
796 | test $@ !~ /^Insecure dependency/, $@; |
248c32c0 |
797 | |
798 | eval { sysopen(my $wo, $evil, &O_WRONLY) }; |
09f04786 |
799 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
800 | |
801 | eval { sysopen(my $rw, $evil, &O_RDWR) }; |
09f04786 |
802 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
803 | |
804 | eval { sysopen(my $ap, $evil, &O_APPEND) }; |
09f04786 |
805 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
806 | |
807 | eval { sysopen(my $cr, $evil, &O_CREAT) }; |
09f04786 |
808 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
809 | |
810 | eval { sysopen(my $tr, $evil, &O_TRUNC) }; |
09f04786 |
811 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
812 | |
09f04786 |
813 | eval { sysopen(my $ro, "foo", &O_RDONLY | $TAINT0) }; |
814 | test $@ !~ /^Insecure dependency/, $@; |
248c32c0 |
815 | |
09f04786 |
816 | eval { sysopen(my $wo, "foo", &O_WRONLY | $TAINT0) }; |
817 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
818 | |
09f04786 |
819 | eval { sysopen(my $rw, "foo", &O_RDWR | $TAINT0) }; |
820 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
821 | |
09f04786 |
822 | eval { sysopen(my $ap, "foo", &O_APPEND | $TAINT0) }; |
823 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
824 | |
09f04786 |
825 | eval { sysopen(my $cr, "foo", &O_CREAT | $TAINT0) }; |
826 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
827 | |
09f04786 |
828 | eval { sysopen(my $tr, "foo", &O_TRUNC | $TAINT0) }; |
829 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
830 | |
09f04786 |
831 | eval { sysopen(my $ro, "foo", &O_RDONLY, $TAINT0) }; |
832 | test $@ !~ /^Insecure dependency/, $@; |
248c32c0 |
833 | |
09f04786 |
834 | eval { sysopen(my $wo, "foo", &O_WRONLY, $TAINT0) }; |
835 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
836 | |
09f04786 |
837 | eval { sysopen(my $rw, "foo", &O_RDWR, $TAINT0) }; |
838 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
839 | |
09f04786 |
840 | eval { sysopen(my $ap, "foo", &O_APPEND, $TAINT0) }; |
841 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
842 | |
09f04786 |
843 | eval { sysopen(my $cr, "foo", &O_CREAT, $TAINT0) }; |
844 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
845 | |
09f04786 |
846 | eval { sysopen(my $tr, "foo", &O_TRUNC, $TAINT0) }; |
847 | test $@ =~ /^Insecure dependency/, $@; |
248c32c0 |
848 | |
849 | unlink("foo"); # not unlink($evil), because that would fail... |
850 | } |
b94c04ac |
851 | } |
852 | |
65811bc3 |
853 | { |
854 | # bug 20010526.004 |
855 | |
856 | use warnings; |
857 | |
09f04786 |
858 | my $saw_warning = 0; |
859 | local $SIG{__WARN__} = sub { $saw_warning = 1 }; |
65811bc3 |
860 | |
861 | sub fmi { |
862 | my $divnum = shift()/1; |
863 | sprintf("%1.1f\n", $divnum); |
864 | } |
865 | |
866 | fmi(21 . $TAINT); |
867 | fmi(37); |
868 | fmi(248); |
869 | |
09f04786 |
870 | test !$saw_warning; |
65811bc3 |
871 | } |
872 | |
9e1b5a4e |
873 | |
874 | { |
875 | # Bug ID 20010730.010 |
876 | |
877 | my $i = 0; |
878 | |
879 | sub Tie::TIESCALAR { |
880 | my $class = shift; |
881 | my $arg = shift; |
882 | |
883 | bless \$arg => $class; |
884 | } |
885 | |
886 | sub Tie::FETCH { |
887 | $i ++; |
888 | ${$_ [0]} |
889 | } |
890 | |
891 | |
892 | package main; |
893 | |
894 | my $bar = "The Big Bright Green Pleasure Machine"; |
895 | taint_these $bar; |
896 | tie my ($foo), Tie => $bar; |
897 | |
898 | my $baz = $foo; |
899 | |
09f04786 |
900 | ok $i == 1; |
9e1b5a4e |
901 | } |
902 | |
8852b6d2 |
903 | { |
904 | # Check that all environment variables are tainted. |
905 | my @untainted; |
906 | while (my ($k, $v) = each %ENV) { |
907 | if (!tainted($v) && |
eb25aaf6 |
908 | # These we have explicitly untainted or set earlier. |
909 | $k !~ /^(BASH_ENV|CDPATH|ENV|IFS|PATH|PERL_CORE|TEMP|TERM|TMP)$/) { |
8852b6d2 |
910 | push @untainted, "# '$k' = '$v'\n"; |
911 | } |
912 | } |
09f04786 |
913 | test @untainted == 0, "untainted:\n @untainted"; |
8852b6d2 |
914 | } |
9e1b5a4e |
915 | |
916 | |
9aa05f58 |
917 | ok( ${^TAINT} == 1, '$^TAINT is on' ); |
7c36658b |
918 | |
919 | eval { ${^TAINT} = 0 }; |
920 | ok( ${^TAINT}, '$^TAINT is not assignable' ); |
921 | ok( $@ =~ /^Modification of a read-only value attempted/, |
c212f17f |
922 | 'Assigning to ${^TAINT} fails' ); |
7c36658b |
923 | |
e08e52cf |
924 | { |
925 | # bug 20011111.105 |
926 | |
927 | my $re1 = qr/x$TAINT/; |
09f04786 |
928 | test tainted $re1; |
e08e52cf |
929 | |
930 | my $re2 = qr/^$re1\z/; |
09f04786 |
931 | test tainted $re2; |
e08e52cf |
932 | |
933 | my $re3 = "$re2"; |
09f04786 |
934 | test tainted $re3; |
e08e52cf |
935 | } |
52a55424 |
936 | |
09f04786 |
937 | SKIP: { |
938 | skip "system {} has different semantics on Win32", 1 if $Is_MSWin32; |
939 | |
52a55424 |
940 | # bug 20010221.005 |
941 | local $ENV{PATH} .= $TAINT; |
942 | eval { system { "echo" } "/arg0", "arg1" }; |
09f04786 |
943 | test $@ =~ /^Insecure \$ENV/; |
52a55424 |
944 | } |
09f04786 |
945 | |
946 | TODO: { |
947 | todo_skip 'tainted %ENV warning occludes tainted arguments warning', 22 |
948 | if $Is_VMS; |
949 | |
950 | # bug 20020208.005 plus some single arg exec/system extras |
06bd1802 |
951 | my $err = qr/^Insecure dependency/ ; |
09f04786 |
952 | test !eval { exec $TAINT, $TAINT }, 'exec'; |
953 | test $@ =~ $err, $@; |
954 | test !eval { exec $TAINT $TAINT }, 'exec'; |
955 | test $@ =~ $err, $@; |
956 | test !eval { exec $TAINT $TAINT, $TAINT }, 'exec'; |
957 | test $@ =~ $err, $@; |
958 | test !eval { exec $TAINT 'notaint' }, 'exec'; |
959 | test $@ =~ $err, $@; |
960 | test !eval { exec {'notaint'} $TAINT }, 'exec'; |
961 | test $@ =~ $err, $@; |
962 | |
963 | test !eval { system $TAINT, $TAINT }, 'system'; |
964 | test $@ =~ $err, $@; |
965 | test !eval { system $TAINT $TAINT }, 'system'; |
966 | test $@ =~ $err, $@; |
967 | test !eval { system $TAINT $TAINT, $TAINT }, 'system'; |
968 | test $@ =~ $err, $@; |
969 | test !eval { system $TAINT 'notaint' }, 'system'; |
970 | test $@ =~ $err, $@; |
971 | test !eval { system {'notaint'} $TAINT }, 'system'; |
972 | test $@ =~ $err, $@; |
973 | |
974 | eval { |
975 | no warnings; |
976 | system("lskdfj does not exist","with","args"); |
977 | }; |
978 | test !$@; |
979 | |
980 | SKIP: { |
981 | skip "no exec() on MacOS Classic" if $Is_MacOS; |
982 | |
983 | eval { |
984 | no warnings; |
985 | exec("lskdfj does not exist","with","args"); |
986 | }; |
987 | test !$@; |
63c6dcc1 |
988 | } |
6c8794e1 |
989 | |
990 | # If you add tests here update also the above skip block for VMS. |
bbd7eb8a |
991 | } |
a8c7c11a |
992 | |
993 | { |
994 | # [ID 20020704.001] taint propagation failure |
995 | use re 'taint'; |
996 | $TAINT =~ /(.*)/; |
09f04786 |
997 | test tainted(my $foo = $1); |
a8c7c11a |
998 | } |
7b756e0a |
999 | |
1000 | { |
c038024b |
1001 | # [perl #24291] this used to dump core |
1002 | our %nonmagicalenv = ( PATH => "util" ); |
7b756e0a |
1003 | local *ENV = \%nonmagicalenv; |
1004 | eval { system("lskdfj"); }; |
09f04786 |
1005 | test $@ =~ /^%ENV is aliased to another variable while running with -T switch/; |
c038024b |
1006 | local *ENV = *nonmagicalenv; |
7b756e0a |
1007 | eval { system("lskdfj"); }; |
09f04786 |
1008 | test $@ =~ /^%ENV is aliased to %nonmagicalenv while running with -T switch/; |
7b756e0a |
1009 | } |
0b4182de |
1010 | { |
1011 | # [perl #24248] |
1012 | $TAINT =~ /(.*)/; |
09f04786 |
1013 | test !tainted($1); |
0b4182de |
1014 | my $notaint = $1; |
09f04786 |
1015 | test !tainted($notaint); |
0b4182de |
1016 | |
1017 | my $l; |
1018 | $notaint =~ /($notaint)/; |
1019 | $l = $1; |
09f04786 |
1020 | test !tainted($1); |
1021 | test !tainted($l); |
0b4182de |
1022 | $notaint =~ /($TAINT)/; |
1023 | $l = $1; |
09f04786 |
1024 | test tainted($1); |
1025 | test tainted($l); |
0b4182de |
1026 | |
1027 | $TAINT =~ /($notaint)/; |
1028 | $l = $1; |
09f04786 |
1029 | test !tainted($1); |
1030 | test !tainted($l); |
0b4182de |
1031 | $TAINT =~ /($TAINT)/; |
1032 | $l = $1; |
09f04786 |
1033 | test tainted($1); |
1034 | test tainted($l); |
0b4182de |
1035 | |
1036 | my $r; |
1037 | ($r = $TAINT) =~ /($notaint)/; |
09f04786 |
1038 | test !tainted($1); |
0b4182de |
1039 | ($r = $TAINT) =~ /($TAINT)/; |
09f04786 |
1040 | test tainted($1); |
3511154c |
1041 | |
1042 | # [perl #24674] |
1043 | # accessing $^O shoudn't taint it as a side-effect; |
1044 | # assigning tainted data to it is now an error |
1045 | |
09f04786 |
1046 | test !tainted($^O); |
3511154c |
1047 | if (!$^X) { } elsif ($^O eq 'bar') { } |
09f04786 |
1048 | test !tainted($^O); |
3511154c |
1049 | eval '$^O = $^X'; |
09f04786 |
1050 | test $@ =~ /Insecure dependency in/; |
0b4182de |
1051 | } |
23634c10 |
1052 | |
1053 | EFFECTIVELY_CONSTANTS: { |
1054 | my $tainted_number = 12 + $TAINT0; |
09f04786 |
1055 | test tainted( $tainted_number ); |
23634c10 |
1056 | |
1057 | # Even though it's always 0, it's still tainted |
1058 | my $tainted_product = $tainted_number * 0; |
09f04786 |
1059 | test tainted( $tainted_product ); |
1060 | test $tainted_product == 0; |
23634c10 |
1061 | } |
1062 | |
1063 | TERNARY_CONDITIONALS: { |
1064 | my $tainted_true = $TAINT . "blah blah blah"; |
1065 | my $tainted_false = $TAINT0; |
09f04786 |
1066 | test tainted( $tainted_true ); |
1067 | test tainted( $tainted_false ); |
23634c10 |
1068 | |
1069 | my $result = $tainted_true ? "True" : "False"; |
09f04786 |
1070 | test $result eq "True"; |
1071 | test !tainted( $result ); |
23634c10 |
1072 | |
1073 | $result = $tainted_false ? "True" : "False"; |
09f04786 |
1074 | test $result eq "False"; |
1075 | test !tainted( $result ); |
23634c10 |
1076 | |
1077 | my $untainted_whatever = "The Fabulous Johnny Cash"; |
1078 | my $tainted_whatever = "Soft Cell" . $TAINT; |
1079 | |
1080 | $result = $tainted_true ? $tainted_whatever : $untainted_whatever; |
09f04786 |
1081 | test $result eq "Soft Cell"; |
1082 | test tainted( $result ); |
23634c10 |
1083 | |
1084 | $result = $tainted_false ? $tainted_whatever : $untainted_whatever; |
09f04786 |
1085 | test $result eq "The Fabulous Johnny Cash"; |
1086 | test !tainted( $result ); |
23634c10 |
1087 | } |
65814f21 |
1088 | |
1089 | { |
1090 | # rt.perl.org 5900 $1 remains tainted if... |
1091 | # 1) The regular expression contains a scalar variable AND |
1092 | # 2) The regular expression appears in an elsif clause |
1093 | |
1094 | my $foo = "abcdefghi" . $TAINT; |
1095 | |
1096 | my $valid_chars = 'a-z'; |
1097 | if ( $foo eq '' ) { |
1098 | } |
1099 | elsif ( $foo =~ /([$valid_chars]+)/o ) { |
1100 | test not tainted $1; |
1101 | } |
1102 | |
1103 | if ( $foo eq '' ) { |
1104 | } |
1105 | elsif ( my @bar = $foo =~ /([$valid_chars]+)/o ) { |
1106 | test not any_tainted @bar; |
1107 | } |
1108 | } |
0a9c116b |
1109 | |
1110 | # at scope exit, a restored localised value should have its old |
1111 | # taint status, not the taint status of the current statement |
1112 | |
1113 | { |
1114 | our $x99 = $^X; |
1115 | test tainted $x99; |
1116 | |
1117 | $x99 = ''; |
1118 | test not tainted $x99; |
1119 | |
1120 | my $c = do { local $x99; $^X }; |
1121 | test not tainted $x99; |
1122 | } |
1123 | { |
1124 | our $x99 = $^X; |
1125 | test tainted $x99; |
1126 | |
1127 | my $c = do { local $x99; '' }; |
1128 | test tainted $x99; |
1129 | } |
1130 | |
27cc343c |
1131 | # an mg_get of a tainted value during localization shouldn't taint the |
1132 | # statement |
1133 | |
1134 | { |
1135 | eval { local $0, eval '1' }; |
1136 | test $@ eq ''; |
1137 | } |