regen headers
[p5sagit/p5-mst-13.2.git] / t / op / taint.t
CommitLineData
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
10BEGIN {
11 chdir 't' if -d 't';
12 @INC = '../lib' if -d '../lib';
13}
14
15use strict;
16use Config;
17
9d116dd7 18# We do not want the whole taint.t to fail
19# just because Errno possibly failing.
20eval { require Errno; import Errno };
21
1e422769 22my $Is_VMS = $^O eq 'VMS';
68dc0745 23my $Is_MSWin32 = $^O eq 'MSWin32';
39e571d4 24my $Is_Dos = $^O eq 'dos';
68dc0745 25my $Invoke_Perl = $Is_VMS ? 'MCR Sys$Disk:[]Perl.' :
26 $Is_MSWin32 ? '.\perl' : './perl';
c90c0ff4 27my @MoreEnv = qw/IFS CDPATH ENV BASH_ENV/;
7bac28a0 28
1e422769 29if ($Is_VMS) {
7bac28a0 30 my (%old, $x);
31 for $x ('DCL$PATH', @MoreEnv) {
32 ($old{$x}) = $ENV{$x} =~ /^(.*)$/ if exists $ENV{$x};
33 }
1e422769 34 eval <<EndOfCleanup;
35 END {
36 \$ENV{PATH} = '';
37 warn "# Note: logical name 'PATH' may have been deleted\n";
7bac28a0 38 @ENV{keys %old} = values %old;
1e422769 39 }
40EndOfCleanup
41}
42
43# Sources of taint:
44# The empty tainted value, for tainting strings
45my $TAINT = substr($^X, 0, 0);
46# A tainted zero, useful for tainting numbers
47my $TAINT0 = 0 + $TAINT;
48
49# This taints each argument passed. All must be lvalues.
50# Side effect: It also stringifies them. :-(
51sub taint_these (@) {
52 for (@_) { $_ .= $TAINT }
53}
54
55# How to identify taint when you see it
56sub any_tainted (@) {
57 not eval { join("",@_), kill 0; 1 };
58}
59sub tainted ($) {
60 any_tainted @_;
61}
62sub all_tainted (@) {
63 for (@_) { return 0 unless tainted $_ }
64 1;
65}
66
67sub test ($$;$) {
68 my($serial, $boolean, $diag) = @_;
69 if ($boolean) {
70 print "ok $serial\n";
71 } else {
72 print "not ok $serial\n";
73 for (split m/^/m, $diag) {
74 print "# $_";
75 }
9607fc9c 76 print "\n" unless
1e422769 77 $diag eq ''
78 or substr($diag, -1) eq "\n";
79 }
80}
81
82# We need an external program to call.
5aabfad6 83my $ECHO = ($Is_MSWin32 ? ".\\echo$$" : "./echo$$");
1e422769 84END { unlink $ECHO }
85open PROG, "> $ECHO" or die "Can't create $ECHO: $!";
86print PROG 'print "@ARGV\n"', "\n";
87close PROG;
88my $echo = "$Invoke_Perl $ECHO";
89
b3eb6a9b 90print "1..149\n";
1e422769 91
92# First, let's make sure that Perl is checking the dangerous
93# environment variables. Maybe they aren't set yet, so we'll
94# taint them ourselves.
95{
96 $ENV{'DCL$PATH'} = '' if $Is_VMS;
97
7bac28a0 98 $ENV{PATH} = '';
c90c0ff4 99 delete @ENV{@MoreEnv};
7bac28a0 100 $ENV{TERM} = 'dumb';
101
102 test 1, eval { `$echo 1` } eq "1\n";
103
39e571d4 104 if ($Is_MSWin32 || $Is_VMS || $Is_Dos) {
7bac28a0 105 print "# Environment tainting tests skipped\n";
c90c0ff4 106 for (2..5) { print "ok $_\n" }
5aabfad6 107 }
108 else {
7bac28a0 109 my @vars = ('PATH', @MoreEnv);
110 while (my $v = $vars[0]) {
111 local $ENV{$v} = $TAINT;
112 last if eval { `$echo 1` };
113 last unless $@ =~ /^Insecure \$ENV{$v}/;
114 shift @vars;
115 }
116 test 2, !@vars, "\$$vars[0]";
c90c0ff4 117
118 # tainted $TERM is unsafe only if it contains metachars
119 local $ENV{TERM};
120 $ENV{TERM} = 'e=mc2';
121 test 3, eval { `$echo 1` } eq "1\n";
122 $ENV{TERM} = 'e=mc2' . $TAINT;
123 test 4, eval { `$echo 1` } eq '';
124 test 5, $@ =~ /^Insecure \$ENV{TERM}/, $@;
5aabfad6 125 }
7bac28a0 126
9607fc9c 127 my $tmp;
48c036b1 128 if ($^O eq 'os2' || $^O eq 'amigaos' || $Is_MSWin32 || $Is_Dos) {
129 print "# all directories are writeable\n";
130 }
131 else {
9607fc9c 132 $tmp = (grep { defined and -d and (stat _)[2] & 2 }
133 qw(/tmp /var/tmp /usr/tmp /sys$scratch),
134 @ENV{qw(TMP TEMP)})[0]
135 or print "# can't find world-writeable directory to test PATH\n";
136 }
137
385588b3 138 if ($tmp) {
7bac28a0 139 local $ENV{PATH} = $tmp;
c90c0ff4 140 test 6, eval { `$echo 1` } eq '';
141 test 7, $@ =~ /^Insecure directory in \$ENV{PATH}/, $@;
1e422769 142 }
143 else {
fac76ed7 144 for (6..7) { print "ok $_ # Skipped: all directories are writeable\n" }
1e422769 145 }
146
1e422769 147 if ($Is_VMS) {
148 $ENV{'DCL$PATH'} = $TAINT;
c90c0ff4 149 test 8, eval { `$echo 1` } eq '';
150 test 9, $@ =~ /^Insecure \$ENV{DCL\$PATH}/, $@;
9607fc9c 151 if ($tmp) {
152 $ENV{'DCL$PATH'} = $tmp;
c90c0ff4 153 test 10, eval { `$echo 1` } eq '';
154 test 11, $@ =~ /^Insecure directory in \$ENV{DCL\$PATH}/, $@;
9607fc9c 155 }
156 else {
fac76ed7 157 for (10..11) { print "ok $_ # Skipped: can't find world-writeable directory to test DCL\$PATH\n" }
9607fc9c 158 }
1e422769 159 $ENV{'DCL$PATH'} = '';
160 }
161 else {
fac76ed7 162 for (8..11) { print "ok $_ # Skipped: This is not VMS\n"; }
1e422769 163 }
164}
165
166# Let's see that we can taint and untaint as needed.
167{
168 my $foo = $TAINT;
c90c0ff4 169 test 12, tainted $foo;
9607fc9c 170
171 # That was a sanity check. If it failed, stop the insanity!
172 die "Taint checks don't seem to be enabled" unless tainted $foo;
1e422769 173
174 $foo = "foo";
c90c0ff4 175 test 13, not tainted $foo;
1e422769 176
177 taint_these($foo);
c90c0ff4 178 test 14, tainted $foo;
1e422769 179
180 my @list = 1..10;
c90c0ff4 181 test 15, not any_tainted @list;
1e422769 182 taint_these @list[1,3,5,7,9];
c90c0ff4 183 test 16, any_tainted @list;
184 test 17, all_tainted @list[1,3,5,7,9];
185 test 18, not any_tainted @list[0,2,4,6,8];
1e422769 186
187 ($foo) = $foo =~ /(.+)/;
c90c0ff4 188 test 19, not tainted $foo;
1e422769 189
190 $foo = $1 if ('bar' . $TAINT) =~ /(.+)/;
c90c0ff4 191 test 20, not tainted $foo;
192 test 21, $foo eq 'bar';
1e422769 193
b3eb6a9b 194 {
195 use re 'taint';
196
197 ($foo) = ('bar' . $TAINT) =~ /(.+)/;
198 test 22, tainted $foo;
199 test 23, $foo eq 'bar';
200
201 $foo = $1 if ('bar' . $TAINT) =~ /(.+)/;
202 test 24, tainted $foo;
203 test 25, $foo eq 'bar';
204 }
205
206 $foo = $1 if 'bar' =~ /(.+)$TAINT/;
207 test 26, tainted $foo;
208 test 27, $foo eq 'bar';
48c036b1 209
1e422769 210 my $pi = 4 * atan2(1,1) + $TAINT0;
b3eb6a9b 211 test 28, tainted $pi;
1e422769 212
213 ($pi) = $pi =~ /(\d+\.\d+)/;
b3eb6a9b 214 test 29, not tainted $pi;
215 test 30, sprintf("%.5f", $pi) eq '3.14159';
1e422769 216}
217
218# How about command-line arguments? The problem is that we don't
219# always get some, so we'll run another process with some.
220{
221 my $arg = "./arg$$";
222 open PROG, "> $arg" or die "Can't create $arg: $!";
223 print PROG q{
224 eval { join('', @ARGV), kill 0 };
225 exit 0 if $@ =~ /^Insecure dependency/;
226 print "# Oops: \$@ was [$@]\n";
227 exit 1;
228 };
229 close PROG;
230 print `$Invoke_Perl "-T" $arg and some suspect arguments`;
b3eb6a9b 231 test 31, !$?, "Exited with status $?";
1e422769 232 unlink $arg;
233}
234
235# Reading from a file should be tainted
236{
9607fc9c 237 my $file = './TEST';
b3eb6a9b 238 test 32, open(FILE, $file), "Couldn't open '$file': $!";
1e422769 239
240 my $block;
241 sysread(FILE, $block, 100);
9607fc9c 242 my $line = <FILE>;
1e422769 243 close FILE;
b3eb6a9b 244 test 33, tainted $block;
245 test 34, tainted $line;
1e422769 246}
247
c90c0ff4 248# Globs should be forbidden, except under VMS,
249# which doesn't spawn an external program.
250if ($Is_VMS) {
b3eb6a9b 251 for (35..36) { print "ok $_\n"; }
c90c0ff4 252}
253else {
7bac28a0 254 my @globs = eval { <*> };
b3eb6a9b 255 test 35, @globs == 0 && $@ =~ /^Insecure dependency/;
1e422769 256
7bac28a0 257 @globs = eval { glob '*' };
b3eb6a9b 258 test 36, @globs == 0 && $@ =~ /^Insecure dependency/;
1e422769 259}
260
261# Output of commands should be tainted
262{
263 my $foo = `$echo abc`;
b3eb6a9b 264 test 37, tainted $foo;
1e422769 265}
266
267# Certain system variables should be tainted
268{
b3eb6a9b 269 test 38, all_tainted $^X, $0;
1e422769 270}
271
272# Results of matching should all be untainted
273{
274 my $foo = "abcdefghi" . $TAINT;
b3eb6a9b 275 test 39, tainted $foo;
1e422769 276
277 $foo =~ /def/;
b3eb6a9b 278 test 40, not any_tainted $`, $&, $';
1e422769 279
280 $foo =~ /(...)(...)(...)/;
b3eb6a9b 281 test 41, not any_tainted $1, $2, $3, $+;
1e422769 282
283 my @bar = $foo =~ /(...)(...)(...)/;
b3eb6a9b 284 test 42, not any_tainted @bar;
1e422769 285
b3eb6a9b 286 test 43, tainted $foo; # $foo should still be tainted!
287 test 44, $foo eq "abcdefghi";
1e422769 288}
289
290# Operations which affect files can't use tainted data.
291{
b3eb6a9b 292 test 45, eval { chmod 0, $TAINT } eq '', 'chmod';
293 test 46, $@ =~ /^Insecure dependency/, $@;
1e422769 294
9607fc9c 295 # There is no feature test in $Config{} for truncate,
296 # so we allow for the possibility that it's missing.
b3eb6a9b 297 test 47, eval { truncate 'NoSuChFiLe', $TAINT0 } eq '', 'truncate';
298 test 48, $@ =~ /^(?:Insecure dependency|truncate not implemented)/, $@;
1e422769 299
b3eb6a9b 300 test 49, eval { rename '', $TAINT } eq '', 'rename';
301 test 50, $@ =~ /^Insecure dependency/, $@;
1e422769 302
b3eb6a9b 303 test 51, eval { unlink $TAINT } eq '', 'unlink';
304 test 52, $@ =~ /^Insecure dependency/, $@;
9607fc9c 305
b3eb6a9b 306 test 53, eval { utime $TAINT } eq '', 'utime';
307 test 54, $@ =~ /^Insecure dependency/, $@;
48c036b1 308
1e422769 309 if ($Config{d_chown}) {
b3eb6a9b 310 test 55, eval { chown -1, -1, $TAINT } eq '', 'chown';
311 test 56, $@ =~ /^Insecure dependency/, $@;
1e422769 312 }
313 else {
b3eb6a9b 314 for (55..56) { print "ok $_ # Skipped: chown() is not available\n" }
1e422769 315 }
316
317 if ($Config{d_link}) {
b3eb6a9b 318 test 57, eval { link $TAINT, '' } eq '', 'link';
319 test 58, $@ =~ /^Insecure dependency/, $@;
1e422769 320 }
321 else {
b3eb6a9b 322 for (57..58) { print "ok $_ # Skipped: link() is not available\n" }
1e422769 323 }
324
325 if ($Config{d_symlink}) {
b3eb6a9b 326 test 59, eval { symlink $TAINT, '' } eq '', 'symlink';
327 test 60, $@ =~ /^Insecure dependency/, $@;
1e422769 328 }
329 else {
b3eb6a9b 330 for (59..60) { print "ok $_ # Skipped: symlink() is not available\n" }
1e422769 331 }
332}
333
334# Operations which affect directories can't use tainted data.
335{
b3eb6a9b 336 test 61, eval { mkdir $TAINT0, $TAINT } eq '', 'mkdir';
337 test 62, $@ =~ /^Insecure dependency/, $@;
1e422769 338
b3eb6a9b 339 test 63, eval { rmdir $TAINT } eq '', 'rmdir';
340 test 64, $@ =~ /^Insecure dependency/, $@;
9607fc9c 341
b3eb6a9b 342 test 65, eval { chdir $TAINT } eq '', 'chdir';
343 test 66, $@ =~ /^Insecure dependency/, $@;
48c036b1 344
1e422769 345 if ($Config{d_chroot}) {
b3eb6a9b 346 test 67, eval { chroot $TAINT } eq '', 'chroot';
347 test 68, $@ =~ /^Insecure dependency/, $@;
1e422769 348 }
349 else {
b3eb6a9b 350 for (67..68) { print "ok $_ # Skipped: chroot() is not available\n" }
1e422769 351 }
352}
353
354# Some operations using files can't use tainted data.
355{
356 my $foo = "imaginary library" . $TAINT;
b3eb6a9b 357 test 69, eval { require $foo } eq '', 'require';
358 test 70, $@ =~ /^Insecure dependency/, $@;
1e422769 359
360 my $filename = "./taintB$$"; # NB: $filename isn't tainted!
361 END { unlink $filename if defined $filename }
362 $foo = $filename . $TAINT;
363 unlink $filename; # in any case
364
b3eb6a9b 365 test 71, eval { open FOO, $foo } eq '', 'open for read';
366 test 72, $@ eq '', $@; # NB: This should be allowed
9d116dd7 367
368 # Try first new style but allow also old style.
61ae2fbf 369 test 73, $!{ENOENT} ||
370 $! == 2 || # File not found
371 ($Is_Dos && $! == 22) ||
372 ($^O eq 'mint' && $! == 33);
1e422769 373
b3eb6a9b 374 test 74, eval { open FOO, "> $foo" } eq '', 'open for write';
375 test 75, $@ =~ /^Insecure dependency/, $@;
1e422769 376}
377
378# Commands to the system can't use tainted data
379{
380 my $foo = $TAINT;
381
382 if ($^O eq 'amigaos') {
b3eb6a9b 383 for (76..79) { print "ok $_ # Skipped: open('|') is not available\n" }
1e422769 384 }
385 else {
b3eb6a9b 386 test 76, eval { open FOO, "| $foo" } eq '', 'popen to';
387 test 77, $@ =~ /^Insecure dependency/, $@;
1e422769 388
b3eb6a9b 389 test 78, eval { open FOO, "$foo |" } eq '', 'popen from';
390 test 79, $@ =~ /^Insecure dependency/, $@;
48c036b1 391 }
1e422769 392
b3eb6a9b 393 test 80, eval { exec $TAINT } eq '', 'exec';
394 test 81, $@ =~ /^Insecure dependency/, $@;
9607fc9c 395
b3eb6a9b 396 test 82, eval { system $TAINT } eq '', 'system';
397 test 83, $@ =~ /^Insecure dependency/, $@;
48c036b1 398
1e422769 399 $foo = "*";
400 taint_these $foo;
401
b3eb6a9b 402 test 84, eval { `$echo 1$foo` } eq '', 'backticks';
403 test 85, $@ =~ /^Insecure dependency/, $@;
1e422769 404
405 if ($Is_VMS) { # wildcard expansion doesn't invoke shell, so is safe
b3eb6a9b 406 test 86, join('', eval { glob $foo } ) ne '', 'globbing';
407 test 87, $@ eq '', $@;
1e422769 408 }
409 else {
b3eb6a9b 410 for (86..87) { print "ok $_ # Skipped: this is not VMS\n"; }
1e422769 411 }
412}
413
414# Operations which affect processes can't use tainted data.
415{
b3eb6a9b 416 test 88, eval { kill 0, $TAINT } eq '', 'kill';
417 test 89, $@ =~ /^Insecure dependency/, $@;
1e422769 418
419 if ($Config{d_setpgrp}) {
b3eb6a9b 420 test 90, eval { setpgrp 0, $TAINT } eq '', 'setpgrp';
421 test 91, $@ =~ /^Insecure dependency/, $@;
1e422769 422 }
423 else {
b3eb6a9b 424 for (90..91) { print "ok $_ # Skipped: setpgrp() is not available\n" }
1e422769 425 }
426
427 if ($Config{d_setprior}) {
b3eb6a9b 428 test 92, eval { setpriority 0, $TAINT, $TAINT } eq '', 'setpriority';
429 test 93, $@ =~ /^Insecure dependency/, $@;
1e422769 430 }
431 else {
b3eb6a9b 432 for (92..93) { print "ok $_ # Skipped: setpriority() is not available\n" }
1e422769 433 }
434}
435
436# Some miscellaneous operations can't use tainted data.
437{
438 if ($Config{d_syscall}) {
b3eb6a9b 439 test 94, eval { syscall $TAINT } eq '', 'syscall';
440 test 95, $@ =~ /^Insecure dependency/, $@;
1e422769 441 }
442 else {
b3eb6a9b 443 for (94..95) { print "ok $_ # Skipped: syscall() is not available\n" }
1e422769 444 }
445
446 {
447 my $foo = "x" x 979;
448 taint_these $foo;
449 local *FOO;
450 my $temp = "./taintC$$";
451 END { unlink $temp }
b3eb6a9b 452 test 96, open(FOO, "> $temp"), "Couldn't open $temp for write: $!";
1e422769 453
b3eb6a9b 454 test 97, eval { ioctl FOO, $TAINT, $foo } eq '', 'ioctl';
455 test 98, $@ =~ /^Insecure dependency/, $@;
1e422769 456
457 if ($Config{d_fcntl}) {
b3eb6a9b 458 test 99, eval { fcntl FOO, $TAINT, $foo } eq '', 'fcntl';
459 test 100, $@ =~ /^Insecure dependency/, $@;
1e422769 460 }
461 else {
b3eb6a9b 462 for (99..100) { print "ok $_ # Skipped: fcntl() is not available\n" }
1e422769 463 }
464
465 close FOO;
466 }
467}
468
9607fc9c 469# Some tests involving references
1e422769 470{
471 my $foo = 'abc' . $TAINT;
472 my $fooref = \$foo;
b3eb6a9b 473 test 101, not tainted $fooref;
474 test 102, tainted $$fooref;
475 test 103, tainted $foo;
1e422769 476}
54310121 477
478# Some tests involving assignment
479{
480 my $foo = $TAINT0;
481 my $bar = $foo;
b3eb6a9b 482 test 104, all_tainted $foo, $bar;
483 test 105, tainted($foo = $bar);
484 test 106, tainted($bar = $bar);
485 test 107, tainted($bar += $bar);
486 test 108, tainted($bar -= $bar);
487 test 109, tainted($bar *= $bar);
488 test 110, tainted($bar++);
489 test 111, tainted($bar /= $bar);
490 test 112, tainted($bar += 0);
491 test 113, tainted($bar -= 2);
492 test 114, tainted($bar *= -1);
493 test 115, tainted($bar /= 1);
494 test 116, tainted($bar--);
495 test 117, $bar == 0;
54310121 496}
a1f49e72 497
498# Test assignment and return of lists
499{
500 my @foo = ("A", "tainted" . $TAINT, "B");
b3eb6a9b 501 test 118, not tainted $foo[0];
502 test 119, tainted $foo[1];
503 test 120, not tainted $foo[2];
a1f49e72 504 my @bar = @foo;
b3eb6a9b 505 test 121, not tainted $bar[0];
506 test 122, tainted $bar[1];
507 test 123, not tainted $bar[2];
a1f49e72 508 my @baz = eval { "A", "tainted" . $TAINT, "B" };
b3eb6a9b 509 test 124, not tainted $baz[0];
510 test 125, tainted $baz[1];
511 test 126, not tainted $baz[2];
a1f49e72 512 my @plugh = eval q[ "A", "tainted" . $TAINT, "B" ];
b3eb6a9b 513 test 127, not tainted $plugh[0];
514 test 128, tainted $plugh[1];
515 test 129, not tainted $plugh[2];
a1f49e72 516 my $nautilus = sub { "A", "tainted" . $TAINT, "B" };
b3eb6a9b 517 test 130, not tainted ((&$nautilus)[0]);
518 test 131, tainted ((&$nautilus)[1]);
519 test 132, not tainted ((&$nautilus)[2]);
a1f49e72 520 my @xyzzy = &$nautilus;
b3eb6a9b 521 test 133, not tainted $xyzzy[0];
522 test 134, tainted $xyzzy[1];
523 test 135, not tainted $xyzzy[2];
a1f49e72 524 my $red_october = sub { return "A", "tainted" . $TAINT, "B" };
b3eb6a9b 525 test 136, not tainted ((&$red_october)[0]);
526 test 137, tainted ((&$red_october)[1]);
527 test 138, not tainted ((&$red_october)[2]);
a1f49e72 528 my @corge = &$red_october;
b3eb6a9b 529 test 139, not tainted $corge[0];
530 test 140, tainted $corge[1];
531 test 141, not tainted $corge[2];
a1f49e72 532}
fb73857a 533
534# Test for system/library calls returning string data of dubious origin.
535{
536 # No reliable %Config check for getpw*
537 if (eval { setpwent(); getpwent(); 1 }) {
538 setpwent();
539 my @getpwent = getpwent();
540 die "getpwent: $!\n" unless (@getpwent);
b3eb6a9b 541 test 142,( not tainted $getpwent[0]
fb73857a 542 and not tainted $getpwent[1]
543 and not tainted $getpwent[2]
544 and not tainted $getpwent[3]
545 and not tainted $getpwent[4]
546 and not tainted $getpwent[5]
547 and tainted $getpwent[6] # gecos
548 and not tainted $getpwent[7]
549 and not tainted $getpwent[8]);
550 endpwent();
551 } else {
b3eb6a9b 552 for (142) { print "ok $_ # Skipped: getpwent() is not available\n" }
fb73857a 553 }
554
555 if ($Config{d_readdir}) { # pretty hard to imagine not
556 local(*D);
557 opendir(D, "op") or die "opendir: $!\n";
558 my $readdir = readdir(D);
b3eb6a9b 559 test 143, tainted $readdir;
fb73857a 560 closedir(OP);
561 } else {
b3eb6a9b 562 for (143) { print "ok $_ # Skipped: readdir() is not available\n" }
fb73857a 563 }
564
565 if ($Config{d_readlink} && $Config{d_symlink}) {
566 my $symlink = "sl$$";
567 unlink($symlink);
568 symlink("/something/naughty", $symlink) or die "symlink: $!\n";
569 my $readlink = readlink($symlink);
b3eb6a9b 570 test 144, tainted $readlink;
fb73857a 571 unlink($symlink);
572 } else {
b3eb6a9b 573 for (144) { print "ok $_ # Skipped: readlink() or symlink() is not available\n"; }
fb73857a 574 }
575}
576
577# test bitwise ops (regression bug)
578{
579 my $why = "y";
580 my $j = "x" | $why;
b3eb6a9b 581 test 145, not tainted $j;
fb73857a 582 $why = $TAINT."y";
583 $j = "x" | $why;
b3eb6a9b 584 test 146, tainted $j;
fb73857a 585}
586
48c036b1 587# test target of substitution (regression bug)
588{
589 my $why = $TAINT."y";
590 $why =~ s/y/z/;
b3eb6a9b 591 test 147, tainted $why;
48c036b1 592
593 my $z = "[z]";
594 $why =~ s/$z/zee/;
b3eb6a9b 595 test 148, tainted $why;
48c036b1 596
597 $why =~ s/e/'-'.$$/ge;
b3eb6a9b 598 test 149, tainted $why;
48c036b1 599}