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