1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
|
#!./perl -T
#
# Taint tests by Tom Phoenix <rootbeer@teleport.com>.
#
# I don't claim to know all about tainting. If anyone sees
# tests that I've missed here, please add them. But this is
# better than having no tests at all, right?
#
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
skip_all_if_miniperl("no dynamic loading on miniperl, no re");
}
use strict;
use Config;
plan tests => 801;
$| = 1;
use vars qw($ipcsysv); # did we manage to load IPC::SysV?
my ($old_env_path, $old_env_dcl_path, $old_env_term);
BEGIN {
$old_env_path = $ENV{'PATH'};
$old_env_dcl_path = $ENV{'DCL$PATH'};
$old_env_term = $ENV{'TERM'};
if ($^O eq 'VMS' && !defined($Config{d_setenv})) {
$ENV{PATH} = $ENV{PATH};
$ENV{TERM} = $ENV{TERM} ne ''? $ENV{TERM} : 'dummy';
}
if ($Config{'extensions'} =~ /\bIPC\/SysV\b/
&& ($Config{d_shm} || $Config{d_msg})) {
eval { require IPC::SysV };
unless ($@) {
$ipcsysv++;
IPC::SysV->import(qw(IPC_PRIVATE IPC_RMID IPC_CREAT S_IRWXU IPC_NOWAIT));
}
}
}
my $Is_VMS = $^O eq 'VMS';
my $Is_MSWin32 = $^O eq 'MSWin32';
my $Is_NetWare = $^O eq 'NetWare';
my $Is_Dos = $^O eq 'dos';
my $Is_Cygwin = $^O eq 'cygwin';
my $Is_OpenBSD = $^O eq 'openbsd';
my $Is_MirBSD = $^O eq 'mirbsd';
my $Invoke_Perl = $Is_VMS ? 'MCR Sys$Disk:[]Perl.exe' :
$Is_MSWin32 ? '.\perl' :
$Is_NetWare ? 'perl' :
'./perl' ;
my @MoreEnv = qw/IFS CDPATH ENV BASH_ENV/;
if ($Is_VMS) {
my (%old, $x);
for $x ('DCL$PATH', @MoreEnv) {
($old{$x}) = $ENV{$x} =~ /^(.*)$/ if exists $ENV{$x};
}
# VMS note: PATH and TERM are automatically created by the C
# library in VMS on reference to the their keys in %ENV.
# There is currently no way to determine if they did not exist
# before this test was run.
eval <<EndOfCleanup;
END {
\$ENV{PATH} = \$old_env_path;
warn "# Note: logical name 'PATH' may have been created\n";
\$ENV{'TERM'} = \$old_env_term;
warn "# Note: logical name 'TERM' may have been created\n";
\@ENV{keys %old} = values %old;
if (defined \$old_env_dcl_path) {
\$ENV{'DCL\$PATH'} = \$old_env_dcl_path;
} else {
delete \$ENV{'DCL\$PATH'};
}
}
EndOfCleanup
}
# Sources of taint:
# The empty tainted value, for tainting strings
my $TAINT = substr($^X, 0, 0);
# A tainted zero, useful for tainting numbers
my $TAINT0;
{
no warnings;
$TAINT0 = 0 + $TAINT;
}
# This taints each argument passed. All must be lvalues.
# Side effect: It also stringifies them. :-(
sub taint_these (@) {
for (@_) { $_ .= $TAINT }
}
# How to identify taint when you see it
sub tainted ($) {
local $@; # Don't pollute caller's value.
not eval { join("",@_), kill 0; 1 };
}
sub is_tainted {
my $thing = shift;
local $::Level = $::Level + 1;
ok(tainted($thing), @_);
}
sub isnt_tainted {
my $thing = shift;
local $::Level = $::Level + 1;
ok(!tainted($thing), @_);
}
sub violates_taint {
my ($code, $what, $desc) = @_;
$desc //= $what;
local $::Level = $::Level + 1;
is(eval { $code->(); }, undef, $desc);
like($@, qr/^Insecure dependency in $what while running with -T switch/);
}
# We need an external program to call.
my $ECHO = ($Is_MSWin32 ? ".\\echo$$" : ($Is_NetWare ? "echo$$" : "./echo$$"));
END { unlink $ECHO }
open my $fh, '>', $ECHO or die "Can't create $ECHO: $!";
print $fh 'print "@ARGV\n"', "\n";
close $fh;
my $echo = "$Invoke_Perl $ECHO";
my $TEST = 'TEST';
# First, let's make sure that Perl is checking the dangerous
# environment variables. Maybe they aren't set yet, so we'll
# taint them ourselves.
{
$ENV{'DCL$PATH'} = '' if $Is_VMS;
$ENV{PATH} = ($Is_Cygwin) ? '/usr/bin' : '';
delete @ENV{@MoreEnv};
$ENV{TERM} = 'dumb';
is(eval { `$echo 1` }, "1\n");
SKIP: {
skip "Environment tainting tests skipped", 4
if $Is_MSWin32 || $Is_NetWare || $Is_VMS || $Is_Dos;
my @vars = ('PATH', @MoreEnv);
while (my $v = $vars[0]) {
local $ENV{$v} = $TAINT;
last if eval { `$echo 1` };
last unless $@ =~ /^Insecure \$ENV\{$v}/;
shift @vars;
}
is("@vars", "");
# tainted $TERM is unsafe only if it contains metachars
local $ENV{TERM};
$ENV{TERM} = 'e=mc2';
is(eval { `$echo 1` }, "1\n");
$ENV{TERM} = 'e=mc2' . $TAINT;
is(eval { `$echo 1` }, undef);
like($@, qr/^Insecure \$ENV\{TERM}/);
}
my $tmp;
if ($^O eq 'os2' || $^O eq 'amigaos' || $Is_MSWin32 || $Is_NetWare || $Is_Dos) {
print "# all directories are writeable\n";
}
else {
$tmp = (grep { defined and -d and (stat _)[2] & 2 }
qw(sys$scratch /tmp /var/tmp /usr/tmp),
@ENV{qw(TMP TEMP)})[0]
or print "# can't find world-writeable directory to test PATH\n";
}
SKIP: {
skip "all directories are writeable", 2 unless $tmp;
local $ENV{PATH} = $tmp;
is(eval { `$echo 1` }, undef);
# Message can be different depending on whether echo
# is a builtin or not
like($@, qr/^Insecure (?:directory in )?\$ENV\{PATH}/);
}
SKIP: {
skip "This is not VMS", 4 unless $Is_VMS;
$ENV{'DCL$PATH'} = $TAINT;
is(eval { `$echo 1` }, undef);
like($@, qr/^Insecure \$ENV\{DCL\$PATH}/);
SKIP: {
skip q[can't find world-writeable directory to test DCL$PATH], 2
unless $tmp;
$ENV{'DCL$PATH'} = $tmp;
is(eval { `$echo 1` }, undef);
like($@, qr/^Insecure directory in \$ENV\{DCL\$PATH}/);
}
$ENV{'DCL$PATH'} = '';
}
}
# Let's see that we can taint and untaint as needed.
{
my $foo = $TAINT;
is_tainted($foo);
# That was a sanity check. If it failed, stop the insanity!
die "Taint checks don't seem to be enabled" unless tainted $foo;
$foo = "foo";
isnt_tainted($foo);
taint_these($foo);
is_tainted($foo);
my @list = 1..10;
isnt_tainted($_) foreach @list;
taint_these @list[1,3,5,7,9];
is_tainted($_) foreach @list[1,3,5,7,9];
isnt_tainted($_) foreach @list[0,2,4,6,8];
($foo) = $foo =~ /(.+)/;
isnt_tainted($foo);
my ($desc, $s, $res, $res2, $one);
$desc = "match with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ /(.+)/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ /(.)/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
$desc = "match with string tainted, list cxt";
$s = 'abcd' . $TAINT;
($res) = $s =~ /(.+)/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with string tainted, list cxt";
$s = 'abcd' . $TAINT;
($res, $res2) = $s =~ /(.)/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($res2,"$desc: res2 not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
$desc = "match with pattern tainted";
$s = 'abcd';
$res = $s =~ /$TAINT(.+)/;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with pattern tainted";
$s = 'abcd';
$res = $s =~ /$TAINT(.)/g;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 10 if(!$Config{d_setlocale});
$desc = "match with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ /(\w+)/; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ /(\w)/g; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
}
$desc = "match with pattern tainted, list cxt";
$s = 'abcd';
($res) = $s =~ /$TAINT(.+)/;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with pattern tainted, list cxt";
$s = 'abcd';
($res, $res2) = $s =~ /$TAINT(.)/g;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 12 if(!$Config{d_setlocale});
$desc = "match with pattern tainted via locale, list cxt";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
($res) = $s =~ /(\w+)/; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "match /g with pattern tainted via locale, list cxt";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
($res, $res2) = $s =~ /(\w)/g; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($res2, "$desc: res2 tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
}
$desc = "substitution with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.+)/xyz/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution /g with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.)/x/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "substitution /r with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.+)/xyz/r;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution /e with string tainted";
$s = 'abcd' . $TAINT;
$one = '';
$res = $s =~ s{(.+)}{
$one = $one . "x"; # make sure code not tainted
isnt_tainted($one, "$desc: code not tainted within /e");
$one = $1;
isnt_tainted($one, "$desc: \$1 not tainted within /e");
"xyz";
}e;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.+)/xyz/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution /g with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.)/x/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "substitution /ge with pattern tainted";
$s = 'abc';
{
my $i = 0;
my $j;
$res = $s =~ s{(.)$TAINT}{
$j = $i; # make sure code not tainted
$one = $1;
isnt_tainted($j, "$desc: code not tainted within /e");
$i++;
if ($i == 1) {
isnt_tainted($s, "$desc: s not tainted loop 1");
}
else {
is_tainted($s, "$desc: s tainted loop $i");
}
is_tainted($one, "$desc: \$1 tainted loop $i");
$i.$TAINT;
}ge;
$one = $1;
}
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, '123', "$desc: s value");
is($res, 3, "$desc: res value");
is($one, 'c', "$desc: \$1 value");
$desc = "substitution /r with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.+)/xyz/r;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 18 if(!$Config{d_setlocale});
$desc = "substitution with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w+)/xyz/; $one = $1;
}
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution /g with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w)/x/g; $one = $1;
}
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "substitution /r with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w+)/xyz/r; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
}
$desc = "substitution with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.+)/xyz$TAINT/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "substitution /g with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.)/x$TAINT/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "substitution /ge with replacement tainted";
$s = 'abc';
{
my $i = 0;
my $j;
$res = $s =~ s{(.)}{
$j = $i; # make sure code not tainted
$one = $1;
isnt_tainted($j, "$desc: code not tainted within /e");
$i++;
if ($i == 1) {
isnt_tainted($s, "$desc: s not tainted loop 1");
}
else {
is_tainted($s, "$desc: s tainted loop $i");
}
isnt_tainted($one, "$desc: \$1 not tainted within /e");
$i.$TAINT;
}ge;
$one = $1;
}
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, '123', "$desc: s value");
is($res, 3, "$desc: res value");
is($one, 'c', "$desc: \$1 value");
$desc = "substitution /r with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.+)/xyz$TAINT/r;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
{
# now do them all again with "use re 'taint"
use re 'taint';
$desc = "use re 'taint': match with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ /(.+)/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ /(.)/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
$desc = "use re 'taint': match with string tainted, list cxt";
$s = 'abcd' . $TAINT;
($res) = $s =~ /(.+)/;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with string tainted, list cxt";
$s = 'abcd' . $TAINT;
($res, $res2) = $s =~ /(.)/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($res2, "$desc: res2 tainted");
is_tainted($one, "$desc: \$1 not tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
$desc = "use re 'taint': match with pattern tainted";
$s = 'abcd';
$res = $s =~ /$TAINT(.+)/;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with pattern tainted";
$s = 'abcd';
$res = $s =~ /$TAINT(.)/g;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 10 if(!$Config{d_setlocale});
$desc = "use re 'taint': match with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ /(\w+)/; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ /(\w)/g; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 1, "$desc: res value");
is($one, 'a', "$desc: \$1 value");
}
$desc = "use re 'taint': match with pattern tainted, list cxt";
$s = 'abcd';
($res) = $s =~ /$TAINT(.+)/;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with pattern tainted, list cxt";
$s = 'abcd';
($res, $res2) = $s =~ /$TAINT(.)/g;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 12 if(!$Config{d_setlocale});
$desc = "use re 'taint': match with pattern tainted via locale, list cxt";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
($res) = $s =~ /(\w+)/; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'abcd', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': match /g with pattern tainted via locale, list cxt";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
($res, $res2) = $s =~ /(\w)/g; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($res2, "$desc: res2 tainted");
is_tainted($one, "$desc: \$1 tainted");
is($res, 'a', "$desc: res value");
is($res2,'b', "$desc: res2 value");
is($one, 'd', "$desc: \$1 value");
}
$desc = "use re 'taint': substitution with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.+)/xyz/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /g with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.)/x/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /r with string tainted";
$s = 'abcd' . $TAINT;
$res = $s =~ s/(.+)/xyz/r;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /e with string tainted";
$s = 'abcd' . $TAINT;
$one = '';
$res = $s =~ s{(.+)}{
$one = $one . "x"; # make sure code not tainted
isnt_tainted($one, "$desc: code not tainted within /e");
$one = $1;
is_tainted($one, "$desc: $1 tainted within /e");
"xyz";
}e;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.+)/xyz/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /g with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.)/x/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /ge with pattern tainted";
$s = 'abc';
{
my $i = 0;
my $j;
$res = $s =~ s{(.)$TAINT}{
$j = $i; # make sure code not tainted
$one = $1;
isnt_tainted($j, "$desc: code not tainted within /e");
$i++;
if ($i == 1) {
isnt_tainted($s, "$desc: s not tainted loop 1");
}
else {
is_tainted($s, "$desc: s tainted loop $i");
}
is_tainted($one, "$desc: \$1 tainted loop $i");
$i.$TAINT;
}ge;
$one = $1;
}
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, '123', "$desc: s value");
is($res, 3, "$desc: res value");
is($one, 'c', "$desc: \$1 value");
$desc = "use re 'taint': substitution /r with pattern tainted";
$s = 'abcd';
$res = $s =~ s/$TAINT(.+)/xyz/r;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
SKIP: {
skip 'No locale testing without d_setlocale', 18 if(!$Config{d_setlocale});
$desc = "use re 'taint': substitution with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w+)/xyz/; $one = $1;
}
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /g with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w)/x/g; $one = $1;
}
is_tainted($s, "$desc: s tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /r with pattern tainted via locale";
$s = 'abcd';
{
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
$res = $s =~ s/(\w+)/xyz/r; $one = $1;
}
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
is_tainted($one, "$desc: \$1 tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
}
$desc = "use re 'taint': substitution with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.+)/xyz$TAINT/;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xyz', "$desc: s value");
is($res, 1, "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /g with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.)/x$TAINT/g;
$one = $1;
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res not tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'xxxx', "$desc: s value");
is($res, 4, "$desc: res value");
is($one, 'd', "$desc: \$1 value");
$desc = "use re 'taint': substitution /ge with replacement tainted";
$s = 'abc';
{
my $i = 0;
my $j;
$res = $s =~ s{(.)}{
$j = $i; # make sure code not tainted
$one = $1;
isnt_tainted($j, "$desc: code not tainted within /e");
$i++;
if ($i == 1) {
isnt_tainted($s, "$desc: s not tainted loop 1");
}
else {
is_tainted($s, "$desc: s tainted loop $i");
}
isnt_tainted($one, "$desc: \$1 not tainted");
$i.$TAINT;
}ge;
$one = $1;
}
is_tainted($s, "$desc: s tainted");
isnt_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, '123', "$desc: s value");
is($res, 3, "$desc: res value");
is($one, 'c', "$desc: \$1 value");
$desc = "use re 'taint': substitution /r with replacement tainted";
$s = 'abcd';
$res = $s =~ s/(.+)/xyz$TAINT/r;
$one = $1;
isnt_tainted($s, "$desc: s not tainted");
is_tainted($res, "$desc: res tainted");
isnt_tainted($one, "$desc: \$1 not tainted");
is($s, 'abcd', "$desc: s value");
is($res, 'xyz', "$desc: res value");
is($one, 'abcd', "$desc: \$1 value");
# [perl #121854] match taintedness became sticky
# when one match has a taintess result, subseqent matches
# using the same pattern shouldn't necessarily be tainted
{
my $f = sub { $_[0] =~ /(.*)/ or die; $1 };
$res = $f->($TAINT);
is_tainted($res, "121854: res tainted");
$res = $f->("abc");
isnt_tainted($res, "121854: res not tainted");
}
}
$foo = $1 if 'bar' =~ /(.+)$TAINT/;
is_tainted($foo);
is($foo, 'bar');
my $pi = 4 * atan2(1,1) + $TAINT0;
is_tainted($pi);
($pi) = $pi =~ /(\d+\.\d+)/;
isnt_tainted($pi);
is(sprintf("%.5f", $pi), '3.14159');
}
# How about command-line arguments? The problem is that we don't
# always get some, so we'll run another process with some.
SKIP: {
my $arg = tempfile();
open $fh, '>', $arg or die "Can't create $arg: $!";
print $fh q{
eval { join('', @ARGV), kill 0 };
exit 0 if $@ =~ /^Insecure dependency/;
print "# Oops: \$@ was [$@]\n";
exit 1;
};
close $fh or die "Can't close $arg: $!";
print `$Invoke_Perl "-T" $arg and some suspect arguments`;
is($?, 0, "Exited with status $?");
unlink $arg;
}
# Reading from a file should be tainted
{
ok(open my $fh, '<', $TEST) or diag("Couldn't open '$TEST': $!");
my $block;
sysread($fh, $block, 100);
my $line = <$fh>;
close $fh;
is_tainted($block);
is_tainted($line);
}
# Output of commands should be tainted
{
my $foo = `$echo abc`;
is_tainted($foo);
}
# Certain system variables should be tainted
{
is_tainted($^X);
is_tainted($0);
}
# Results of matching should all be untainted
{
my $foo = "abcdefghi" . $TAINT;
is_tainted($foo);
$foo =~ /def/;
isnt_tainted($`);
isnt_tainted($&);
isnt_tainted($');
$foo =~ /(...)(...)(...)/;
isnt_tainted($1);
isnt_tainted($2);
isnt_tainted($3);
isnt_tainted($+);
my @bar = $foo =~ /(...)(...)(...)/;
isnt_tainted($_) foreach @bar;
is_tainted($foo); # $foo should still be tainted!
is($foo, "abcdefghi");
}
# Operations which affect files can't use tainted data.
{
violates_taint(sub { chmod 0, $TAINT }, 'chmod');
SKIP: {
skip "truncate() is not available", 2 unless $Config{d_truncate};
violates_taint(sub { truncate 'NoSuChFiLe', $TAINT0 }, 'truncate');
}
violates_taint(sub { rename '', $TAINT }, 'rename');
violates_taint(sub { unlink $TAINT }, 'unlink');
violates_taint(sub { utime $TAINT }, 'utime');
SKIP: {
skip "chown() is not available", 2 unless $Config{d_chown};
violates_taint(sub { chown -1, -1, $TAINT }, 'chown');
}
SKIP: {
skip "link() is not available", 2 unless $Config{d_link};
violates_taint(sub { link $TAINT, '' }, 'link');
}
SKIP: {
skip "symlink() is not available", 2 unless $Config{d_symlink};
violates_taint(sub { symlink $TAINT, '' }, 'symlink');
}
}
# Operations which affect directories can't use tainted data.
{
violates_taint(sub { mkdir "foo".$TAINT, 0755 . $TAINT0 }, 'mkdir');
violates_taint(sub { rmdir $TAINT }, 'rmdir');
violates_taint(sub { chdir "foo".$TAINT }, 'chdir');
SKIP: {
skip "chroot() is not available", 2 unless $Config{d_chroot};
violates_taint(sub { chroot $TAINT }, 'chroot');
}
}
# Some operations using files can't use tainted data.
{
my $foo = "imaginary library" . $TAINT;
violates_taint(sub { require $foo }, 'require');
my $filename = tempfile(); # NB: $filename isn't tainted!
$foo = $filename . $TAINT;
unlink $filename; # in any case
is(eval { open FOO, $foo }, undef, 'open for read');
is($@, ''); # NB: This should be allowed
is(eval { open my $fh, , '<', $foo }, undef, 'open for read');
is($@, ''); # NB: This should be allowed
# Try first new style but allow also old style.
# We do not want the whole taint.t to fail
# just because Errno possibly failing.
ok(eval('$!{ENOENT}') ||
$! == 2 || # File not found
($Is_Dos && $! == 22));
violates_taint(sub { open FOO, "> $foo" }, 'open', 'open for write');
violates_taint(sub { open my $fh, '>', $foo }, 'open', 'open for write');
}
# Commands to the system can't use tainted data
{
my $foo = $TAINT;
SKIP: {
skip "open('|') is not available", 8 if $^O eq 'amigaos';
violates_taint(sub { open FOO, "| x$foo" }, 'piped open', 'popen to');
violates_taint(sub { open FOO, "x$foo |" }, 'piped open', 'popen from');
violates_taint(sub { open my $fh, '|-', "x$foo" }, 'piped open', 'popen to');
violates_taint(sub { open my $fh, '-|', "x$foo" }, 'piped open', 'popen from');
}
violates_taint(sub { exec $TAINT }, 'exec');
violates_taint(sub { system $TAINT }, 'system');
$foo = "*";
taint_these $foo;
violates_taint(sub { `$echo 1$foo` }, '``', 'backticks');
SKIP: {
# wildcard expansion doesn't invoke shell on VMS, so is safe
skip "This is not VMS", 2 unless $Is_VMS;
isnt(join('', eval { glob $foo } ), '', 'globbing');
is($@, '');
}
}
# Operations which affect processes can't use tainted data.
{
violates_taint(sub { kill 0, $TAINT }, 'kill');
SKIP: {
skip "setpgrp() is not available", 2 unless $Config{d_setpgrp};
violates_taint(sub { setpgrp 0, $TAINT0 }, 'setpgrp');
}
SKIP: {
skip "setpriority() is not available", 2 unless $Config{d_setprior};
violates_taint(sub { setpriority 0, $TAINT0, $TAINT0 }, 'setpriority');
}
}
# Some miscellaneous operations can't use tainted data.
{
SKIP: {
skip "syscall() is not available", 2 unless $Config{d_syscall};
violates_taint(sub { syscall $TAINT }, 'syscall');
}
{
my $foo = "x" x 979;
taint_these $foo;
local *FOO;
my $temp = tempfile();
ok(open FOO, "> $temp") or diag("Couldn't open $temp for write: $!");
violates_taint(sub { ioctl FOO, $TAINT0, $foo }, 'ioctl');
my $temp2 = tempfile();
ok(open my $fh, '>', $temp2) or diag("Couldn't open $temp2 for write: $!");
violates_taint(sub { ioctl $fh, $TAINT0, $foo }, 'ioctl');
SKIP: {
skip "fcntl() is not available", 4 unless $Config{d_fcntl};
violates_taint(sub { fcntl FOO, $TAINT0, $foo }, 'fcntl');
violates_taint(sub { fcntl $fh, $TAINT0, $foo }, 'fcntl');
}
close FOO;
}
}
# Some tests involving references
{
my $foo = 'abc' . $TAINT;
my $fooref = \$foo;
isnt_tainted($fooref);
is_tainted($$fooref);
is_tainted($foo);
}
# Some tests involving assignment
{
my $foo = $TAINT0;
my $bar = $foo;
is_tainted($foo);
is_tainted($bar);
is_tainted($foo = $bar);
is_tainted($bar = $bar);
is_tainted($bar += $bar);
is_tainted($bar -= $bar);
is_tainted($bar *= $bar);
is_tainted($bar++);
is_tainted($bar /= $bar);
is_tainted($bar += 0);
is_tainted($bar -= 2);
is_tainted($bar *= -1);
is_tainted($bar /= 1);
is_tainted($bar--);
is($bar, 0);
}
# Test assignment and return of lists
{
my @foo = ("A", "tainted" . $TAINT, "B");
isnt_tainted($foo[0]);
is_tainted( $foo[1]);
isnt_tainted($foo[2]);
my @bar = @foo;
isnt_tainted($bar[0]);
is_tainted( $bar[1]);
isnt_tainted($bar[2]);
my @baz = eval { "A", "tainted" . $TAINT, "B" };
isnt_tainted($baz[0]);
is_tainted( $baz[1]);
isnt_tainted($baz[2]);
my @plugh = eval q[ "A", "tainted" . $TAINT, "B" ];
isnt_tainted($plugh[0]);
is_tainted( $plugh[1]);
isnt_tainted($plugh[2]);
my $nautilus = sub { "A", "tainted" . $TAINT, "B" };
isnt_tainted(((&$nautilus)[0]));
is_tainted( ((&$nautilus)[1]));
isnt_tainted(((&$nautilus)[2]));
my @xyzzy = &$nautilus;
isnt_tainted($xyzzy[0]);
is_tainted( $xyzzy[1]);
isnt_tainted($xyzzy[2]);
my $red_october = sub { return "A", "tainted" . $TAINT, "B" };
isnt_tainted(((&$red_october)[0]));
is_tainted( ((&$red_october)[1]));
isnt_tainted(((&$red_october)[2]));
my @corge = &$red_october;
isnt_tainted($corge[0]);
is_tainted( $corge[1]);
isnt_tainted($corge[2]);
}
# Test for system/library calls returning string data of dubious origin.
{
# No reliable %Config check for getpw*
SKIP: {
skip "getpwent() is not available", 9 unless
eval { setpwent(); getpwent() };
setpwent();
my @getpwent = getpwent();
die "getpwent: $!\n" unless (@getpwent);
isnt_tainted($getpwent[0]);
is_tainted($getpwent[1]);
isnt_tainted($getpwent[2]);
isnt_tainted($getpwent[3]);
isnt_tainted($getpwent[4]);
isnt_tainted($getpwent[5]);
is_tainted($getpwent[6], 'ge?cos');
isnt_tainted($getpwent[7]);
is_tainted($getpwent[8], 'shell');
endpwent();
}
SKIP: {
# pretty hard to imagine not
skip "readdir() is not available", 1 unless $Config{d_readdir};
opendir my $dh, "op" or die "opendir: $!\n";
my $readdir = readdir $dh;
is_tainted($readdir);
closedir $dh;
}
SKIP: {
skip "readlink() or symlink() is not available" unless
$Config{d_readlink} && $Config{d_symlink};
my $symlink = "sl$$";
unlink($symlink);
my $sl = "/something/naughty";
# it has to be a real path on Mac OS
symlink($sl, $symlink) or die "symlink: $!\n";
my $readlink = readlink($symlink);
is_tainted($readlink);
unlink($symlink);
}
}
# test bitwise ops (regression bug)
{
my $why = "y";
my $j = "x" | $why;
isnt_tainted($j);
$why = $TAINT."y";
$j = "x" | $why;
is_tainted( $j);
}
# test target of substitution (regression bug)
{
my $why = $TAINT."y";
$why =~ s/y/z/;
is_tainted( $why);
my $z = "[z]";
$why =~ s/$z/zee/;
is_tainted( $why);
$why =~ s/e/'-'.$$/ge;
is_tainted( $why);
}
SKIP: {
skip "no IPC::SysV", 2 unless $ipcsysv;
# test shmread
SKIP: {
skip "shm*() not available", 1 unless $Config{d_shm};
no strict 'subs';
my $sent = "foobar";
my $rcvd;
my $size = 2000;
my $id;
eval {
local $SIG{SYS} = sub { die "SIGSYS caught\n" };
$id = shmget(IPC_PRIVATE, $size, S_IRWXU);
1;
} or do { chomp(my $msg = $@); skip "shmget: $msg", 1; };
if (defined $id) {
if (shmwrite($id, $sent, 0, 60)) {
if (shmread($id, $rcvd, 0, 60)) {
substr($rcvd, index($rcvd, "\0")) = '';
} else {
warn "# shmread failed: $!\n";
}
} else {
warn "# shmwrite failed: $!\n";
}
shmctl($id, IPC_RMID, 0) or warn "# shmctl failed: $!\n";
} else {
warn "# shmget failed: $!\n";
}
skip "SysV shared memory operation failed", 1 unless
$rcvd eq $sent;
is_tainted($rcvd, "shmread");
}
# test msgrcv
SKIP: {
skip "msg*() not available", 1 unless $Config{d_msg};
no strict 'subs';
my $id;
eval {
local $SIG{SYS} = sub { die "SIGSYS caught\n" };
$id = msgget(IPC_PRIVATE, IPC_CREAT | S_IRWXU);
1;
} or do { chomp(my $msg = $@); skip "msgget: $msg", 1; };
my $sent = "message";
my $type_sent = 1234;
my $rcvd;
my $type_rcvd;
if (defined $id) {
if (msgsnd($id, pack("l! a*", $type_sent, $sent), IPC_NOWAIT)) {
if (msgrcv($id, $rcvd, 60, 0, IPC_NOWAIT)) {
($type_rcvd, $rcvd) = unpack("l! a*", $rcvd);
} else {
warn "# msgrcv failed: $!\n";
}
} else {
warn "# msgsnd failed: $!\n";
}
msgctl($id, IPC_RMID, 0) or warn "# msgctl failed: $!\n";
} else {
warn "# msgget failed\n";
}
SKIP: {
skip "SysV message queue operation failed", 1
unless $rcvd eq $sent && $type_sent == $type_rcvd;
is_tainted($rcvd, "msgrcv");
}
}
}
{
# bug id 20001004.006
open my $fh, '<', $TEST or warn "$0: cannot read $TEST: $!" ;
local $/;
my $a = <$fh>;
my $b = <$fh>;
is_tainted($a);
is_tainted($b);
is($b, undef);
}
{
# bug id 20001004.007
open my $fh, '<', $TEST or warn "$0: cannot read $TEST: $!" ;
my $a = <$fh>;
my $c = { a => 42,
b => $a };
isnt_tainted($c->{a});
is_tainted($c->{b});
my $d = { a => $a,
b => 42 };
is_tainted($d->{a});
isnt_tainted($d->{b});
my $e = { a => 42,
b => { c => $a, d => 42 } };
isnt_tainted($e->{a});
isnt_tainted($e->{b});
is_tainted($e->{b}->{c});
isnt_tainted($e->{b}->{d});
}
{
# bug id 20010519.003
BEGIN {
use vars qw($has_fcntl);
eval { require Fcntl; import Fcntl; };
unless ($@) {
$has_fcntl = 1;
}
}
SKIP: {
skip "no Fcntl", 18 unless $has_fcntl;
my $foo = tempfile();
my $evil = $foo . $TAINT;
is(eval { sysopen(my $ro, $evil, &O_RDONLY) }, undef);
is($@, '');
violates_taint(sub { sysopen(my $wo, $evil, &O_WRONLY) }, 'sysopen');
violates_taint(sub { sysopen(my $rw, $evil, &O_RDWR) }, 'sysopen');
violates_taint(sub { sysopen(my $ap, $evil, &O_APPEND) }, 'sysopen');
violates_taint(sub { sysopen(my $cr, $evil, &O_CREAT) }, 'sysopen');
violates_taint(sub { sysopen(my $tr, $evil, &O_TRUNC) }, 'sysopen');
is(eval { sysopen(my $ro, $foo, &O_RDONLY | $TAINT0) }, undef);
is($@, '');
violates_taint(sub { sysopen(my $wo, $foo, &O_WRONLY | $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $rw, $foo, &O_RDWR | $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $ap, $foo, &O_APPEND | $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $cr, $foo, &O_CREAT | $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $tr, $foo, &O_TRUNC | $TAINT0) }, 'sysopen');
is(eval { sysopen(my $ro, $foo, &O_RDONLY, $TAINT0) }, undef);
is($@, '');
violates_taint(sub { sysopen(my $wo, $foo, &O_WRONLY, $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $rw, $foo, &O_RDWR, $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $ap, $foo, &O_APPEND, $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $cr, $foo, &O_CREAT, $TAINT0) }, 'sysopen');
violates_taint(sub { sysopen(my $tr, $foo, &O_TRUNC, $TAINT0) }, 'sysopen');
}
}
{
# bug 20010526.004
use warnings;
my $saw_warning = 0;
local $SIG{__WARN__} = sub { ++$saw_warning };
sub fmi {
my $divnum = shift()/1;
sprintf("%1.1f\n", $divnum);
}
fmi(21 . $TAINT);
fmi(37);
fmi(248);
is($saw_warning, 0);
}
{
# Bug ID 20010730.010
my $i = 0;
sub Tie::TIESCALAR {
my $class = shift;
my $arg = shift;
bless \$arg => $class;
}
sub Tie::FETCH {
$i ++;
${$_ [0]}
}
package main;
my $bar = "The Big Bright Green Pleasure Machine";
taint_these $bar;
tie my ($foo), Tie => $bar;
my $baz = $foo;
ok $i == 1;
}
{
# Check that all environment variables are tainted.
my @untainted;
while (my ($k, $v) = each %ENV) {
if (!tainted($v) &&
# These we have explicitly untainted or set earlier.
$k !~ /^(BASH_ENV|CDPATH|ENV|IFS|PATH|PERL_CORE|TEMP|TERM|TMP)$/) {
push @untainted, "# '$k' = '$v'\n";
}
}
is("@untainted", "");
}
is(${^TAINT}, 1, '$^TAINT is on');
eval { ${^TAINT} = 0 };
is(${^TAINT}, 1, '$^TAINT is not assignable');
like($@, qr/^Modification of a read-only value attempted/,
'Assigning to ${^TAINT} fails');
{
# bug 20011111.105
my $re1 = qr/x$TAINT/;
is_tainted($re1);
my $re2 = qr/^$re1\z/;
is_tainted($re2);
my $re3 = "$re2";
is_tainted($re3);
}
SKIP: {
skip "system {} has different semantics on Win32", 1 if $Is_MSWin32;
# bug 20010221.005
local $ENV{PATH} .= $TAINT;
eval { system { "echo" } "/arg0", "arg1" };
like($@, qr/^Insecure \$ENV/);
}
TODO: {
todo_skip 'tainted %ENV warning occludes tainted arguments warning', 22
if $Is_VMS;
# bug 20020208.005 plus some single arg exec/system extras
violates_taint(sub { exec $TAINT, $TAINT }, 'exec');
violates_taint(sub { exec $TAINT $TAINT }, 'exec');
violates_taint(sub { exec $TAINT $TAINT, $TAINT }, 'exec');
violates_taint(sub { exec $TAINT 'notaint' }, 'exec');
violates_taint(sub { exec {'notaint'} $TAINT }, 'exec');
violates_taint(sub { system $TAINT, $TAINT }, 'system');
violates_taint(sub { system $TAINT $TAINT }, 'system');
violates_taint(sub { system $TAINT $TAINT, $TAINT }, 'system');
violates_taint(sub { system $TAINT 'notaint' }, 'system');
violates_taint(sub { system {'notaint'} $TAINT }, 'system');
eval {
no warnings;
system("lskdfj does not exist","with","args");
};
is($@, "");
eval {
no warnings;
exec("lskdfj does not exist","with","args");
};
is($@, "");
# If you add tests here update also the above skip block for VMS.
}
{
# [ID 20020704.001] taint propagation failure
use re 'taint';
$TAINT =~ /(.*)/;
is_tainted(my $foo = $1);
}
{
# [perl #24291] this used to dump core
our %nonmagicalenv = ( PATH => "util" );
local *ENV = \%nonmagicalenv;
eval { system("lskdfj"); };
like($@, qr/^%ENV is aliased to another variable while running with -T switch/);
local *ENV = *nonmagicalenv;
eval { system("lskdfj"); };
like($@, qr/^%ENV is aliased to %nonmagicalenv while running with -T switch/);
}
{
# [perl #24248]
$TAINT =~ /(.*)/;
isnt_tainted($1);
my $notaint = $1;
isnt_tainted($notaint);
my $l;
$notaint =~ /($notaint)/;
$l = $1;
isnt_tainted($1);
isnt_tainted($l);
$notaint =~ /($TAINT)/;
$l = $1;
is_tainted($1);
is_tainted($l);
$TAINT =~ /($notaint)/;
$l = $1;
isnt_tainted($1);
isnt_tainted($l);
$TAINT =~ /($TAINT)/;
$l = $1;
is_tainted($1);
is_tainted($l);
my $r;
($r = $TAINT) =~ /($notaint)/;
isnt_tainted($1);
($r = $TAINT) =~ /($TAINT)/;
is_tainted($1);
{
use re 'eval'; # this shouldn't make any difference
($r = $TAINT) =~ /($notaint)/;
isnt_tainted($1);
($r = $TAINT) =~ /($TAINT)/;
is_tainted($1);
}
# [perl #24674]
# accessing $^O shoudn't taint it as a side-effect;
# assigning tainted data to it is now an error
isnt_tainted($^O);
if (!$^X) { } elsif ($^O eq 'bar') { }
isnt_tainted($^O);
local $^O; # We're going to clobber something test infrastructure depends on.
eval '$^O = $^X';
like($@, qr/Insecure dependency in/);
}
EFFECTIVELY_CONSTANTS: {
my $tainted_number = 12 + $TAINT0;
is_tainted( $tainted_number );
# Even though it's always 0, it's still tainted
my $tainted_product = $tainted_number * 0;
is_tainted( $tainted_product );
is($tainted_product, 0);
}
TERNARY_CONDITIONALS: {
my $tainted_true = $TAINT . "blah blah blah";
my $tainted_false = $TAINT0;
is_tainted( $tainted_true );
is_tainted( $tainted_false );
my $result = $tainted_true ? "True" : "False";
is($result, "True");
isnt_tainted( $result );
$result = $tainted_false ? "True" : "False";
is($result, "False");
isnt_tainted( $result );
my $untainted_whatever = "The Fabulous Johnny Cash";
my $tainted_whatever = "Soft Cell" . $TAINT;
$result = $tainted_true ? $tainted_whatever : $untainted_whatever;
is($result, "Soft Cell");
is_tainted( $result );
$result = $tainted_false ? $tainted_whatever : $untainted_whatever;
is($result, "The Fabulous Johnny Cash");
isnt_tainted( $result );
}
{
# rt.perl.org 5900 $1 remains tainted if...
# 1) The regular expression contains a scalar variable AND
# 2) The regular expression appears in an elsif clause
my $foo = "abcdefghi" . $TAINT;
my $valid_chars = 'a-z';
if ( $foo eq '' ) {
}
elsif ( $foo =~ /([$valid_chars]+)/o ) {
isnt_tainted($1);
isnt($1, undef);
}
if ( $foo eq '' ) {
}
elsif ( my @bar = $foo =~ /([$valid_chars]+)/o ) {
isnt_tainted($bar[0]);
is(scalar @bar, 1);
}
}
# at scope exit, a restored localised value should have its old
# taint status, not the taint status of the current statement
{
our $x99 = $^X;
is_tainted($x99);
$x99 = '';
isnt_tainted($x99);
my $c = do { local $x99; $^X };
isnt_tainted($x99);
}
{
our $x99 = $^X;
is_tainted($x99);
my $c = do { local $x99; '' };
is_tainted($x99);
}
# an mg_get of a tainted value during localization shouldn't taint the
# statement
{
eval { local $0, eval '1' };
is($@, '');
}
# [perl #8262] //g loops infinitely on tainted data
{
my @a;
$a[0] = $^X . '-';
$a[0]=~ m/(.)/g;
cmp_ok pos($a[0]), '>', 0, "infinite m//g on arrays (aelemfast)";
my $i = 1;
$a[$i] = $^X . '-';
$a[$i]=~ m/(.)/g;
cmp_ok pos($a[$i]), '>', 0, "infinite m//g on arrays (aelem)";
my %h;
$h{a} = $^X . '-';
$h{a}=~ m/(.)/g;
cmp_ok pos($h{a}), '>', 0, "infinite m//g on hashes (helem)";
}
SKIP:
{
my $got_dualvar;
eval 'use Scalar::Util "dualvar"; $got_dualvar++';
skip "No Scalar::Util::dualvar" unless $got_dualvar;
my $a = Scalar::Util::dualvar(3, $^X);
my $b = $a + 5;
is ($b, 8, "Arithmetic on tainted dualvars works");
}
# opening '|-' should not trigger $ENV{PATH} check
{
SKIP: {
skip "fork() is not available", 3 unless $Config{'d_fork'};
skip "opening |- is not stable on threaded Open/MirBSD with taint", 3
if $Config{useithreads} and $Is_OpenBSD || $Is_MirBSD;
$ENV{'PATH'} = $TAINT;
local $SIG{'PIPE'} = 'IGNORE';
eval {
my $pid = open my $pipe, '|-';
if (!defined $pid) {
die "open failed: $!";
}
if (!$pid) {
kill 'KILL', $$; # child suicide
}
close $pipe;
};
unlike($@, qr/Insecure \$ENV/, 'fork triggers %ENV check');
is($@, '', 'pipe/fork/open/close failed');
eval {
open my $pipe, "|$Invoke_Perl -e 1";
close $pipe;
};
like($@, qr/Insecure \$ENV/, 'popen neglects %ENV check');
}
}
{
package AUTOLOAD_TAINT;
sub AUTOLOAD {
our $AUTOLOAD;
return if $AUTOLOAD =~ /DESTROY/;
if ($AUTOLOAD =~ /untainted/) {
main::isnt_tainted($AUTOLOAD, '$AUTOLOAD can be untainted');
my $copy = $AUTOLOAD;
main::isnt_tainted($copy, '$AUTOLOAD can be untainted');
} else {
main::is_tainted($AUTOLOAD, '$AUTOLOAD can be tainted');
my $copy = $AUTOLOAD;
main::is_tainted($copy, '$AUTOLOAD can be tainted');
}
}
package main;
my $o = bless [], 'AUTOLOAD_TAINT';
$o->untainted;
$o->$TAINT;
$o->untainted;
}
{
# tests for tainted format in s?printf
my $fmt = $TAINT . "# %s\n";
violates_taint(sub { printf($fmt, "foo") }, 'printf',
q/printf doesn't like tainted formats/);
violates_taint(sub { printf($TAINT . "# %s\n", "foo") }, 'printf',
q/printf doesn't like tainted format expressions/);
eval { printf("# %s\n", $TAINT . "foo") };
is($@, '', q/printf accepts other tainted args/);
violates_taint(sub { sprintf($fmt, "foo") }, 'sprintf',
q/sprintf doesn't like tainted formats/);
violates_taint(sub { sprintf($TAINT . "# %s\n", "foo") }, 'sprintf',
q/sprintf doesn't like tainted format expressions/);
eval { sprintf("# %s\n", $TAINT . "foo") };
is($@, '', q/sprintf accepts other tainted args/);
}
{
# 40708
my $n = 7e9;
8e9 - $n;
my $val = $n;
is ($val, '7000000000', 'Assignment to untainted variable');
$val = $TAINT;
$val = $n;
is ($val, '7000000000', 'Assignment to tainted variable');
}
{
my $val = 0;
my $tainted = '1' . $TAINT;
eval '$val = eval $tainted;';
is ($val, 0, "eval doesn't like tainted strings");
like ($@, qr/^Insecure dependency in eval/);
# Rather nice code to get a tainted undef by from Rick Delaney
open my $fh, "test.pl" or die $!;
seek $fh, 0, 2 or die $!;
$tainted = <$fh>;
eval 'eval $tainted';
like ($@, qr/^Insecure dependency in eval/);
}
foreach my $ord (78, 163, 256) {
# 47195
my $line = 'A1' . $TAINT . chr $ord;
chop $line;
is($line, 'A1');
$line =~ /(A\S*)/;
isnt_tainted($1, "\\S match with chr $ord");
}
{
SKIP: {
skip 'No crypt function, skipping crypt tests', 4 if(!$Config{d_crypt});
# 59998
sub cr { my $x = crypt($_[0], $_[1]); $x }
sub co { my $x = ~$_[0]; $x }
my ($a, $b);
$a = cr('hello', 'foo' . $TAINT);
$b = cr('hello', 'foo');
is_tainted($a, "tainted crypt");
isnt_tainted($b, "untainted crypt");
$a = co('foo' . $TAINT);
$b = co('foo');
is_tainted($a, "tainted complement");
isnt_tainted($b, "untainted complement");
}
}
{
my @data = qw(bonk zam zlonk qunckkk);
# Clearly some sort of usenet bang-path
my $string = $TAINT . join "!", @data;
is_tainted($string, "tainted data");
my @got = split /!|,/, $string;
# each @got would be useful here, but I want the test for earlier perls
for my $i (0 .. $#data) {
is_tainted($got[$i], "tainted result $i");
is($got[$i], $data[$i], "correct content $i");
}
is_tainted($string, "still tainted data");
my @got = split /[!,]/, $string;
# each @got would be useful here, but I want the test for earlier perls
for my $i (0 .. $#data) {
is_tainted($got[$i], "tainted result $i");
is($got[$i], $data[$i], "correct content $i");
}
is_tainted($string, "still tainted data");
my @got = split /!/, $string;
# each @got would be useful here, but I want the test for earlier perls
for my $i (0 .. $#data) {
is_tainted($got[$i], "tainted result $i");
is($got[$i], $data[$i], "correct content $i");
}
}
# Bug RT #52552 - broken by change at git commit id f337b08
{
my $x = $TAINT. q{print "Hello world\n"};
my $y = pack "a*", $x;
is_tainted($y, "pack a* preserves tainting");
my $z = pack "A*", q{print "Hello world\n"}.$TAINT;
is_tainted($z, "pack A* preserves tainting");
my $zz = pack "a*a*", q{print "Hello world\n"}, $TAINT;
is_tainted($zz, "pack a*a* preserves tainting");
}
# Bug RT #61976 tainted $! would show numeric rather than string value
{
my $tainted_path = substr($^X,0,0) . "/no/such/file";
my $err;
# $! is used in a tainted expression, so gets tainted
open my $fh, $tainted_path or $err= "$!";
unlike($err, qr/^\d+$/, 'tainted $!');
}
{
# #6758: tainted values become untainted in tied hashes
# (also applies to other value magic such as pos)
package P6758;
sub TIEHASH { bless {} }
sub TIEARRAY { bless {} }
my $i = 0;
sub STORE {
main::is_tainted($_[1], "tied arg1 tainted");
main::is_tainted($_[2], "tied arg2 tainted");
$i++;
}
package main;
my ($k,$v) = qw(1111 val);
taint_these($k,$v);
tie my @array, 'P6758';
tie my %hash , 'P6758';
$array[$k] = $v;
$hash{$k} = $v;
ok $i == 2, "tied STORE called correct number of times";
}
# Bug RT #45167 the return value of sprintf sometimes wasn't tainted
# when the args were tainted. This only occured on the first use of
# sprintf; after that, its TARG has taint magic attached, so setmagic
# at the end works. That's why there are multiple sprintf's below, rather
# than just one wrapped in an inner loop. Also, any plaintext between
# fprmat entires would correctly cause tainting to get set. so test with
# "%s%s" rather than eg "%s %s".
{
for my $var1 ($TAINT, "123") {
for my $var2 ($TAINT0, "456") {
is( tainted(sprintf '%s', $var1, $var2), tainted($var1),
"sprintf '%s', '$var1', '$var2'" );
is( tainted(sprintf ' %s', $var1, $var2), tainted($var1),
"sprintf ' %s', '$var1', '$var2'" );
is( tainted(sprintf '%s%s', $var1, $var2),
tainted($var1) || tainted($var2),
"sprintf '%s%s', '$var1', '$var2'" );
}
}
}
# Bug RT #67962: old tainted $1 gets treated as tainted
# in next untainted # match
{
use re 'taint';
"abc".$TAINT =~ /(.*)/; # make $1 tainted
is_tainted($1, '$1 should be tainted');
my $untainted = "abcdef";
isnt_tainted($untainted, '$untainted should be untainted');
$untainted =~ s/(abc)/$1/;
isnt_tainted($untainted, '$untainted should still be untainted');
$untainted =~ s/(abc)/x$1/;
isnt_tainted($untainted, '$untainted should yet still be untainted');
}
{
# On Windows we can't spawn a fresh Perl interpreter unless at
# least the Windows system directory (usually C:\Windows\System32)
# is still on the PATH. There is however no way to determine the
# actual path on the current system without loading the Win32
# module, so we just restore the original $ENV{PATH} here.
local $ENV{PATH} = $ENV{PATH};
$ENV{PATH} = $old_env_path if $Is_MSWin32;
fresh_perl_is(<<'end', "ok", { switches => [ '-T' ] },
$TAINT = substr($^X, 0, 0);
formline('@'.('<'x("2000".$TAINT)).' | @*', 'hallo', 'welt');
print "ok";
end
"formline survives a tainted dynamic picture");
}
{
isnt_tainted($^A, "format accumulator not tainted yet");
formline('@ | @*', 'hallo' . $TAINT, 'welt');
is_tainted($^A, "tainted formline argument makes a tainted accumulator");
$^A = "";
isnt_tainted($^A, "accumulator can be explicitly untainted");
formline('@' .('<'*5) . ' | @*', 'hallo', 'welt');
isnt_tainted($^A, "accumulator still untainted");
$^A = "" . $TAINT;
is_tainted($^A, "accumulator can be explicitly tainted");
formline('@' .('<'*5) . ' | @*', 'hallo', 'welt');
is_tainted($^A, "accumulator still tainted");
$^A = "";
isnt_tainted($^A, "accumulator untainted again");
formline('@' .('<'*5) . ' | @*', 'hallo', 'welt');
isnt_tainted($^A, "accumulator still untainted");
formline('@' .('<'*(5+$TAINT0)) . ' | @*', 'hallo', 'welt');
is_tainted($^A, "the accumulator should be tainted already");
is_tainted($^A, "tainted formline picture makes a tainted accumulator");
}
{ # Bug #80610
"Constant(1)" =~ / ^ ([a-z_]\w*) (?: [(] (.*) [)] )? $ /xi;
my $a = $1;
my $b = $2;
isnt_tainted($a, "regex optimization of single char /[]/i doesn't taint");
isnt_tainted($b, "regex optimization of single char /[]/i doesn't taint");
}
{
# RT 81230: tainted value during FETCH created extra ref to tied obj
package P81230;
use warnings;
my %h;
sub TIEHASH {
my $x = $^X; # tainted
bless \$x;
}
sub FETCH { my $x = $_[0]; $$x . "" }
tie %h, 'P81230';
my $w = "";
local $SIG{__WARN__} = sub { $w .= "@_" };
untie %h if $h{"k"};
::is($w, "", "RT 81230");
}
{
# Compiling a subroutine inside a tainted expression does not make the
# constant folded values tainted.
my $x = sub { "x" . "y" };
my $y = $ENV{PATH} . $x->(); # Compile $x inside a tainted expression
my $z = $x->();
isnt_tainted($z, "Constants folded value not tainted");
}
{
# now that regexes are first class SVs, make sure that they themselves
# as well as references to them are tainted
my $rr = qr/(.)$TAINT/;
my $r = $$rr; # bare REGEX
my $s ="abc";
ok($s =~ s/$r/x/, "match bare regex");
is_tainted($s, "match bare regex taint");
is($s, 'xbc', "match bare regex taint value");
}
{
# [perl #82616] security Issues with user-defined \p{} properties
# A using a tainted user-defined property should croak
sub IsA { sprintf "%02x", ord("A") }
my $prop = "IsA";
ok("A" =~ /\p{$prop}/, "user-defined property: non-tainted case");
$prop = "IsA$TAINT";
eval { "A" =~ /\p{$prop}/};
like($@, qr/Insecure user-defined property \\p\{main::IsA}/,
"user-defined property: tainted case");
}
{
# [perl #87336] lc/uc(first) failing to taint the returned string
my $source = "foo$TAINT";
my $dest = lc $source;
is_tainted $dest, "lc(tainted) taints its return value";
$dest = lcfirst $source;
is_tainted $dest, "lcfirst(tainted) taints its return value";
$dest = uc $source;
is_tainted $dest, "uc(tainted) taints its return value";
$dest = ucfirst $source;
is_tainted $dest, "ucfirst(tainted) taints its return value";
}
{
# Taintedness of values returned from given()
use feature 'switch';
no warnings 'experimental::smartmatch';
my @descriptions = ('when', 'given end', 'default');
for (qw<x y z>) {
my $letter = "$_$TAINT";
my $desc = "tainted value returned from " . shift(@descriptions);
my $res = do {
given ($_) {
when ('x') { $letter }
when ('y') { goto leavegiven }
default { $letter }
leavegiven: $letter
}
};
is $res, $letter, "$desc is correct";
is_tainted $res, "$desc stays tainted";
}
}
# tainted constants and index()
# RT 64804; http://bugs.debian.org/291450
{
ok(tainted $old_env_path, "initial taintedness");
BEGIN { no strict 'refs'; my $v = $old_env_path; *{"::C"} = sub () { $v }; }
ok(tainted C, "constant is tainted properly");
ok(!tainted "", "tainting not broken yet");
index(undef, C);
ok(!tainted "", "tainting still works after index() of the constant");
}
# Tainted values with smartmatch
# [perl #93590] S_do_smartmatch stealing its own string buffers
{
no warnings 'experimental::smartmatch';
ok "M$TAINT" ~~ ['m', 'M'], '$tainted ~~ ["whatever", "match"]';
ok !("M$TAINT" ~~ ['m', undef]), '$tainted ~~ ["whatever", undef]';
}
# Tainted values and ref()
for(1,2) {
my $x = bless \"M$TAINT", ref(bless[], "main");
}
pass("no death when TARG of ref is tainted");
# $$ should not be tainted by being read in a tainted expression.
{
isnt_tainted $$, "PID not tainted initially";
my $x = $ENV{PATH}.$$;
isnt_tainted $$, "PID not tainted when read in tainted expression";
}
SKIP: {
skip 'No locale testing without d_setlocale', 4 if(!$Config{d_setlocale});
use feature 'fc';
BEGIN {
if($Config{d_setlocale}) {
require locale; import locale;
}
}
my ($latin1, $utf8) = ("\xDF") x 2;
utf8::downgrade($latin1);
utf8::upgrade($utf8);
is_tainted fc($latin1), "under locale, lc(latin1) taints the result";
is_tainted fc($utf8), "under locale, lc(utf8) taints the result";
is_tainted "\F$latin1", "under locale, \\Flatin1 taints the result";
is_tainted "\F$utf8", "under locale, \\Futf8 taints the result";
}
{ # 111654
eval {
eval { die "Test\n".substr($ENV{PATH}, 0, 0); };
die;
};
like($@, qr/^Test\n\t\.\.\.propagated at /, "error should be propagated");
}
# tainted run-time (?{}) should die
{
my $code = '(?{})' . $TAINT;
use re 'eval';
eval { "a" =~ /$code/ };
like($@, qr/Eval-group in insecure regular expression/, "tainted (?{})");
}
# reset() and tainted undef (?!)
$::x = "foo";
$_ = "$TAINT".reset "x";
is eval { eval $::x.1 }, 1, 'reset does not taint undef';
# [perl #122669]
{
# See the comment above the first formline test.
local $ENV{PATH} = $ENV{PATH};
$ENV{PATH} = $old_env_path if $Is_MSWin32;
is runperl(
switches => [ '-T' ],
prog => 'use constant K=>$^X; 0 if K; BEGIN{} use strict; '
.'print 122669, qq-\n-',
stderr => 1,
), "122669\n",
'tainted constant as logop condition should not prevent "use"';
}
# This may bomb out with the alarm signal so keep it last
SKIP: {
skip "No alarm()" unless $Config{d_alarm};
# Test from RT #41831]
# [PATCH] Bug & fix: hang when using study + taint mode (perl 5.6.1, 5.8.x)
my $DATA = <<'END' . $TAINT;
line1 is here
line2 is here
line3 is here
line4 is here
END
#study $DATA;
## don't set $SIG{ALRM}, since we'd never get to a user-level handler as
## perl is stuck in a regexp infinite loop!
alarm(10);
if ($DATA =~ /^line2.*line4/m) {
fail("Should not be a match")
} else {
pass("Match on tainted multiline data should fail promptly");
}
alarm(0);
}
__END__
# Keep the previous test last
|