芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Sanitize.php
, ", and '. * * $quote_style can be set to ENT_COMPAT to encode " to * ", or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded. * * @param string $string The text which is to be encoded. * @param int|string $quote_style Optional. Converts double quotes if set to ENT_COMPAT, * both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. * Also compatible with old values; converting single quotes if set to 'single', * double if set to 'double' or both if otherwise set. * Default is ENT_NOQUOTES. * @param string|bool $charset Optional. The character encoding of the string. Default is false. * @param bool $double_encode Optional. Whether to encode existing html entities. Default is false. * * @return string The encoded text with HTML entities. * @since 1.2.2 * @access private * * @staticvar string $_charset * */ private static function _specialchars($string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false) { $string = (string)$string; if (0 === strlen($string)) return ''; // Don't bother if there are no specialchars - saves some processing if (!preg_match('/[&<>"\']/', $string)) return $string; // Account for the previous behaviour of the function when the $quote_style is not an accepted value if (empty($quote_style)) $quote_style = ENT_NOQUOTES; else if (!in_array($quote_style, array( 0, 2, 3, 'single', 'double' ), true)) $quote_style = ENT_QUOTES; // Store the site charset as a static to avoid multiple calls to wp_load_alloptions() if (!$charset) { static $_charset = null; if (!isset($_charset)) { $_charset = self::getCharset(); } $charset = $_charset; } if (in_array($charset, array( 'utf8', 'utf-8', 'UTF8' ))) $charset = 'UTF-8'; $_quote_style = $quote_style; if ($quote_style === 'double') { $quote_style = ENT_COMPAT; $_quote_style = ENT_COMPAT; } else if ($quote_style === 'single') { $quote_style = ENT_NOQUOTES; } if (!$double_encode) { // Guarantee every &entity; is valid, convert &garbage; into &garbage; // This is required for PHP < 5.4.0 because ENT_HTML401 flag is unavailable. $string = self::kses_normalize_entities($string); } $string = @htmlspecialchars($string, $quote_style, $charset, $double_encode); // Back-compat. if ('single' === $_quote_style) $string = str_replace("'", ''', $string); return $string; } /** * Converts and fixes HTML entities. * * This function normalizes HTML entities. It will convert `AT&T` to the correct * `AT&T`, `:` to `:`, `YZZY;` to `&#XYZZY;` and so on. * * @param string $string Content to normalize entities * * @return string Content with normalized entities * @since 1.0.0 * */ private static function kses_normalize_entities($string) { // Disarm all entities by converting & to & $string = str_replace('&', '&', $string); // Change back the allowed entities in our entity whitelist $string = preg_replace_callback('/&([A-Za-z]{2,8}[0-9]{0,2});/', array( self::class, 'kses_named_entities' ), $string); $string = preg_replace_callback('/&#(0*[0-9]{1,7});/', array( self::class, 'kses_normalize_entities2' ), $string); $string = preg_replace_callback('/&#[Xx](0*[0-9A-Fa-f]{1,6});/', array( self::class, 'kses_normalize_entities3' ), $string); return $string; } /** * Callback for kses_normalize_entities() regular expression. * * This function only accepts valid named entity references, which are finite, * case-sensitive, and highly scrutinized by HTML and XML validators. * * @param array $matches preg_replace_callback() matches array * * @return string Correctly encoded entity * @since 3.0.0 * * @global array $allowedentitynames * */ public static function kses_named_entities($matches) { global $allowedentitynames; if (empty($matches[1])) return ''; $i = $matches[1]; return (!in_array($i, $allowedentitynames)) ? "&$i;" : "&$i;"; } /** * Callback for kses_normalize_entities() regular expression. * * This function helps kses_normalize_entities() to only accept 16-bit * values and nothing more for `number;` entities. * * @access private * * @param array $matches preg_replace_callback() matches array * * @return string Correctly encoded entity * @since 1.0.0 * */ public static function kses_normalize_entities2($matches) { if (empty($matches[1])) return ''; $i = $matches[1]; if (self::valid_unicode($i)) { $i = str_pad(ltrim($i, '0'), 3, '0', STR_PAD_LEFT); $i = "$i;"; } else { $i = "&#$i;"; } return $i; } /** * Callback for kses_normalize_entities() for regular expression. * * This function helps kses_normalize_entities() to only accept valid Unicode * numeric entities in hex form. * * @access private * * @param array $matches preg_replace_callback() matches array * * @return string Correctly encoded entity */ public static function kses_normalize_entities3($matches) { if (empty($matches[1])) return ''; $hexchars = $matches[1]; return (!self::valid_unicode(hexdec($hexchars))) ? "&#x$hexchars;" : '' . ltrim($hexchars, '0') . ';'; } /** * Helper function to determine if a Unicode value is valid. * * @param int $i Unicode value * * @return bool True if the value was a valid Unicode number */ private static function valid_unicode($i) { return ($i == 0x9 || $i == 0xa || $i == 0xd || ($i >= 0x20 && $i <= 0xd7ff) || ($i >= 0xe000 && $i <= 0xfffd) || ($i >= 0x10000 && $i <= 0x10ffff)); } /** * Escape single quotes, htmlspecialchar " < > &, and fix line endings. * * Escapes text strings for echoing in JS. It is intended to be used for inline JS * (in a tag attribute, for example onclick="..."). Note that the strings have to * be in single quotes. The {@see 'js_escape'} filter is also applied here. * * @param string $text The text to be escaped. * * @return string Escaped text. * @since 2.8.0 * */ public static function esc_js($text) { $safe_text = self::check_invalid_utf8($text); $safe_text = self::_specialchars($safe_text, ENT_COMPAT); $safe_text = preg_replace('/(x)?0*(?(1)27|39);?/i', "'", stripslashes($safe_text)); $safe_text = str_replace("\r", '', $safe_text); $safe_text = str_replace("\n", '\\n', addslashes($safe_text)); return $safe_text; } /** * Escaping for HTML blocks. * * @param string $text * * @return string * @since 2.8.0 * */ public static function esc_html($text) { $safe_text = self::check_invalid_utf8($text); $safe_text = self::_specialchars($safe_text, ENT_QUOTES); return $safe_text; } /** * Escaping for HTML attributes. * * @param string $text * * @return string * @since 2.8.0 * */ public static function esc_attr($text) { $safe_text = self::check_invalid_utf8($text); $safe_text = self::_specialchars($safe_text, ENT_QUOTES); return $safe_text; } /** * Escaping for textarea values. * * @param string $text * * @return string * @since 3.1.0 * */ public static function esc_textarea($text) { $safe_text = htmlspecialchars($text, ENT_QUOTES, self::getCharset()); return $safe_text; } public static function remove_closing_style_tag($text) { $safe_text = self::check_invalid_utf8($text); return preg_replace_callback('/<\/style.*?>/i', function () { return ''; }, $safe_text); } public static function esc_css_value($text) { $safe_text = self::check_invalid_utf8($text); return preg_replace_callback('/[<>]/', function () { return ''; }, $safe_text); } public static function esc_css_string($cssString) { $output = ''; echo "\n\n"; $pairs = explode(';', trim($cssString)); foreach ($pairs as $pair) { if (!empty($pair)) { $keyValue = explode(':', trim($pair), 2); if (count($keyValue) != 2) { continue; } if (!preg_match('/^[a-zA-Z\-]+$/', $keyValue[0])) { continue; } $output .= $keyValue[0] . ':' . self::esc_css_value(trim($keyValue[1])) . ';'; } } return $output; } public static function filter_allowed_html($input, $extraTags = '') { return self::filter_attributes_on(strip_tags($input, '
' . $extraTags)); } public static function remove_all_html($input) { return strip_tags($input); } public static function filter_attributes_on($input) { if (class_exists('DOMDocument')) { if (function_exists('libxml_use_internal_errors')) { libxml_use_internal_errors(true); } $dom = new DOMDocument(); $dom->loadHTML('' . $input . ''); if (function_exists('libxml_use_internal_errors')) { libxml_use_internal_errors(false); } for ($els = $dom->getElementsByTagname('*'), $i = $els->length - 1; $i >= 0; $i--) { for ($attrs = $els->item($i)->attributes, $ii = $attrs->length - 1; $ii >= 0; $ii--) { if (substr($attrs->item($ii)->name, 0, 2) === 'on') { $els->item($i) ->removeAttribute($attrs->item($ii)->name); } } } $output = ''; $body = $dom->getElementsByTagName('body'); if ($body && 0 < $body->length) { $body = $body->item(0); $childNodes = $body->childNodes; if (!empty($childNodes)) { foreach ($childNodes as $childNode) { $output .= $dom->saveHTML($childNode); } } } return $output; } else if (function_exists('wp_kses_post')) { return wp_kses_post($input); } return ''; } public static function set_allowed_tags() { global $allowedposttags; self::$basicTags = array_merge_recursive($allowedposttags, array( 'div' => array( 'style' => true, ), 'script' => array(), )); self::$adminTemplateTags = array_merge_recursive(self::$basicTags, array( 'svg' => array( 'xmlns' => true, 'width' => true, 'height' => true, ), 'path' => array( 'fill' => true, 'd' => true, ), 'a' => array( 'tabindex' => true, ), )); self::$adminFormTags = array_merge_recursive(self::$basicTags, array( 'input' => array( 'id' => true, 'name' => true, 'value' => true, 'type' => true, 'autocomplete' => true, 'style' => true, ), 'div' => array( 'aria-checked' => true, 'tabindex' => true, ), 'a' => array( 'tabindex' => true, ), 'select' => array( 'id' => true, 'name' => true, 'aria-labelledby' => true, 'autocomplete' => true, 'multiple' => true, 'size' => true, ), 'option' => array( 'value' => true, 'selected' => true, ), 'textarea' => array( 'autocomplete' => true, ), )); self::$assetTags = array( 'style' => array( 'data-related' => true, ), 'link' => array( 'rel' => true, 'type' => true, 'href' => true, 'media' => true, ), 'script' => array( 'src' => true, 'defer' => true, 'async' => true, ), ); self::$videoTags = array( 'video' => array( 'muted' => true, 'loop' => true, 'class' => true, 'style' => true, 'playsinline' => true, 'webkit-playsinline' => true, 'data-*' => true, 'preload' => true, ), 'source' => array( 'src' => true, 'type' => true, ) ); } public static function esc_js_filter($safe_text, $text) { $safe_text = wp_check_invalid_utf8($text); return $safe_text; } }