_no_null($string); $string = $this->_js_entities($string); $string = $this->_normalize_entities($string); $string = $this->_hook($string); return $this->_split($string); } function Protocols() { $c_args = func_num_args(); if($c_args != 1) { return false; } $protocol_data = func_get_arg(0); if(is_array($protocol_data)) { foreach($protocol_data as $protocol) { $this->AddProtocol($protocol); } } elseif(is_string($protocol_data)) { $this->AddProtocol($protocol_data); return true; } else { trigger_error("kses::Protocols() did not receive a string or an array.", E_USER_WARNING); return false; } } function AddProtocol($protocol = "") { if(!is_string($protocol)) { trigger_error("kses::AddProtocol() requires a string.", E_USER_WARNING); return false; } $protocol = strtolower(trim($protocol)); if($protocol == "") { trigger_error("kses::AddProtocol() tried to add an empty/NULL protocol.", E_USER_WARNING); return false; } // Remove any inadvertent ':' at the end of the protocol. if(substr($protocol, strlen($protocol) - 1, 1) == ":") { $protocol = substr($protocol, 0, strlen($protocol) - 1); } if(!in_array($protocol, $this->allowed_protocols)) { array_push($this->allowed_protocols, $protocol); sort($this->allowed_protocols); } return true; } function AddHTML($tag = "", $attribs = array()) { if(!is_string($tag)) { trigger_error("kses::AddHTML() requires the tag to be a string", E_USER_WARNING); return false; } $tag = strtolower(trim($tag)); if($tag == "") { trigger_error("kses::AddHTML() tried to add an empty/NULL tag", E_USER_WARNING); return false; } if(!is_array($attribs)) { trigger_error("kses::AddHTML() requires an array (even an empty one) of attributes for '$tag'", E_USER_WARNING); return false; } $new_attribs = array(); foreach($attribs as $idx1 => $val1) { $new_idx1 = strtolower($idx1); $new_val1 = $attribs[$idx1]; if(is_array($new_val1)) { $tmp_val = array(); foreach($new_val1 as $idx2 => $val2) { $new_idx2 = strtolower($idx2); $tmp_val[$new_idx2] = $val2; } $new_val1 = $tmp_val; } $new_attribs[$new_idx1] = $new_val1; } $this->allowed_html[$tag] = $new_attribs; return true; } ############################################################################### # This function removes any NULL or chr(173) characters in $string. ############################################################################### function _no_null($string) { $string = preg_replace('/\0+/', '', $string); $string = preg_replace('/(\\\\0)+/', '', $string); # commented out, because it breaks chinese chars #$string = preg_replace('/\xad+/', '', $string); # deals with Opera "feature" return $string; } # function _no_null ############################################################################### # This function removes the HTML JavaScript entities found in early versions of # Netscape 4. ############################################################################### function _js_entities($string) { return preg_replace('%&\s*\{[^}]*(\}\s*;?|$)%', '', $string); } # function _js_entities ############################################################################### # This function normalizes HTML entities. It will convert "AT&T" to the correct # "AT&T", ":" to ":", "&#XYZZY;" to "&#XYZZY;" and so on. ############################################################################### function _normalize_entities($string) { # Disarm all entities by converting & to & $string = str_replace('&', '&', $string); # Change back the allowed entities in our entity white list $string = preg_replace('/&([A-Za-z][A-Za-z0-9]{0,19});/', '&\\1;', $string); $string = preg_replace('/&#0*([0-9]{1,5});/e', '\$this->_normalize_entities2("\\1")', $string); $string = preg_replace('/&#([Xx])0*(([0-9A-Fa-f]{2}){1,2});/', '&#\\1\\2;', $string); return $string; } # function _normalize_entities ############################################################################### # This function helps _normalize_entities() to only accept 16 bit values # and nothing more for &#number; entities. ############################################################################### function _normalize_entities2($i) { return (($i > 65535) ? "&#$i;" : "&#$i;"); } # function _normalize_entities2 ############################################################################### # You add any kses hooks here. ############################################################################### function _hook($string) { return $string; } # function _hook ############################################################################### # This function goes through an array, and changes the keys to all lower case. ############################################################################### function _array_lc($inarray) { $outarray = array(); foreach ($inarray as $inkey => $inval) { $outkey = strtolower($inkey); $outarray[$outkey] = array(); foreach ($inval as $inkey2 => $inval2) { $outkey2 = strtolower($inkey2); $outarray[$outkey][$outkey2] = $inval2; } # foreach $inval } # foreach $inarray return $outarray; } # function _array_lc ############################################################################### # This function searches for HTML tags, no matter how malformed. It also # matches stray ">" characters. ############################################################################### function _split($string) { return preg_replace( '%(<'. # EITHER: < '[^>]*'. # things that aren't > '(>|$)'. # > or end of string '|>)%e', # OR: just a > "\$this->_split2('\\1')", $string); } # function _split function _split2($string) ############################################################################### # This function does a lot of work. It rejects some very malformed things # like <:::>. It returns an empty string, if the element isn't allowed (look # ma, no strip_tags()!). Otherwise it splits the tag into an element and an # attribute list. ############################################################################### { $string = $this->_stripslashes($string); if (substr($string, 0, 1) != '<') { # It matched a ">" character return '>'; } if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?$%', $string, $matches)) { # It's seriously malformed return ''; } $slash = trim($matches[1]); $elem = $matches[2]; $attrlist = $matches[3]; if (!is_array($this->allowed_html[strtolower($elem)])) { # They are using a not allowed HTML element return ''; } return $this->_attr("$slash$elem", $attrlist); } # function _split2 ############################################################################### # This function removes all attributes, if none are allowed for this element. # If some are allowed it calls s_hair() to split them further, and then it # builds up new HTML code from the data that _hair() returns. It also # removes "<" and ">" characters, if there are any left. One more thing it # does is to check if the tag has a closing XHTML slash, and if it does, # it puts one in the returned code as well. ############################################################################### function _attr($element, $attr) { # Is there a closing XHTML slash at the end of the attributes? $xhtml_slash = ''; if (preg_match('%\s/\s*$%', $attr)) { $xhtml_slash = ' /'; } # Are any attributes allowed at all for this element? if (count($this->allowed_html[strtolower($element)]) == 0) { return "<$element$xhtml_slash>"; } # Split it $attrarr = $this->_hair($attr); # Go through $attrarr, and save the allowed attributes for this element # in $attr2 $attr2 = ''; foreach ($attrarr as $arreach) { $current = $this->allowed_html[strtolower($element)][strtolower($arreach['name'])]; if ($current == '') { # the attribute is not allowed continue; } if (!is_array($current)) { # there are no checks $attr2 .= ' '.$arreach['whole']; } else { # there are some checks $ok = true; foreach ($current as $currkey => $currval) { if (!$this->_check_attr_val($arreach['value'], $arreach['vless'], $currkey, $currval)) { $ok = false; break; } } if ($ok) { # it passed them $attr2 .= ' '.$arreach['whole']; } } # if !is_array($current) } # foreach # Remove any "<" or ">" characters $attr2 = preg_replace('/[<>]/', '', $attr2); return "<$element$attr2$xhtml_slash>"; } # function _attr ############################################################################### # This function does a lot of work. It parses an attribute list into an array # with attribute data, and tries to do the right thing even if it gets weird # input. It will add quotes around attribute values that don't have any quotes # or apostrophes around them, to make it easier to produce HTML code that will # conform to W3C's HTML specification. It will also remove bad URL protocols # from attribute values. ############################################################################### function _hair($attr) { $attrarr = array(); $mode = 0; $attrname = ''; # Loop through the whole attribute list while (strlen($attr) != 0) { # Was the last operation successful? $working = 0; switch ($mode) { case 0: # attribute name, href for instance if (preg_match('/^([-a-zA-Z]+)/', $attr, $match)) { $attrname = $match[1]; $working = $mode = 1; $attr = preg_replace('/^[-a-zA-Z]+/', '', $attr); } break; case 1: # equals sign or valueless ("selected") if (preg_match('/^\s*=\s*/', $attr)) # equals sign { $working = 1; $mode = 2; $attr = preg_replace('/^\s*=\s*/', '', $attr); break; } if (preg_match('/^\s+/', $attr)) # valueless { $working = 1; $mode = 0; $attrarr[] = array( 'name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y' ); $attr = preg_replace('/^\s+/', '', $attr); } break; case 2: # attribute value, a URL after href= for instance if (preg_match('/^"([^"]*)"(\s+|$)/', $attr, $match)) # "value" { $thisval = $this->_bad_protocol($match[1]); $attrarr[] = array( 'name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n' ); $working = 1; $mode = 0; $attr = preg_replace('/^"[^"]*"(\s+|$)/', '', $attr); break; } if (preg_match("/^'([^']*)'(\s+|$)/", $attr, $match)) # 'value' { $thisval = $this->_bad_protocol($match[1]); $attrarr[] = array( 'name' => $attrname, 'value' => $thisval, 'whole' => "$attrname='$thisval'", 'vless' => 'n' ); $working = 1; $mode = 0; $attr = preg_replace("/^'[^']*'(\s+|$)/", '', $attr); break; } if (preg_match("%^([^\s\"']+)(\s+|$)%", $attr, $match)) # value { $thisval = $this->_bad_protocol($match[1]); $attrarr[] = array( 'name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n' ); # We add quotes to conform to W3C's HTML spec. $working = 1; $mode = 0; $attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr); } break; } # switch if ($working == 0) # not well formed, remove and try again { $attr = $this->_html_error($attr); $mode = 0; } } # while # special case, for when the attribute list ends with a valueless # attribute like "selected" if ($mode == 1) { $attrarr[] = array( 'name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y' ); } return $attrarr; } # function _hair ############################################################################### # This function removes all non-allowed protocols from the beginning of # $string. It ignores whitespace and the case of the letters, and it does # understand HTML entities. It does its work in a while loop, so it won't be # fooled by a string like "javascript:javascript:alert(57)". ############################################################################### function _bad_protocol($string) { $string = $this->_no_null($string); $string2 = $string.'a'; while ($string != $string2) { $string2 = $string; $string = $this->_bad_protocol_once($string); } # while return $string; } # function _bad_protocol ############################################################################### # This function searches for URL protocols at the beginning of $string, while # handling whitespace and HTML entities. ############################################################################### function _bad_protocol_once($string) { return preg_replace( '/^((&[^;]*;|[\sA-Za-z0-9])*)'. '(:|:|&#[Xx]3[Aa];)\s*/e', '\$this->_bad_protocol_once2("\\1")', $string ); return $string; } # function _bad_protocol_once ############################################################################### # This function processes URL protocols, checks to see if they're in the white- # list or not, and returns different data depending on the answer. ############################################################################### function _bad_protocol_once2($string) { $string2 = $this->_decode_entities($string2); $string2 = preg_replace('/\s/', '', $string); $string2 = $this->_no_null($string2); $string2 = strtolower($string2); $allowed = false; foreach ($this->allowed_protocols as $one_protocol) { if (strtolower($one_protocol) == $string2) { $allowed = true; break; } } if ($allowed) { return "$string2:"; } else { return ''; } } # function _bad_protocol_once2 ############################################################################### # This function performs different checks for attribute values. The currently # implemented checks are "maxlen", "minlen", "maxval", "minval" and "valueless" # with even more checks to come soon. ############################################################################### function _check_attr_val($value, $vless, $checkname, $checkvalue) { $ok = true; switch (strtolower($checkname)) { # The maxlen check makes sure that the attribute value has a length not # greater than the given value. This can be used to avoid Buffer Overflows # in WWW clients and various Internet servers. case 'maxlen': if (strlen($value) > $checkvalue) { $ok = false; } break; # The minlen check makes sure that the attribute value has a length not # smaller than the given value. case 'minlen': if (strlen($value) < $checkvalue) { $ok = false; } break; # The maxval check does two things: it checks that the attribute value is # an integer from 0 and up, without an excessive amount of zeroes or # whitespace (to avoid Buffer Overflows). It also checks that the attribute # value is not greater than the given value. # This check can be used to avoid Denial of Service attacks. case 'maxval': if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value)) { $ok = false; } if ($value > $checkvalue) { $ok = false; } break; # The minval check checks that the attribute value is a positive integer, # and that it is not smaller than the given value. case 'minval': if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value)) { $ok = false; } if ($value < $checkvalue) { $ok = false; } break; # The valueless check checks if the attribute has a value # (like ) or not (