/usr/share/perl5/HTML/Defang.pm is in libhtml-defang-perl 1.04-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/perl -w
package HTML::Defang;
=head1 NAME
HTML::Defang - Cleans HTML as well as CSS of scripting and other executable contents, and neutralises XSS attacks.
=head1 SYNOPSIS
my $InputHtml = "<html><body></body></html>";
my $Defang = HTML::Defang->new(
context => $Self,
fix_mismatched_tags => 1,
tags_to_callback => [ br embed img ],
tags_callback => \&DefangTagsCallback,
url_callback => \&DefangUrlCallback,
css_callback => \&DefangCssCallback,
attribs_to_callback => [ qw(border src) ],
attribs_callback => \&DefangAttribsCallback
);
my $SanitizedHtml = $Defang->defang($InputHtml);
# Callback for custom handling specific HTML tags
sub DefangTagsCallback {
my ($Self, $Defang, $OpenAngle, $lcTag, $IsEndTag, $AttributeHash, $CloseAngle, $HtmlR, $OutR) = @_;
# Explicitly defang this tag, eventhough safe
return DEFANG_ALWAYS if $lcTag eq 'br';
# Explicitly whitelist this tag, eventhough unsafe
return DEFANG_NONE if $lcTag eq 'embed';
# I am not sure what to do with this tag, so process as HTML::Defang normally would
return DEFANG_DEFAULT if $lcTag eq 'img';
}
# Callback for custom handling URLs in HTML attributes as well as style tag/attribute declarations
sub DefangUrlCallback {
my ($Self, $Defang, $lcTag, $lcAttrKey, $AttrValR, $AttributeHash, $HtmlR) = @_;
# Explicitly allow this URL in tag attributes or stylesheets
return DEFANG_NONE if $$AttrValR =~ /safesite.com/i;
# Explicitly defang this URL in tag attributes or stylesheets
return DEFANG_ALWAYS if $$AttrValR =~ /evilsite.com/i;
}
# Callback for custom handling style tags/attributes
sub DefangCssCallback {
my ($Self, $Defang, $Selectors, $SelectorRules, $Tag, $IsAttr) = @_;
my $i = 0;
foreach (@$Selectors) {
my $SelectorRule = $$SelectorRules[$i];
foreach my $KeyValueRules (@$SelectorRule) {
foreach my $KeyValueRule (@$KeyValueRules) {
my ($Key, $Value) = @$KeyValueRule;
# Comment out any '!important' directive
$$KeyValueRule[2] = DEFANG_ALWAYS if $Value =~ '!important';
# Comment out any 'position=fixed;' declaration
$$KeyValueRule[2] = DEFANG_ALWAYS if $Key =~ 'position' && $Value =~ 'fixed';
}
}
$i++;
}
}
# Callback for custom handling HTML tag attributes
sub DefangAttribsCallback {
my ($Self, $Defang, $lcTag, $lcAttrKey, $AttrValR, $HtmlR) = @_;
# Change all 'border' attribute values to zero.
$$AttrValR = '0' if $lcAttrKey eq 'border';
# Defang all 'src' attributes
return DEFANG_ALWAYS if $lcAttrKey eq 'src';
return DEFANG_NONE;
}
=head1 DESCRIPTION
This module accepts an input HTML and/or CSS string and removes any executable code including scripting, embedded objects, applets, etc., and neutralises any XSS attacks. A whitelist based approach is used which means only HTML known to be safe is allowed through.
HTML::Defang uses a custom html tag parser. The parser has been designed and tested to work with nasty real world html and to try and emulate as close as possible what browsers actually do with strange looking constructs. The test suite has been built based on examples from a range of sources such as http://ha.ckers.org/xss.html and http://imfo.ru/csstest/css_hacks/import.php to ensure that as many as possible XSS attack scenarios have been dealt with.
HTML::Defang can make callbacks to client code when it encounters the following:
=over 4
=item *
When a specified tag is parsed
=item *
When a specified attribute is parsed
=item *
When a URL is parsed as part of an HTML attribute, or CSS property value.
=item *
When style data is parsed, as part of an HTML style attribute, or as part of an HTML <style> tag.
=back
The callbacks include details about the current tag/attribute that is being parsed, and also gives a scalar reference to the input HTML. Querying pos() on the input HTML should indicate where the module is with parsing. This gives the client code flexibility in working with HTML::Defang.
HTML::Defang can defang whole tags, any attribute in a tag, any URL that appear as an attribute or style property, or any CSS declaration in a declaration block in a style rule. This helps to precisely block the most specific unwanted elements in the contents(for example, block just an offending attribute instead of the whole tag), while retaining any safe HTML/CSS.
=cut
use Exporter;
our @ISA = ('Exporter');
%EXPORT_TAGS = (all => [qw(@FormTags DEFANG_NONE DEFANG_ALWAYS DEFANG_DEFAULT)]);
Exporter::export_ok_tags('all');
use strict;
use warnings;
our $VERSION=1.04;
use constant DEFANG_NONE => 0;
use constant DEFANG_ALWAYS => 1;
use constant DEFANG_DEFAULT => 2;
use Encode;
my $HasScalarReadonly = 0;
BEGIN { eval "use Scalar::Readonly qw(readonly_on);" && ($HasScalarReadonly = 1); }
our @FormTags = qw(form input textarea select option button fieldset label legend multicol nextid optgroup);
# Some regexps for matching HTML tags + key=value attributes
my $AttrKeyStartLineRE = qr/(?:[^=<>\s\/\\]{1,}|[\/]\s*(?==))/;
my $AttrKeyRE = qr/(?<=[\s'"\/])$AttrKeyStartLineRE/;
my $AttrValRE = qr/[^>\s'"`][^>\s]*|'[^']{0,16384}?'|"[^"]{0,16384}?"|`[^`]{0,16384}?`/;
my $AttributesRE = qr/(?:(?:$AttrKeyRE\s*)?(?:=\s*$AttrValRE\s*)?)*/;
my $TagNameRE = qr/[A-Za-z][A-Za-z0-9\#\&\;\:\!_-]*/;
my $StyleSelectors = qr/[^{}\s][^{}]*?/;
my $StyleName = qr/[^:}\s][^:{}]*?/;
my $StyleValue = qr/[^;}\s][^;}]*|.*$/;
my $StyleRule = qr/$StyleName\s*:\s*$StyleValue\s*/;
my $StyleRules = qr/\s*(?:$StyleRule)?(?:;\s*$StyleRule)*(?:;\s*)?/;
my $Fonts = qr/"?([A-Za-z0-9\s-]+)"?/;
my $Alignments = qr/(absbottom|absmiddle|all|autocentre|baseline|bottom|center|justify|left|middle|none|right|texttop|top)/;
my $Executables = '([^@]\.com|'.
'.*\.(exe|cmd|bat|pif|scr|sys|sct|lnk|dll'.
'|vbs?|vbe|hta|shb|shs|hlp|chm|eml|wsf|wsh|js'.
'|asx|wm.|mdb|mht|msi|msp|cpl|lib|reg))';
my $SrcBanStd = qr/^([A-Za-z]*script|.*\&\{|mocha|about|opera|mailto:|hcp:|\/(dev|proc)|\\|file|smb|cid:${Executables}(@|\?|$))/i;
my %Rules =
(
# Disallow unknown tags by default
"_unknown" => qr/.*/,
"align" => qr/^${Alignments}$/i,
"alnum" => qr/^[A-Za-z0-9_.-]+$/,
"boolean" => qr/^(0|1|true|yes|no|false)$/,
"charset" => qr/^[A-Za-z0-9_][A-Za-z0-9_.-]*$/,
"class" => qr/^[A-Za-z0-9_.:\s-]*$/,
"color" => qr/^#?[0-9A-Z]+$/i,
"coords" => qr/^(\d+,)+\d+$/i,
"datetime" => qr/^\d\d\d\d-\d\d-\d\d.{0,5}\d\d:\d\d:\d\d.{0,5}$/,
"dir" => qr/^(ltr|rtl)$/i,
"eudora" => qr/^(autourl)$/i,
"font-face" => qr/^((${Fonts})[,\s]*)+$/i,
"form-enctype" => qr/^(application\/x-www-form-urlencoded|multipart\/form-data)$/i,
"form-method" => qr/^(get|post)$/i,
"frame" => qr/^(void|above|below|hsides|vsides|lhs|rhs|box|border)$/i,
# href: Not javascript, vbs or vbscript
"href" => [ qr/(?i:^([a-z]*script\s*:|.*\&\{|mocha|hcp|opera\s*:|about\s*:|smb|\/dev\/|<))|[^\x00-\x7f]/ ],
"usemap-href" => qr/^#[A-Za-z0-9_.-]+$/, # this is not really a href at all!
"input-size" => qr/^(\d{1,4})$/, # some browsers freak out with very large widgets
"input-type" => qr/^(button|checkbox|file|hidden|image|password|radio|readonly|reset|submit|text)$/i,
"integer" => qr/^(-|\+)?\d+$/,
"number" => qr/^(-|\+)?[\d.,]+$/,
# language: Not javascript, vbs or vbscript
"language" => qr/^(XML)$/i,
"media" => qr/^((screen|print|projection|braille|speech|all)[,\s]*)+$/i,
"meta:name" => qr/^(author|progid|originator|generator|keywords|description|content-type|pragma|expires)$/i,
# mime-type: Not javascript
"mime-type" => qr/^(cite|text\/(plain|css|html|xml))$/i,
"list-type" => qr/^(none,a,i,upper-alpha,lower-alpha,upper-roman,lower-roman,decimal,disc,square,circle,round)$/i,
# "rel" => qr/^((copyright|author|stylesheet)\s*)+$/i,
"rel" => qr/^((copyright|author)\s*)+$/i, # XXX external stylesheets can contain scripting, so kill them
"rules" => qr/^(none|groups|rows|cols|all)$/i,
"scope" => qr/^(row|col|rowgroup|colgroup)$/i,
"shape" => qr/^(rect|rectangle|circ|circle|poly|polygon)$/i,
# The following two are for URLs we expect to be auto-loaded by the browser,
# because they are within a frame, image or something like that.
# "src" => qr/^([a-z]+):|^[\w\.\/\%]+$/i,
"src" => qr/^https?:\/\/|^[\w.\/%]+$/i,
# "style" => qr/^([A-Za-z0-9_-]+\\s*:\\s*(yes|no)|text-align\\s*:\\s*$alignments|((background|(background-|font-)?color)\\s*:\\s*(\\#?[A-Z0-9]+)?|((margin|padding|border)-(right|left)|tab-interval|height|width)\\s*:\\s*[\\d\\.]+(pt|px)|font(-family|-size|-weight|)\\s*:(\\s*[\\d\\.]+(pt|px)|\\s*$fonts)+)[;\\s]*)+\$/i,
# "style" => qr/expression|eval|script:|mocha:|\&{|\@import|(?<!background-)position:|background-image/i, # XXX there are probably a million more ways to cause trouble with css!
"style" => qr/^.*$/s,
#kc In addition to this, we could strip all 'javascript:|expression|' etc. from all attributes(in attribute_cleanup())
"stylesheet" => [ qr/expression|eval|script:|mocha:|\&\{|\@import/i ], # stylesheets are forbidden if Embedded => 1. css positioning can be allowed in an iframe.
# NB see also `process_stylesheet' below
"style-type" => [ qr/script|mocha/i ],
"size" => qr/^[\d.]+(px|%)?$/i,
"target" => qr/^[A-Za-z0-9_][A-Za-z0-9_.-]*$/,
"base-href" => qr/^https?:\/\/[\w.\/]+$/,
"anything" => qr/^.*$/, #[ 0, 0 ],
"meta:content" => [ qr// ],
);
my %CommonAttributes =
(
# Core attributes
"class" => "class",
"id" => "alnum",
"name" => "alnum",
"style" => "style",
"accesskey" => "alnum",
"tabindex" => "integer",
"title" => "anything",
# Language attributes
"dir" => "dir",
"lang" => "alnum",
"language" => "language",
"longdesc" => "anything",
# Height, width, alignment, etc.
"align" => "align",
"bgcolor" => "color",
"bottommargin" => "size",
"clear" => "align",
"color" => "color",
"height" => "size",
"leftmargin" => "size",
"marginheight" => "size",
"marginwidth" => "size",
"nowrap" => "anything",
"rightmargin" => "size",
"scroll" => "boolean",
"scrolling" => "boolean",
"topmargin" => "size",
"valign" => "align",
"width" => "size",
);
my %ListAttributes =
(
"compact" => "anything",
"start" => "integer",
"type" => "list-type",
);
my %TableAttributes =
(
"axis" => "alnum",
"background" => "src",
"border" => "number",
"bordercolor" => "color",
"bordercolordark" => "color",
"bordercolorlight" => "color",
"padding" => "integer",
"spacing" => "integer",
"cellpadding" => "integer",
"cellspacing" => "integer",
"cols" => "anything",
"colspan" => "integer",
"char" => "alnum",
"charoff" => "integer",
"datapagesize" => "integer",
"frame" => "frame",
"frameborder" => "boolean",
"framespacing" => "integer",
"headers" => "anything",
"rows" => "anything",
"rowspan" => "size",
"rules" => "rules",
"scope" => "scope",
"span" => "integer",
"summary" => "anything"
);
my %UrlRules = (
"src" => 1,
"href" => 1,
"base-href" => 1,
# cite => 1,
# action => 1,
);
my %Tags = (
script => \&defang_script,
style => \&defang_style,
"html" => 100,
#
# Safe elements commonly found in the <head> block follow.
#
"head" => 2,
"base" =>
{
"href" => "base-href",
"target" => "target",
},
# TODO: Deal with link below later
#"link" => \$r_link,
# {
# "rel" => "rel",
# "rev" => "rel",
# "src" => "src",
# "href" => "src", # Might be auto-loaded by the browser!!
# "charset" => "charset",
# "media" => "media",
# "target" => "target",
# "type" => "mime-type",
# },
"meta" =>
{
"_score" => 2,
"content" => "meta:content",
"http-equiv" => "meta:name",
"name" => "meta:name",
"charset" => "charset",
},
"title" => 2,
#
# Safe elements commonly found in the <body> block follow.
#
"body" =>
{
"_score" => 2,
"link" => "color",
"alink" => "color",
"vlink" => "color",
"background" => "src",
"nowrap" => "boolean",
"text" => "color",
"vlink" => "color",
},
"a" =>
{
"charset" => "charset",
"coords" => "coords",
"href" => "href",
"shape" => "shape",
"target" => "target",
"type" => "mime-type",
"eudora" => "eudora",
"notrack" => "anything",
},
"address" => 1,
"area" =>
{
"alt" => "anything",
"coords" => "coords",
"href" => "href",
"nohref" => "anything",
"shape" => "shape",
"target" => "target",
},
"applet" => 0,
"basefont" =>
{
"face" => "font-face",
"family" => "font-face",
"back" => "color",
"size" => "number",
"ptsize" => "number",
},
"bdo" => 1,
"bgsound" =>
{
"balance" => "integer",
"delay" => "integer",
"loop" => "alnum",
"src" => "src",
"volume" => "integer",
},
"blockquote" =>
{
"cite" => "href",
"type" => "mime-type",
},
"br" => 1,
"button" => # FORM
{
"type" => "input-type",
"disabled" => "anything",
"value" => "anything",
"tabindex" => "number",
},
"caption" => 1,
"center" => 1,
"col" => \%TableAttributes,
"colgroup" => \%TableAttributes,
"comment" => 1,
"dd" => 1,
"del" =>
{
"cite" => "href",
"datetime" => "datetime",
},
"dir" => \%ListAttributes,
"div" => 1,
"dl" => \%ListAttributes,
"dt" => 1,
"embed" => 0,
"fieldset" => 1, # FORM
"font" =>
{
"face" => "font-face",
"family" => "font-face",
"back" => "color",
"size" => "number",
"ptsize" => "number",
},
"form" => # FORM
{
"method" => "form-method",
"action" => "href",
"enctype" => "form-enctype",
"accept" => "anything",
"accept-charset" => "anything",
},
"hr" =>
{
"size" => "number",
"noshade" => "anything",
},
"h1" => 1,
"h2" => 1,
"h3" => 1,
"h4" => 1,
"h5" => 1,
"h6" => 1,
"iframe" => 0,
"ilayer" => 0,
"img" =>
{
"alt" => "anything",
"border" => "size",
"dynsrc" => "src",
"hspace" => "size",
"ismap" => "anything",
"loop" => "alnum",
"lowsrc" => "src",
"nosend" => "alnum",
"src" => "src",
"start" => "alnum",
"usemap" => "usemap-href",
"vspace" => "size",
},
"inlineinput" => 0,
"input" => # FORM
{
"type" => "input-type",
"disabled" => "anything",
"value" => "anything",
"maxlength" => "input-size",
"size" => "input-size",
"readonly" => "anything",
"tabindex" => "number",
"checked" => "anything",
"accept" => "anything",
# for type "image":
"alt" => "anything",
"border" => "size",
"dynsrc" => "src",
"hspace" => "size",
"ismap" => "anything",
"loop" => "alnum",
"lowsrc" => "src",
"nosend" => "alnum",
"src" => "src",
"start" => "alnum",
"usemap" => "usemap-href",
"vspace" => "size",
},
"ins" =>
{
"cite" => "href",
"datetime" => "datetime",
},
"isindex" => 0,
"keygen" => 0,
"label" => # FORM
{
"for" => "alnum",
},
"layer" => 0,
"legend" => 1, # FORM
"li" => {
"value" => "integer",
},
"listing" => 0,
"map" => 1,
"marquee" => 0,
"menu" => \%ListAttributes,
"multicol" => 0,
"nextid" => 0,
"nobr" => 0,
"noembed" => 1,
"nolayer" => 1,
"noscript" => 1,
"noembed" => 1,
"object" => 0,
"ol" => \%ListAttributes,
"optgroup" => # FORM
{
"disabled" => "anything",
"label" => "anything",
},
"option" => # FORM
{
"disabled" => "anything",
"label" => "anything",
"selected" => "anything",
"value" => "anything",
},
"o:p" => 1,
"p" => 1,
"param" => 0,
"plaintext"=> 0,
"pre" => 1,
"rt" => 0,
"ruby" => 0,
"select" => # FORM
{
"disabled" => "anything",
"multiple" => "anything",
"size" => "input-size",
"tabindex" => "number",
},
"spacer" => 0,
"span" => 1,
"spell" => 0,
"sound" =>
{
"delay" => "number",
"loop" => "integer",
"src" => "src",
},
"table" => \%TableAttributes,
"tbody" => \%TableAttributes,
"textarea" => # FORM
{
"cols" => "input-size",
"rows" => "input-size",
"disabled" => "anything",
"readonly" => "anything",
"tabindex" => "number",
"wrap" => "anything",
},
"td" => \%TableAttributes,
"tfoot" => \%TableAttributes,
"th" => \%TableAttributes,
"thead" => \%TableAttributes,
"tr" => \%TableAttributes,
"ul" => \%ListAttributes,
"wbr" => 1,
"xml" => 0,
"xmp" => 0,
"x-html" => 0,
"x-tab" => 1,
"x-sigsep" => 1,
# Character formatting
"abbr" => 1,
"acronym"=> 1,
"big" => 1,
"blink" => 0,
"b" => 1,
"cite" => 1,
"code" => 1,
"dfn" => 1,
"em" => 1,
"i" => 1,
"kbd" => 1,
"q" => 1,
"s" => 1,
"samp" => 1,
"small" => 1,
"strike" => 1,
"strong" => 1,
"sub" => 1,
"sup" => 1,
"tt" => 1,
"u" => 1,
"var" => 1,
#
# Safe elements commonly found in the <frameset> block follow.
#
"frameset" => 0,
"frame" => 0,
"noframes" => 1,
);
my %MathMLTags = (
mi => 1,
mn => 1,
mo => 1,
mtext => 1,
mspace => 1,
ms => 1,
mglyph => 1,
mrow => 1,
mfrac => 1,
msqrt => 1,
mroot => 1,
mstyle => 1,
merror => 1,
mpadded => 1,
mphantom => 1,
mfenced => 1,
menclose => 1,
msub => 1,
msup => 1,
msubsup => 1,
munder => 1,
mover => 1,
munderover => 1,
mmultiscripts => 1,
mtable => 1,
mtr => 1,
mtd => 1,
maligngroup => 1,
malignmark => 1,
mlabeledtr => 1,
maction => 1,
);
# Some entity conversions for attributes
my %EntityToChar = (quot => '"', apos => "'", amp => '&', 'lt' => '<', 'gt' => '>');
my %CharToEntity = reverse %EntityToChar;
my %QuoteRe = ('"' => qr/(["&<>])/, "'" => qr/(['&<>])/, "" => qr/(["&<>])/);
# Default list of mismatched tags to track
my %MismatchedTags = map { $_ => 1 } qw(table tbody thead tr td th font div span pre center blockquote dl ul ol h1 h2 h3 h4 h5 h6 fieldset tt p noscript a);
# When fixing mismatched tags, sometimes a close tag
# shouldn't close all the way out
# For example, consider:
# <table><tr><td><table><tr></td>
# A naive version would see the ending </td>, and thus
# try to fix the mismatched tags by doing:
# <table><tr><td><table><tr></tr></table></td>
# This is not what a browser does. So given a tag, we
# give a list of closing tags which cause us to stop
# and not close any more
my %MismatchedTagNest = (
table => [ qw(tbody thead tfoot tr th td caption colgroup col) ],
tbody => [ qw(tr th td) ],
tr => [ qw(th td) ],
font => [ '' ],
);
# Convert to hash of hashes
$_ = { map { $_ => 1 } @$_ } for values %MismatchedTagNest;
# If we see a table, we should expect to see a tbody
# next. If not, we need to add it because the browser
# will implicitly open it!
# For each tag, give list of tags that should follow. If
# we don't find one of them following, we open a new
# implicit tag of the first one in the list
# eg. <table><td> -> <table><tr><td>
my %ImplicitOpenTags = (
table => [ qw(tr tbody thead tfoot caption colgroup col) ],
thead => [ qw(tr) ],
tbody => [ qw(tr) ],
tr => [ qw(td th) ],
);
# Convert to hash of hashes
$_ = { default => $_->[0], map { $_ => 1 } @$_ } for values %ImplicitOpenTags;
my %BlockTags = map { $_ => 1 } qw(h1 h2 h3 h4 h5 h6 p div pre plaintext address blockquote center form table tbody thead tfoot tr td caption colgroup col);
my %InlineTags = map { $_ => 1 } qw(span abbr acronym q sub sup cite code em kbd samp strong var dfn strike b i u s tt small big nobr a);
my %NestInlineTags = map { $_ => 1 } qw(span abbr acronym q sub sup cite code em kbd samp strong var dfn strike b i u s tt small big nobr);
=head1 CONSTRUCTOR
=over 4
=cut
=item I<HTML::Defang-E<gt>new(%Options)>
Constructs a new HTML::Defang object. The following options are supported:
=over 4
=item B<Options>
=over 4
=item B<tags_to_callback>
Array reference of tags for which a call back should be made. If a tag in this array is parsed, the subroutine tags_callback() is invoked.
=item B<attribs_to_callback>
Array reference of tag attributes for which a call back should be made. If an attribute in this array is parsed, the subroutine attribs_callback() is invoked.
=item B<tags_callback>
Subroutine reference to be invoked when a tag listed in @$tags_to_callback is parsed.
=item B<attribs_callback>
Subroutine reference to be invoked when an attribute listed in @$attribs_to_callback is parsed.
=item B<url_callback>
Subroutine reference to be invoked when a URL is detected in an HTML tag attribute or a CSS property.
=item B<css_callback>
Subroutine reference to be invoked when CSS data is found either as the contents of a 'style' attribute in an HTML tag, or as the contents of a <style> HTML tag.
=item B<fix_mismatched_tags>
This property, if set, fixes mismatched tags in the HTML input. By default, tags present in the default %mismatched_tags_to_fix hash are fixed. This set of tags can be overridden by passing in an array reference $mismatched_tags_to_fix to the constructor. Any opened tags in the set are automatically closed if no corresponding closing tag is found. If an unbalanced closing tag is found, that is commented out.
=item B<mismatched_tags_to_fix>
Array reference of tags for which the code would check for matching opening and closing tags. See the property $fix_mismatched_tags.
=item B<context>
You can pass an arbitrary scalar as a 'context' value that's then passed as the first parameter to all callback functions. Most commonly this is something like '$Self'
=item B<allow_double_defang>
If this is true, then tag names and attribute names which already begin
with the defang string ("defang_" by default) will have an additional
copy of the defang string prepended if they are flagged to be defanged
by the return value of a callback, or if the tag or attribute name
is unknown.
The default is to assume that tag names and attribute names beginning
with the defang string are already made safe, and need no further
modification, even if they are flagged to be defanged by the
return value of a callback. Any tag or attribute modifications made
directly by a callback are still performed.
=item B<Debug>
If set, prints debugging output.
=back
=back
=back
=cut
sub new {
my $Proto = shift;
my $Class = ref($Proto) || $Proto;
my %Opts = @_;
# my $Context = shift;
my ($tags_to_callback, $attribs_to_callback) = ($Opts{"tags_to_callback"}, $Opts{"attribs_to_callback"});
my %tags_to_callback = map { $_ => 1 } @$tags_to_callback if $tags_to_callback;
my %attribs_to_callback = map { $_ => 1 } @$attribs_to_callback if $attribs_to_callback;
my %mismatched_tags_to_fix = %MismatchedTags;
%mismatched_tags_to_fix = map { $_ => 1 } @{$Opts{'mismatched_tags_to_fix'}} if $Opts{'mismatched_tags_to_fix'};
my $Self = {
defang_string => 'defang_',
allow_double_defang => $Opts{allow_double_defang},
tags_to_callback => \%tags_to_callback,
tags_callback => $Opts{tags_callback},
attribs_to_callback => \%attribs_to_callback,
attribs_callback => $Opts{attribs_callback},
url_callback => $Opts{url_callback},
css_callback => $Opts{css_callback},
mismatched_tags_to_fix => \%mismatched_tags_to_fix,
fix_mismatched_tags => $Opts{fix_mismatched_tags},
context => $Opts{context},
opened_tags => [],
opened_tags_count => {},
opened_nested_tags => [],
Debug => $Opts{Debug},
};
bless ($Self, $Class);
return $Self;
}
=head1 CALLBACK METHODS
=over 4
=cut
=item B<COMMON PARAMETERS>
A number of the callbacks share the same parameters. These common parameters are documented here. Certain variables may have specific meanings in certain callbacks, so be sure to check the documentation for that method first before referring this section.
=over 4
=item I<$context>
You can pass an arbitrary scalar as a 'context' value that's then passed as the first parameter to all callback functions. Most commonly this is something like '$Self'
=item I<$Defang>
Current HTML::Defang instance
=item I<$OpenAngle>
Opening angle(<) sign of the current tag.
=item I<$lcTag>
Lower case version of the HTML tag that is currently being parsed.
=item I<$IsEndTag>
Has the value '/' if the current tag is a closing tag.
=item I<$AttributeHash>
A reference to a hash containing the attributes of the current tag and
their values. Each value is a scalar reference to the value, rather
than just a scalar value. You can add attributes (remember to make it a
scalar ref, eg $AttributeHash{"newattr"} = \"newval"), delete attributes,
or modify attribute values in this hash, and any changes you make will
be incorporated into the output HTML stream.
The attribute values will have any entity references decoded before
being passed to you, and any unsafe values we be re-encoded back into
the HTML stream.
So for instance, the tag:
<div title="<"Hi there <">
Will have the attribute hash:
{ title => \q[<"Hi there <] }
And will be turned back into the HTML on output:
<div title="<"Hi there <">
=item I<$CloseAngle>
Anything after the end of last attribute including the closing HTML angle(>)
=item I<$HtmlR>
A scalar reference to the input HTML. The input HTML is parsed using
m/\G$SomeRegex/c constructs, so to continue from where HTML:Defang left,
clients can use m/\G$SomeRegex/c for further processing on the input. This
will resume parsing from where HTML::Defang left. One can also use the
pos() function to determine where HTML::Defang left off. This combined
with the add_to_output() method should give reasonable flexibility for
the client to process the input.
=item I<$OutR>
A scalar reference to the processed output HTML so far.
=back
=item I<tags_callback($context, $Defang, $OpenAngle, $lcTag, $IsEndTag, $AttributeHash, $CloseAngle, $HtmlR, $OutR)>
If $Defang->{tags_callback} exists, and HTML::Defang has parsed a tag preset in $Defang->{tags_to_callback}, the above callback is made to the client code. The return value of this method determines whether the tag is defanged or not. More details below.
=over 4
=item B<Return values>
=over 4
=item DEFANG_NONE
The current tag will not be defanged.
=item DEFANG_ALWAYS
The current tag will be defanged.
=item DEFANG_DEFAULT
The current tag will be processed normally by HTML:Defang as if there was no callback method specified.
=back
=back
=item I<attribs_callback($context, $Defang, $lcTag, $lcAttrKey, $AttrVal, $HtmlR, $OutR)>
If $Defang->{attribs_callback} exists, and HTML::Defang has parsed an attribute present in $Defang->{attribs_to_callback}, the above callback is made to the client code. The return value of this method determines whether the attribute is defanged or not. More details below.
=over 4
=item B<Method parameters>
=over 4
=item I<$lcAttrKey>
Lower case version of the HTML attribute that is currently being parsed.
=item I<$AttrVal>
Reference to the HTML attribute value that is currently being parsed.
See $AttributeHash for details of decoding.
=back
=item B<Return values>
=over 4
=item DEFANG_NONE
The current attribute will not be defanged.
=item DEFANG_ALWAYS
The current attribute will be defanged.
=item DEFANG_DEFAULT
The current attribute will be processed normally by HTML:Defang as if there was no callback method specified.
=back
=back
=item I<url_callback($context, $Defang, $lcTag, $lcAttrKey, $AttrVal, $AttributeHash, $HtmlR, $OutR)>
If $Defang->{url_callback} exists, and HTML::Defang has parsed a URL, the above callback is made to the client code. The return value of this method determines whether the attribute containing the URL is defanged or not. URL callbacks can be made from <style> tags as well style attributes, in which case the particular style declaration will be commented out. More details below.
=over 4
=item B<Method parameters>
=over 4
=item I<$lcAttrKey>
Lower case version of the HTML attribute that is currently being parsed. However if this callback is made as a result of parsing a URL in a style attribute, $lcAttrKey will be set to the string I<style>, or will be set to I<undef> if this callback is made as a result of parsing a URL inside a style tag.
=item I<$AttrVal>
Reference to the URL value that is currently being parsed.
=item I<$AttributeHash>
A reference to a hash containing the attributes of the current tag and their values. Each value is a scalar reference to the value,
rather than just a scalar value. You can add attributes (remember to make it a scalar ref, eg $AttributeHash{"newattr"} = \"newval"), delete attributes, or modify attribute values in this hash, and any changes you make will be incorporated into the output HTML stream. Will be set to I<undef> if the callback is made due to URL in a <style> tag or attribute.
=back
=item B<Return values>
=over 4
=item DEFANG_NONE
The current URL will not be defanged.
=item DEFANG_ALWAYS
The current URL will be defanged.
=item DEFANG_DEFAULT
The current URL will be processed normally by HTML:Defang as if there was no callback method specified.
=back
=back
=item I<css_callback($context, $Defang, $Selectors, $SelectorRules, $lcTag, $IsAttr, $OutR)>
If $Defang->{css_callback} exists, and HTML::Defang has parsed a <style> tag or style attribtue, the above callback is made to the client code. The return value of this method determines whether a particular declaration in the style rules is defanged or not. More details below.
=over 4
=item B<Method parameters>
=over 4
=item I<$Selectors>
Reference to an array containing the selectors in a style tag or attribute.
=item I<$SelectorRules>
Reference to an array containing the style declaration blocks of all selectors in a style tag or attribute. Consider the below CSS:
a { b:c; d:e}
j { k:l; m:n}
The declaration blocks will get parsed into the following data structure:
[
[
[ "b", "c", DEFANG_DEFAULT ],
[ "d", "e", DEFANG_DEFAULT ]
],
[
[ "k", "l", DEFANG_DEFAULT ],
[ "m", "n", DEFANG_DEFAULT ]
]
]
So, generally each property:value pair in a declaration is parsed into an array of the form
["property", "value", X]
where X can be DEFANG_NONE, DEFANG_ALWAYS or DEFANG_DEFAULT, and DEFANG_DEFAULT the default value. A client can manipulate this value to instruct HTML::Defang to defang this property:value pair.
DEFANG_NONE - Do not defang
DEFANG_ALWAYS - Defang the style:property value
DEFANG_DEFAULT - Process this as if there is no callback specified
=item I<$IsAttr>
True if the currently processed item is a style attribute. False if the currently processed item is a style tag.
=back
=back
=back
=cut
=head1 METHODS
=over 4
=item B<PUBLIC METHODS>
=over 4
=item I<defang($InputHtml)>
Cleans up $InputHtml of any executable code including scripting, embedded objects, applets, etc., and defang any XSS attacks.
=over 4
=item B<Method parameters>
=over 4
=item I<$InputHtml>
The input HTML string that needs to be sanitized.
=back
=back
Returns the cleaned HTML. If fix_mismatched_tags is set, any tags that appear in @$mismatched_tags_to_fix that are unbalanced are automatically commented or closed.
=cut
sub defang {
my $Self = shift;
my $I = shift;
my $Debug = $Self->{Debug};
my $HeaderCharset = shift;
warn("defang HeaderCharset=$HeaderCharset") if $Debug;
my $FallbackCharset = shift;
warn("defang FallbackCharset=$FallbackCharset") if $Debug;
$Self->{Reentrant}++;
# Get encoded characters
# $Self->{Charset} = $Self->get_applicable_charset($_, $HeaderCharset, $FallbackCharset);
# warn("defang Charset=$Self->{Charset}") if $Self->{Debug};
# if ($Self->{Charset}) {
# $I =~ s/(.)/chr(ord($1) & 127)/ge if $Self->{Charset} eq "US-ASCII";
# my $Encoder = Encode::Encoder->new($I, $Self->{Charset});
# $I = $Encoder->bytes($Self->{Charset});
# }
# We pass a ref to $I to each callback. It should
# never be modified because we use a m/\G.../gc loop
# on it. If possible, stop people modifying it
readonly_on($I) if $HasScalarReadonly;
# It seems regexp matching on perl unicode strings can be *way*
# slower than byte string (defang 1M email = 100 seconds unicode,
# 5 seconds bytes).
# So we're going to do a bit of a hack. Engaged "use bytes" to do
# byte matching everywhere, but since we know we'll be matching
# on correct boundaries to make up full code points in utf-8, we'll
# turn on the magic utf-8 flag again for those values
my $UTF8Input = $Self->{UTF8Input} = Encode::is_utf8($I);
# Force byte matching everywhere (see above)
use bytes;
# Strip all NUL chars
$I =~ s/\0//g;
# Output buffer
my $O = '';
# This parser uses standard /\G.../gc matching, so have to be careful
# to not reset pos() on the string
#
# Previously we tried an "eating" parser (s/^.../, or /^.../ + substr),
# which in theory should be fast with perls internal string offset
# feature, but it seems offset doesn't work on unicode strings,
# so you end up with a slow parser because of string reallocations
while (1) {
# walk to next < (testing in 5.8.8 shows .*? is faster than [^<]* or [^<]*?)
if ($I =~ m{\G(.*?)<}gcso) {
# Everything before tag goes into the output
$O .= $1;
# All tags default to open/close with </>
my ($OpenAngle, $CloseAngle) = ('<', '>');
my $IsEndTag = $I =~ m{\G/}gcso ? '/' : '';
# It's a standard tag
if ($I =~ m{\G($TagNameRE)}gcso) {
my $Tag = $1;
my $TagTrail = $I =~ m{\G([\s/]+)}gcso ? $1 : '';
warn "defang IsEndTag=$IsEndTag Tag=$Tag" if $Debug;
# Skip attribute parsing if none
my @Attributes;
goto NoParseAttributes if $I =~ m{\G>}gcso;
# Pull off any trailing component after the tag
# Now match all key=value attributes
while ($I =~ m{\G(?:($AttrKeyStartLineRE)(\s*))?(?:(=\s*)($AttrValRE)(\s*))?}gcso) {
last if !defined($1) && !defined($4);
my ($Attribute, $AttrTrail, $Equals, $AttrVal, $AttrValTrail) = ($1, $2, $3, $4, $5);
my ($AttrQuote, $AttrValWithoutQuote) = '';
if (defined($4) && $4 =~ /^([`"']?)(.*)\1$/s) {
# IE supports `, but nothing else does, turn it into "
$AttrQuote = $1 eq '`' ? '"' : $1;
$AttrValWithoutQuote = $2;
}
# Turn on utf-8 for things that might be
Encode::_utf8_on($Attribute) if $UTF8Input;
Encode::_utf8_on($AttrValWithoutQuote) if $UTF8Input;
push @Attributes, [ $Attribute, $AttrTrail, $Equals, $AttrQuote, $AttrValWithoutQuote, $AttrQuote, $AttrValTrail ];
warn "defang AttributeKey=$1 AttrQuote=$AttrQuote AttributeValue=$Attribute" if $Debug;
}
# Better be at end of attributes, or attach our own ending tag
if ($I =~ m{\G(?:(\s*[/\\]*\s*(?:--)?\s*)?>|([\s/-]*))}gcs) {
$CloseAngle = $1 ? $1 . '>' : ($2 ? $2 . '>' : '>');
}
NoParseAttributes:
my $Defang = DEFANG_ALWAYS;
my $TagOps = $Tags{lc $Tag};
# Process this tag
if (ref $TagOps eq "CODE") {
warn "process_tag Found CODE reference" if $Debug;
$Defang = $Self->${TagOps}(\$O, \$I, $TagOps, \$OpenAngle, $IsEndTag, $Tag, $TagTrail, \@Attributes, \$CloseAngle);
} else {
warn "process_tag Found regular tag" if $Debug;
$Defang = $Self->defang_attributes(\$O, \$I, $TagOps, \$OpenAngle, $IsEndTag, $Tag, $TagTrail, \@Attributes, \$CloseAngle);
}
die "Callback reset pos on Tag=$Tag IsEndTag=$IsEndTag" if !defined pos($I);
warn "defang Defang=$Defang" if $Debug;
# Build tag content, because if we defang, we have to remove --'s within it
# @Attributes can have unicode values, but we're within "use bytes", so it's flattened ok
my $TagContent = $TagTrail . join("", grep { defined } map { @$_ } @Attributes);
$Defang ||= $Self->track_tags(\$O, \$I, $TagOps, \$OpenAngle, $IsEndTag, $Tag, \$TagContent)
if $Self->{fix_mismatched_tags} && ($Defang != DEFANG_ALWAYS);
# defang unknown tags
if ($Defang != DEFANG_NONE) {
warn "defang Defanging $Tag" if $Debug;
$Tag = $Self->{defang_string} . $Tag
if $Self->{allow_double_defang}
|| (
substr( $Tag, 0, length( $Self->{defang_string} ) ) ne
$Self->{defang_string} );
$TagContent =~ s/--//g;
$Tag =~ s/--//g;
$OpenAngle =~ s/^</<!--/;
$CloseAngle =~ s/>$/-->/;
}
# And put it all back together into the output string
$O .= $OpenAngle . $IsEndTag . $Tag . $TagContent . $CloseAngle;
# It's a comment of some sort. We are looking for regular HTML comment, XML CDATA section and
# IE conditional comments
# Refer http://msdn.microsoft.com/en-us/library/ms537512.aspx for IE conditional comment information
} elsif ($I =~ m{\G(!)((?:\[CDATA\[|(?:--)?\[if|--)?)}gcis) {
my ($Comment, $CommentDelim) = ($1, $2);
warn "defang Comment=$Comment CommentDelim=$CommentDelim" if $Debug;
# Find the appropriate closing delimiter
my $IsCDATA = $CommentDelim eq "[CDATA[";
my $ClosingCommentDelim = $IsCDATA ? "]]" : $CommentDelim;
my $EndRestartCommentsText = '';
# Handle IE conditionals specially. We can have <![if ...]>, <!--[if ...]> and <!--[if ...]-->
# for the third case, we just want to immediately match the -->
if ($CommentDelim =~ /((?:--)?)\[if/) {
my $ConditionalDelim = $1;
$EndRestartCommentsText = '--' if $ConditionalDelim eq '';
$ClosingCommentDelim = $CommentDelim;
if ($I !~ m{\G[^\]]*\]-->}gcis) {
$ClosingCommentDelim = "<![endif]$ConditionalDelim";
}
}
warn "defang ClosingCommentDelim=$ClosingCommentDelim" if $Debug;
my ($CommentStartText, $CommentEndText) = ("--/*SC*/", "/*EC*/--");
# Convert to regular HTML comment
$O .= $OpenAngle . $Comment . $CommentStartText;
# Find closing comment
if ($I =~ m{\G(.*?)(\Q${ClosingCommentDelim}\E!?\s*)(>)}gcis || $I =~ m{\G(.*?)(--)(>)}gcis) {
my ( $StartTag, $CommentData, $ClosingTag, $CloseAngle ) =
( $CommentDelim, $1, $2, $3 );
if ($EndRestartCommentsText && $CommentData =~ s/^(.*?)(>.*)$/$2/s) {
$StartTag .= $1;
}
# Strip all HTML comment markers
$StartTag =~ s/--//g;
$CommentData =~ s/--//g;
$ClosingTag =~ s/--//g;
$StartTag .= $EndRestartCommentsText if $CommentData;
$ClosingTag =~ s{^(<!)}{$1$EndRestartCommentsText} if $CommentData;
# Put it all into the output
$O .= $StartTag
. ($EndRestartCommentsText ? $Self->defang($CommentData) : $CommentData)
. $ClosingTag
. $CommentEndText
. $CloseAngle;
# No closing comment, so we add that
} else {
$I =~ m/\G(.*)$/gcs || die "Remainder of line match failed";
my $Data = $1;
$Data =~ s/--//g;
# Output
$O .= $Data . $CommentEndText . ">";
}
# XML processing instruction
} elsif ($I =~ m{\G(\?)}gcs) {
my ($Processing) = ($1);
warn "defang XML processing instruction" if $Debug;
my $Data;
if ($I =~ m{\G(.*?\??)>}gcs) {
$Data = $1;
} else {
$I =~ m{\G(.*)$}gcs;
$Data = $1;
}
$Data =~ s{--}{}g;
$O .= $OpenAngle . '!--' . $Processing . $Data . '-->';
}
# Some other thing starting with <, keep looking
if (exists $Self->{AppendOutput}) {
$O .= delete $Self->{AppendOutput};
}
if (exists $Self->{DelayedAppendOutput}) {
$O .= $Self->defang(delete $Self->{DelayedAppendOutput});
}
next;
}
# No tag found, just copy rest
warn "defang OutputRemainder" if $Debug;
$I =~ m/\G(.*)$/gcs;
$O .= $1 if $1;
# Exit if we got here
last;
}
# If not a recursive call, close mismatched tags
if ($Self->{Reentrant}-- <= 1) {
$Self->close_tags(\$O);
}
# Turn on utf-8 flag again
Encode::_utf8_on($O) if $UTF8Input;
return $O;
}
=item I<add_to_output($String)>
Appends $String to the output after the current parsed tag ends. Can be used by client code in callback methods to add HTML text to the processed output. If the HTML text needs to be defanged, client code can safely call HTML::Defang->defang() recursively from within the callback.
=over 4
=item B<Method parameters>
=over 4
=item I<$String>
The string that is added after the current parsed tag ends.
=back
=back
=back
=cut
# Callbacks call this method
sub add_to_output {
my $Self = shift;
$Self->{AppendOutput} = '' if !defined $Self->{AppendOutput};
$Self->{AppendOutput} .= shift;
}
sub defang_and_add_to_output {
my $Self = shift;
$Self->{DelayedAppendOutput} = '' if !defined $Self->{DelayedAppendOutput};
$Self->{DelayedAppendOutput} .= shift;
}
=item B<INTERNAL METHODS>
Generally these methods never need to be called by users of the class, because they'll be called internally as the appropriate tags are
encountered, but they may be useful for some users in some cases.
=over 4
=item I<defang_script($OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle)>
This method is invoked when a <script> tag is parsed. Defangs the <script> opening tag, and any closing tag. Any scripting content is also commented out, so browsers don't display them.
Returns 1 to indicate that the <script> tag must be defanged.
=over 4
=item B<Method parameters>
=over 4
=item I<$OutR>
A reference to the processed output HTML before the tag that is currently being parsed.
=item I<$HtmlR>
A scalar reference to the input HTML.
=item I<$TagOps>
Indicates what operation should be done on a tag. Can be undefined, integer or code reference. Undefined indicates an unknown tag to HTML::Defang, 1 indicates a known safe tag, 0 indicates a known unsafe tag, and a code reference indicates a subroutine that should be called to parse the current tag. For example, <style> and <script> tags are parsed by dedicated subroutines.
=item I<$OpenAngle>
Opening angle(<) sign of the current tag.
=item I<$IsEndTag>
Has the value '/' if the current tag is a closing tag.
=item I<$Tag>
The HTML tag that is currently being parsed.
=item I<$TagTrail>
Any space after the tag, but before attributes.
=item I<$Attributes>
A reference to an array of the attributes and their values, including any surrouding spaces. Each element of the array is added by 'push' calls like below.
push @$Attributes, [ $AttributeName, $SpaceBeforeEquals, $EqualsAndSubsequentSpace, $QuoteChar, $AttributeValue, $QuoteChar, $SpaceAfterAtributeValue ];
=item I<$CloseAngle>
Anything after the end of last attribute including the closing HTML angle(>)
=back
=back
=cut
sub defang_script {
my $Self = shift;
my ($OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle) = @_;
warn "defang_script Processing <script> tag" if $Self->{Debug};
if (!$IsEndTag) {
# If we just parsed a starting <script> tag, code better be commented. If
# not, we attach comments around the code.
if ($$HtmlR =~ m{\G(.*?)(?=</script\b)}gcsi) {
my $ScriptTagContents = $1;
warn "defang_script ScriptTagContents $ScriptTagContents" if $Self->{Debug};
$ScriptTagContents =~ s/^(\s*)(<!--)?(.*?)(-->)?(\s*)$/$1<!-- $3 -->$5/s;
$Self->add_to_output($ScriptTagContents);
}
}
# Also defang tag
return DEFANG_ALWAYS;
}
=item I<defang_style($OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle, $IsAttr)>
Builds a list of selectors and declarations from HTML style tags as well as style attributes in HTML tags and calls defang_stylerule() to do the actual defanging.
Returns 0 to indicate that style tags must not be defanged.
=over 4
=item B<Method parameters>
=over 4
=item I<$IsAttr>
Whether we are currently parsing a style attribute or style tag. $IsAttr will be true if we are currently parsing a style attribute.
=back
For a description of other parameters, see documentation of defang_script() method
=back
=cut
sub defang_style {
my ($Self, $OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle, $IsAttr) = @_;
my $lcTag = lc $Tag;
warn "defang_style Tag=$Tag IsEndTag=$IsEndTag IsAttr=$IsAttr" if $Self->{Debug};
# Nothing to do if end tag
return DEFANG_NONE if !$IsAttr && $IsEndTag;
# Do all style work in byte mode
use bytes;
my $Content = '';
my $ClosingStyleTagPresent = 1;
for ($$HtmlR) {
if (!$IsAttr) {
if (m{\G(.*?)(?=</style\b)}gcis) {
$Content = $1;
# No ending style tag
} elsif (m{\G([^<]*)}gcis) {
$Content = $1;
$ClosingStyleTagPresent = 0;
}
# Its a style attribute
} else {
# Avoid undef warning for style attr with no value. eg <tag style>
$Content = defined($_) ? $_ : '';
}
}
# Handle any wrapping HTML comments. If no comments, we add
my ($OpeningHtmlComment, $ClosingHtmlComment) = ('', '');
if (!$IsAttr) {
$OpeningHtmlComment = $Content =~ s{^(\s*<!--)}{} ? $1 : "<!--";
$ClosingHtmlComment = $Content =~ s{(-->\s*)$}{} ? $1 : "-->";
}
# Clean up all comments, expand character escapes and such
$Self->cleanup_style($Content, $IsAttr);
# Style attributes can optionally have selector type elements, so we check whether we
# have a '{' in $Content: if yes, its style data with selector type elements
my $Naked = $Content !~ m/\{/;
warn "defang_style Naked=$Naked" if $Self->{Debug};
# And suitably change the regex to match the data
my $SelectorRuleRE = $Naked ? qr/(\s*)()()()($StyleRules)()(\s*)/o :
qr/(\s*)((?:$StyleSelectors)?)(\s*)(\{)($StyleRules)(\})(\s*)/o;
my (@Selectors, @SelectorRules, %ExtraData );
# Now we parse the selectors and declarations
while ($Content =~ m{\G.*?$SelectorRuleRE}sgc) {
my ($Selector, $SelectorRule) = ($2, $5);
last if $Selector eq '' && $SelectorRule eq '';
push @Selectors, $Selector;
push @SelectorRules, $SelectorRule;
warn "defang_style Selector=$Selector" if $Self->{Debug};
warn "defang_style SelectorRule=$SelectorRule" if $Self->{Debug};
$ExtraData{$Selector} = [ $1, $3, $4, $6, $7];
}
# Check declaration elements for defanging
$Self->defang_stylerule(\@Selectors, \@SelectorRules, $lcTag, $IsAttr, $HtmlR, $OutR);
my $StyleOut = "";
# Re-create the style data
foreach my $Selector (@Selectors) {
my $SelectorRule = shift @SelectorRules;
my $Spaces = $ExtraData{$Selector};
my ($BeforeSelector, $AfterSelector, $OpenBrace, $CloseBrace, $AfterRule) = @$Spaces if $Spaces;
($BeforeSelector, $AfterSelector, $AfterRule) = ("", " ", "\n") unless $ExtraData{$Selector};
($OpenBrace, $CloseBrace) = ("{", "}") if !$Spaces && !$IsAttr;
# Put back the rule together
if (defined($Selector)) {
$StyleOut .= $BeforeSelector if defined($BeforeSelector);
$StyleOut .= $Selector;
$StyleOut .= $AfterSelector if defined($AfterSelector);
$StyleOut .= $OpenBrace if defined($OpenBrace);
$StyleOut .= $SelectorRule if defined($SelectorRule);
$StyleOut .= $CloseBrace if defined($CloseBrace);
$StyleOut .= $AfterRule if defined($AfterRule);
}
}
warn "defang_style StyleOut=$StyleOut" if $Self->{Debug};
if ($IsAttr) {
$$HtmlR = $StyleOut;
} else {
$Self->add_to_output($OpeningHtmlComment . $StyleOut . $ClosingHtmlComment);
$Self->add_to_output("</style>") if !$ClosingStyleTagPresent;
}
# We don't want <style> tags to be defanged
return DEFANG_NONE;
}
=item I<cleanup_style($StyleString)>
Helper function to clean up CSS data. This function directly operates on the input string without taking a copy.
=over 4
=item B<Method parameters>
=over 4
=item I<$StyleString>
The input style string that is cleaned.
=back
=back
=cut
sub cleanup_style {
my $Self = shift;
for ($_[0]) {
my $UnicodeEntity = 0;
# Expand unicode \ refs
s{(?:\\)(0?[\da-f]{1,6});?}{
my $V = (defined($1) && hex($1)) || undef;
$UnicodeEntity = 1 if $V && $V > 127;
$V && $V < 1_114_111 && $V != 65535 && !($V > 55295 && $V < 57344) ? chr($V) : ""
}egi;
# Remove all remaining invalid escapes TODO This probably is not correct. Backslashes are required to be left alone by the CSS syntax
s/\\//g;
# Second param is true if it's an attribute, which means these have already been done
if (!$_[1]) {
# Expand escapes
s{&#(?:x(0?[\da-f]{1,6})|([\d]{1,7}));?}{
my $V = (defined($1) && hex($1)) || (defined($2) && int($2)) || undef;
$UnicodeEntity = 1 if $V && $V > 127;
$V && $V < 1_114_111 && $V != 65535 && !($V > 55295 && $V < 57344) ? chr($V) : "";
}egi;
s/&(quot|apos|amp|lt|gt);?/$EntityToChar{lc($1)} || warn "no entity for: $1"/egi;
}
# Remove all CSS comments
s{/\*.*?\*/}{}sg;
# Remove any CSS imports
s{(\@import[^;]+;?)}{}sg;
# Have to upgrade string to unicode string if entity expansion
# resulted in non-ascii char
utf8::upgrade($_) if $UnicodeEntity;
warn "cleanup_style Content=$_" if $Self->{Debug};
}
}
=item I<defang_stylerule($SelectorsIn, $StyleRules, $lcTag, $IsAttr, $HtmlR, $OutR)>
Defangs style data.
=over 4
=item B<Method parameters>
=over 4
=item I<$SelectorsIn>
An array reference to the selectors in the style tag/attribute contents.
=item I<$StyleRules>
An array reference to the declaration blocks in the style tag/attribute contents.
=item I<$lcTag>
Lower case version of the HTML tag that is currently being parsed.
=item I<$IsAttr>
Whether we are currently parsing a style attribute or style tag. $IsAttr will be true if we are currently parsing a style attribute.
=item I<$HtmlR>
A scalar reference to the input HTML.
=item I<$OutR>
A scalar reference to the processed output so far.
=back
=back
=cut
sub defang_stylerule {
my ($Self, $SelectorsIn, $StyleRules, $lcTag, $IsAttr, $HtmlR, $OutR) = @_;
my (@SelectorStyleKeyValues, %SelectorStyleKeyExtraData);
my (@Selectors, @SelectorRules);
foreach my $Selector (@$SelectorsIn) {
warn "defang_stylerule Selector=$Selector" if $Self->{Debug};
my $Rule = shift @$StyleRules;
my (@SelectorRule, @KeyValueRules, %StyleKeyExtraData);
# Split style declaration to basic elements
while($Rule =~ s{^(\{?\s*)([^:]+?)(\s*:\s*)((?:)?)([^;\}]+)()?(\s*;?)(\s*\}?)}{}) {
my ($KeyPilot, $Key, $Separator, $QuoteStart, $Value, $QuoteEnd, $ValueEnd, $ValueTrail) = ($1, $2, $3, $4, $5, $6, $7, $8);
warn "defang_stylerule Key=$Key Value=$Value Separator=$Separator ValueEnd=$ValueEnd" if $Self->{Debug};
# Store everything except style property and value in a hash
$StyleKeyExtraData{lc $Key} = [$KeyPilot, $Separator, $QuoteStart, $QuoteEnd, $ValueEnd, $ValueTrail];
my $DefangStyleRule = DEFANG_DEFAULT;
# If the style value has a URL in it and URL callback has been supplied, make a url_callback
if ($Self->{url_callback} && $Value =~ m/\s*url\(\s*((?:['"])?)(.*?)\1\s*\)/i) {
my ($UrlOrig, $Url) = ($2, $2) if $2;
warn "defang_stylerule Url found in style property value. Url=$Url" if $Self->{Debug};
my $lcAttrKey = $IsAttr ? "style" : undef;
$DefangStyleRule = $Self->{url_callback}->($Self->{context}, $Self, $lcTag, $lcAttrKey, \$Url, undef, $HtmlR, $OutR) if $Url;
# Save back any changes
warn "defang_stylerule After URL callback, Value=$Value DefangStyleRule=$DefangStyleRule" if $Self->{Debug};
$Value =~ s{\Q$UrlOrig\E}{$Url} if $UrlOrig;
}
# Save the style property, value and defang flag
push @KeyValueRules, [$Key, $Value, $DefangStyleRule];
warn "defang_stylerule Key=$Key Value=$Value DefangStyleRule=$DefangStyleRule" if $Self->{Debug};
}
push (@SelectorRule, \@KeyValueRules);
push (@Selectors, $Selector);
push (@SelectorRules, \@SelectorRule);
$SelectorStyleKeyExtraData{$Selector} = \%StyleKeyExtraData;
}
# If a CSS callback is supplied, we call that
$Self->{css_callback}->($Self->{context}, $Self, \@Selectors, \@SelectorRules, $lcTag, $IsAttr, $OutR) if $Self->{css_callback};
warn "defang_stylerule More selectors($#Selectors) than selector rules($#SelectorRules)" if $Self->{Debug}
&& $#Selectors > $#SelectorRules;
my $Counter = 0;
foreach my $Selector (@Selectors) {
my $SelectorRule = $SelectorRules[$Counter];
my $ExtraData = $SelectorStyleKeyExtraData{$Selector};
my $Rule;
for (my $j = 0; $j < @$SelectorRule; $j++) {
my $KeyValueRules = $SelectorRule->[$j];
for (my $k = 0; $k < @$KeyValueRules; $k++) {
my ($Key, $Value, $Defang) = @{$KeyValueRules->[$k]};
my $v = $ExtraData->{lc $Key};
my ($KeyPilot, $Separator, $QuoteStart, $QuoteEnd, $ValueEnd, $ValueTrail) = @{$v || []};
# If an intermediate style property-value pair doesn't have a terminating semi-colon, add it
if ($k > 0 && !$v) {
my $PreviousRule = $KeyValueRules->[$k - 1];
my $PreviousKey = $PreviousRule->[0];
my $PrevExtra = $ExtraData->{lc $PreviousKey};
$ExtraData->{lc $PreviousKey}->[4] .= ";" if defined($PrevExtra->[4]) && $PrevExtra->[4] !~ m/;/;
$ExtraData->{lc $Key}->[1] = ":";
}
}
}
$Counter++;
}
$Counter = 0;
foreach my $Selector (@Selectors) {
$SelectorsIn->[$Counter] = $Selector if $SelectorsIn->[$Counter] && !$IsAttr;
my $SelectorRule = $SelectorRules[$Counter];
my $ExtraData = $SelectorStyleKeyExtraData{$Selector};
my $Rule;
foreach my $KeyRules (@$SelectorRule) {
foreach my $KeyValueRule (@$KeyRules) {
my ($Key, $Value, $Defang) = @$KeyValueRule;
my $v = $ExtraData->{lc $Key};
my ($KeyPilot, $Separator, $QuoteStart, $QuoteEnd, $ValueEnd, $ValueTrail) = @{$v || []};
($Separator, $ValueEnd, $ValueTrail) = (":", ";", " ") unless $v;
# Flag to defang if a url, expression or unallowed character found
if ($Defang == DEFANG_DEFAULT) {
$Defang = $Value =~ m{^\s*[a-z0-9%!"'`:()#\s.,\/+-]+\s*;?\s*$}i ? DEFANG_NONE : DEFANG_ALWAYS;
$Defang = $Value =~ m{^\s*url\s*\(}i ? DEFANG_ALWAYS : $Defang;
$Defang = $Value =~ m{^\s*expression\s*\(}i ? DEFANG_ALWAYS : $Defang;
}
($KeyPilot, $Key, $Separator, $QuoteStart, $Value, $QuoteEnd, $ValueEnd, $ValueTrail) =
map { defined($_) ? $_ : "" }
($KeyPilot, $Key, $Separator, $QuoteStart, $Value, $QuoteEnd, $ValueEnd, $ValueTrail);
# Comment out the style property-value pair if $Defang
$Key = $Defang != DEFANG_NONE ? "/*" . $Key : $Key;
$ValueEnd = $Defang != DEFANG_NONE ? $ValueEnd . "*/" : $ValueEnd;
# Put the rule together back
if (defined($Key)) {
$Rule .= join "", $KeyPilot, $Key, $Separator, $QuoteStart, $Value, $QuoteEnd, $ValueEnd, $ValueTrail;
}
warn "defang_stylerule Rule=$Rule" if $Self->{Debug};
}
}
# Modify the original array
$StyleRules->[$Counter] = $Rule;
$Counter++;
}
}
=item I<defang_attributes($OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle)>
Defangs attributes, defangs tags, does tag, attrib, css and url callbacks.
=over 4
=item B<Method parameters>
For a description of the method parameters, see documentation of defang_script() method
=back
=cut
sub defang_attributes {
my ($Self, $OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagTrail, $Attributes, $CloseAngle) = @_;
my $lcTag = lc $Tag;
my $Debug = $Self->{Debug};
# Create a key -> \value mapping of all attributes up front
# so we have a complete hash for each callback
my %AttributeHash = map { lc($_->[0]) => \$_->[4] } @$Attributes;
# Now process each attribute
foreach my $Attr (@$Attributes) {
# We get the key and value of the attribute
my ($AttrKey, $AttrValR) = ($Attr->[0], \$Attr->[4]);
my $lcAttrKey = lc $AttrKey;
warn "defang_attributes Tag=$Tag AttrKey=$AttrKey AttrVal=$$AttrValR" if $Debug;
# Get the attribute value cleaned up
($$AttrValR, my $AttrValStripped) = $Self->cleanup_attribute($Attr, $AttrKey, $$AttrValR);
warn "defang_attributes AttrValStripped=$AttrValStripped" if $Debug;
my $AttribRule = "";
if (ref($Tags{$lcTag})) {
$AttribRule = $Tags{$lcTag}{$lcAttrKey};
}
my $DefangAttrib = DEFANG_DEFAULT;
$AttribRule = $CommonAttributes{$lcAttrKey} unless $AttribRule;
warn "defang_attributes AttribRule=$AttribRule" if $Debug;
# If this is a URL type $AttrKey and URL callback method is supplied, make a url_callback
if ($Self->{url_callback} && $AttribRule && exists($UrlRules{$AttribRule})) {
warn "defang_attributes Making URL callback" if $Debug;
$DefangAttrib = $Self->{url_callback}->($Self->{context}, $Self, $lcTag, $lcAttrKey, $AttrValR, \%AttributeHash, $HtmlR, $OutR);
die "url_callback reset" if !defined pos($$HtmlR);
}
# We have a style attribute, so we call defang_style
if ($lcAttrKey eq "style") {
warn "defang_attributes Found style attribute, calling defang_style" if $Debug;
$Self->defang_style($OutR, $AttrValR, $TagOps, $OpenAngle, $IsEndTag, $lcTag, $TagTrail, $Attributes, $CloseAngle, 1);
}
# If a attribute callback is supplied and its interested in this attribute, we make a attribs_callback
if ($Self->{attribs_callback} && exists($Self->{attribs_to_callback}->{$lcAttrKey})) {
warn "defang_attributes Making attribute callback for Tag=$Tag AttrKey=$AttrKey" if $Debug;
my $DefangResult = $Self->{attribs_callback}->($Self->{context}, $Self, $lcTag, $lcAttrKey, $AttrValR, $HtmlR, $OutR);
# Only use new result if not already DEFANG_ALWAYS from url_callback
$DefangAttrib = $DefangResult if $DefangAttrib != DEFANG_ALWAYS;
}
if (($DefangAttrib == DEFANG_DEFAULT) && $AttribRule) {
my $Rule = $Rules{$AttribRule};
warn "defang_attributes AttribRule=$AttribRule Rule=$Rule" if $Debug;
# We whitelist the attribute if the value matches the rule
if (ref($Rule) eq "Regexp") {
$DefangAttrib = ($AttrValStripped =~ $Rule) ? DEFANG_NONE : DEFANG_ALWAYS;
}
# Hack. Ref to array is a blacklist regexp
if (ref($Rule) eq "ARRAY") {
$DefangAttrib = ($AttrValStripped =~ $Rule->[0]) ? DEFANG_ALWAYS : DEFANG_NONE;
}
} elsif (!$AttribRule) {
$DefangAttrib = DEFANG_ALWAYS;
}
warn "defang_attributes DefangAttrib=$DefangAttrib" if $Debug;
# Store the attribute defang flag
push @$Attr, $DefangAttrib if $DefangAttrib != DEFANG_NONE;
}
my $DefangTag = DEFANG_DEFAULT;
# Callback if the tag is in @$tags_to_callback
if (exists($Self->{tags_to_callback}->{$lcTag})) {
warn "defang_attributes Calling tags_callback for $Tag" if $Debug;
$DefangTag = $Self->{tags_callback}->($Self->{context}, $Self, $OpenAngle, $lcTag, $IsEndTag, \%AttributeHash, $CloseAngle, $HtmlR, $OutR);
}
my @OutputAttributes;
foreach my $Attr (@$Attributes) {
my $lcAttr = lc $Attr->[0];
# If the attribute is deleted don't output it
unless ($AttributeHash{$lcAttr}) {
warn "defang_attributes Marking attribute $Attr->[0] for deletion" if $Debug;
next;
}
# And we attach the defang string here, if the attribute should be defanged
# (attribute could be undef for buggy html, eg <ahref=blah>)
$Attr->[0] = $Self->{defang_string}
. ( $Attr->[0] || '' )
if defined($Attr->[7]) && $Attr->[7] != DEFANG_NONE
&& (
$Self->{allow_double_defang}
|| (
substr( ( $Attr->[0] || '' ),
0, length( $Self->{defang_string} ) ) ne $Self->{defang_string}
)
);
# Set defang value to undef, or this value will appear in the output
$Attr->[7] = undef;
# Requote specials in attribute value
my $QuoteRe = $QuoteRe{$Attr->[3]} || $QuoteRe{""};
$Attr->[4] =~ s/$QuoteRe/'&'.$CharToEntity{$1}.';'/eg
if defined($Attr->[4]);
# Add to attributes to output
push @OutputAttributes, $Attr;
# Remove all processed attributes in the hash, so we can track ones that we added
delete $AttributeHash{$lcAttr};
}
# Append all remaining attribute keys (which must have been newly added attributes by
# the callback)and values in no particular order
while (my ($Key,$Value) = each %AttributeHash ) {
my $Attr = [" " . $Key, "", "=", '"', $$Value, '"', ""];
if (defined $Attr->[4]) {
$Attr->[4] =~ s/(['"<>&])/'&'.$CharToEntity{$1}.';'/eg
} else {
@$Attr[2..6] = (undef) x 5;
}
push @OutputAttributes, $Attr;
}
# Replace attributes array with just the ones we want to output
@$Attributes = @OutputAttributes;
# If its a known tag, we whitelist it
if ($DefangTag == DEFANG_DEFAULT && (my $TagOps = $Tags{$lcTag})) {
$DefangTag = DEFANG_NONE;
}
return $DefangTag;
}
sub track_tags {
my ($Self, $OutR, $HtmlR, $TagOps, $OpenAngle, $IsEndTag, $Tag, $TagContentR) = @_;
my $lcTag = lc $Tag;
my ($OpenedTags, $OpenedTagsCount, $OpenedNestedTags)
= @$Self{qw(opened_tags opened_tags_count opened_nested_tags)};
my $IsTagToFix = $Self->{mismatched_tags_to_fix}->{$lcTag};
# If we've got a block tag, then close any inline tags
# before the block tag. We'll re-opened them again below
if ($BlockTags{$lcTag}) {
while (@$OpenedTags && $InlineTags{$OpenedTags->[-1]->[0]}) {
push @$OpenedNestedTags, my $POTD = $OpenedTags->[-1];
$Self->track_tag(1, $POTD->[0]);
$$OutR .= "<!-- close inline tag into block --></$POTD->[0]>";
}
}
# Track browser implicitly opened tags
if (@$OpenedTags) {
# If just closing the last tag, nothing to do
my $LastTag = $OpenedTags->[-1]->[0];
if (!$IsEndTag || $lcTag ne $LastTag) {
# Are we expecting a particular tag based on last open tag?
if (my $ImplicitTags = $ImplicitOpenTags{$LastTag}) {
# We didn't get a tag we were expecting (eg <table><div> rather
# than <table><tbody><tr><td><div>), so insert opening tags recursively
$LastTag = $lcTag;
while ($ImplicitTags && (!$ImplicitTags->{$LastTag} || $IsEndTag)) {
my $Tag = $ImplicitTags->{default};
# Don't insert implicit tag if it's actually the one we actually just parsed
last if !$IsEndTag && $Tag eq $lcTag;
$Self->track_tag(0, $Tag, '');
$$OutR .= "<!-- $Tag implicit open due to $LastTag --><$Tag>";
$LastTag = $Tag;
$ImplicitTags = $ImplicitOpenTags{$LastTag};
}
}
}
}
# Check for correctly nest closing tags
if ($IsEndTag && $IsTagToFix) {
my ($Found, $ClosingTags) = (0, '');
# Tag not even open, just defang it
return DEFANG_ALWAYS if !$OpenedTagsCount->{$lcTag};
# Check tag stack up to find mismatches
while (@$OpenedTags) {
my ($PreviousOpenedTag) = @{$OpenedTags->[-1]};
if ($PreviousOpenedTag eq $lcTag) {
$Found = 1;
last;
}
# Check for tags that don't break out further
if (my $NestList = $MismatchedTagNest{$PreviousOpenedTag}) {
last if $NestList->{""} || $NestList->{$lcTag};
}
# Close this mismatched tag
$Self->track_tag(1, $PreviousOpenedTag);
$$OutR .= "<!-- close mismatched tag --></$PreviousOpenedTag>";
}
# Should have popped stack correctly if found
if ($Found) {
pop @$OpenedTags;
$OpenedTagsCount->{$lcTag}--;
# Otherwise hit tag that stops breaking out, defang it
} else {
return DEFANG_ALWAYS;
}
}
# Track this tag that was opened (and all attributes, so we can re-open with the same if needed)
if (!$IsEndTag && $IsTagToFix) {
push @$OpenedTags, [ $lcTag, $$TagContentR ];
$OpenedTagsCount->{$lcTag}++;
}
# Re-open inline tags into this block
if ($BlockTags{$lcTag}) {
# Peek ahead. If another block tag, don't do this
if ($$HtmlR !~ m{\G(?=\s*</?($TagNameRE))}gc || !$BlockTags{lc "$1"}) {
my ($SpanCount, $SpanAttrs) = (0, '');
while (my $POTD = pop @$OpenedNestedTags) {
# Don't add more than 3 span tags with same attrs in a row
if ($SpanCount < 3) {
# Add after the current tag is output
$Self->track_tag(0, @$POTD);
$Self->add_to_output("<!-- reopen inline tag after block --><$POTD->[0]$POTD->[1]>");
}
$SpanCount = $POTD->[0] eq 'span' && $POTD->[1] eq $SpanAttrs ? $SpanCount+1 : 0;
$SpanAttrs = $POTD->[1];
}
}
}
return DEFANG_NONE;
}
sub track_tag {
my ($Self, $IsEndTag, $Tag, $Attr) = @_;
my $lcTag = lc $Tag;
if ($IsEndTag) {
if ($lcTag eq $Self->{opened_tags}->[-1]->[0]) {
pop @{$Self->{opened_tags}};
$Self->{opened_tags_count}->{$lcTag}--;
} else {
warn "Unexpected tag stack. Expected $lcTag, found " . $Self->{opened_tags}->[-1]->[0];
}
} else {
push @{$Self->{opened_tags}}, [ $lcTag, $Attr ];
$Self->{opened_tags_count}->{$lcTag}++;
}
}
sub close_tags {
my ($Self, $OutR) = @_;
my $RemainingClosingTags = '';
my ($OpenedTags, $OpenedTagsCount) = @$Self{qw(opened_tags opened_tags_count)};
while (my $PreviousOpenedTag = pop @$OpenedTags) {
$RemainingClosingTags .= "<!-- close unclosed tag --></$PreviousOpenedTag->[0]>";
$OpenedTagsCount->{$PreviousOpenedTag}--;
}
$$OutR .= $RemainingClosingTags;
# Also clear implicit tags
$Self->{opened_nested_tags} = [];
if ($Self->{Debug}) {
warn "Check all tags closed and counts zeroed";
die "Not all tags closed" if grep { $_ > 0 } values %$OpenedTagsCount;
}
}
=item I<cleanup_attribute($AttributeString)>
Helper function to cleanup attributes
=over 4
=item B<Method parameters>
=over 4
=item I<$AttributeString>
The value of the attribute.
=back
=back
=back
=back
=cut
sub cleanup_attribute {
my ($Self, $Attr, $AttrKey, $AttrVal) = @_;
return (undef, '') unless defined($AttrVal);
# Create a "stripped" attribute value which removes all embedded whitespace and control characters
# Substitute character entities with actual characters
# - in HTML, 
 
 
 are all character codes
# - in IE, 
javascript is same as 
javascript
# - avoid invalid chars + surrogate pairs
my $UnicodeEntity = 0;
$AttrVal =~ s{&#(?:x(0?[\da-f]{1,6})|([\d]{1,7}));?}{
my $V = (defined($1) && hex($1)) || (defined($2) && int($2)) || undef;
$UnicodeEntity = 1 if $V && $V > 127;
$V && $V < 1_114_111 && $V != 65535 && !($V > 55295 && $V < 57344) ? chr($V) : "";
}egi;
# These get requoted when we output the attribute
$AttrVal =~ s/&(quot|apos|amp|lt|gt);?/$EntityToChar{lc($1)} || warn "no entity for: $1"/egi;
my $AttrValStripped = $AttrVal;
# In JS, \u000a is unicode char (note \u0072 -> \u0072 -> r, so do HTML entities first)
# This can't be undone, so only do on stripped value
$AttrValStripped =~ s/\\u(0?[\da-f]{1,6});?/defined($1) && hex($1) < 1_114_111 && hex($1) != 65535 && !(hex($1) > 55295 && hex($1) < 57344) ? chr(hex($1)) : ""/egi;
# Also undo URL decoding for "stripped" value
# (can't do this above, because it's non-reversible, eg "http://...?a=%25" => "http://...?a=?",
# how would we know which ? to requote when outputting?)
$AttrValStripped =~ s/%([\da-f]{2})/chr(hex($1))/egi;
$AttrValStripped =~ s/[\x00-\x19]*//g;
$AttrValStripped =~ s/^\x20*//g; # http://ha.ckers.org/xss.html#XSS_Spaces_meta_chars
# Have to upgrade string to unicode string if entity expansion
# resulted in non-ascii char
utf8::upgrade($AttrVal) if $UnicodeEntity;
warn "cleanup_attribute AttrValStripped=$AttrVal" if $Self->{Debug};
return ($AttrVal, $AttrValStripped);
}
sub get_applicable_charset {
my $Self = shift;
local $_ = shift;
my $Charset = shift;
if(!$Charset) {
# Look for <meta> tags
my @MetaAttrs = /<meta[\s\/]+(${AttributesRE})/gi;
for(@MetaAttrs) {
my %Attrs;
# Get attributes and their values
while(s/(?:($AttrKeyStartLineRE)(\s*))?(?:(=\s*)($AttrValRE)(\s*))?//so) {
last if !defined($1) && !defined($4);
$Attrs{lc $1} = $4;
}
# Look for charset information
if($Attrs{"content"}) {
$Charset = $Attrs{"content"} =~ m/charset\s*=\s*([^\s;'"`]+)[\s;'"`]*/i ? $1 : $Charset;
}
}
}
# Return fallback charset if no header or meta charset found
return $Charset ? $Charset : shift;
}
=head1 SEE ALSO
L<http://mailtools.anomy.net/>, L<http://htmlcleaner.sourceforge.net/>, I<HTML::StripScripts>, I<HTML::Detoxifier>, I<HTML::Sanitizer>, I<HTML::Scrubber>
=cut
=head1 AUTHOR
Kurian Jose Aerthail E<lt>cpan@kurianja.fastmail.fmE<gt>. Thanks to Rob Mueller E<lt>cpan@robm.fastmail.fmE<gt> for initial code, guidance and support and bug fixes.
=cut
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2003-2010 by Opera Software Australia Pty Ltd
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|