Funkcja filtrowania XSS w PHP

Czy ktoś zna jakąś dobrą funkcję do filtrowania generycznych danych wejściowych z formularzy? Wydaje się, że Zend_Filter_input wymaga uprzedniej znajomości zawartości danych wejściowych i obawiam się, że użycie czegoś takiego jak HTML Purifier będzie miało duży wpływ na wydajność.

A może coś takiego: http://snipplr.com/view/1848/php--sacar-xss/

Wielkie dzięki za każdy wkład.

Author: codecowboy, 2009-08-26

10 answers

Prosty sposób? Użycie strip_tags():

$str = strip_tags($input);

Możesz również użyć filter_var() za to:

$str = filter_var($input, FILTER_SANITIZE_STRING);

Zaletą filter_var() jest to, że możesz kontrolować zachowanie, na przykład, usuwając lub kodując niskie i wysokie znaki.

Oto lista filtrów dezynfekujących .

 73
Author: cletus,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2013-08-25 07:41:57

Istnieje wiele sposobów wykorzystania przez hakerów ataków XSS, wbudowane funkcje PHP nie reagują na wszelkiego rodzaju ataki XSS. Dlatego funkcje takie jak strip_tags, filter_var, mysql_real_escape_string, htmlentities, htmlspecialchars itp.nie chronią nas w 100%. Potrzebujesz lepszego mechanizmu, oto co jest rozwiązaniem:

function xss_clean($data)
{
// Fix &entity\n;
$data = str_replace(array('&','<','>'), array('&','<','>'), $data);
$data = preg_replace('/(&#*\w+)[\x00-\x20]+;/u', '$1;', $data);
$data = preg_replace('/(&#x*[0-9A-F]+);*/iu', '$1;', $data);
$data = html_entity_decode($data, ENT_COMPAT, 'UTF-8');

// Remove any attribute starting with "on" or xmlns
$data = preg_replace('#(<[^>]+?[\x00-\x20"\'])(?:on|xmlns)[^>]*+>#iu', '$1>', $data);

// Remove javascript: and vbscript: protocols
$data = preg_replace('#([a-z]*)[\x00-\x20]*=[\x00-\x20]*([`\'"]*)[\x00-\x20]*j[\x00-\x20]*a[\x00-\x20]*v[\x00-\x20]*a[\x00-\x20]*s[\x00-\x20]*c[\x00-\x20]*r[\x00-\x20]*i[\x00-\x20]*p[\x00-\x20]*t[\x00-\x20]*:#iu', '$1=$2nojavascript...', $data);
$data = preg_replace('#([a-z]*)[\x00-\x20]*=([\'"]*)[\x00-\x20]*v[\x00-\x20]*b[\x00-\x20]*s[\x00-\x20]*c[\x00-\x20]*r[\x00-\x20]*i[\x00-\x20]*p[\x00-\x20]*t[\x00-\x20]*:#iu', '$1=$2novbscript...', $data);
$data = preg_replace('#([a-z]*)[\x00-\x20]*=([\'"]*)[\x00-\x20]*-moz-binding[\x00-\x20]*:#u', '$1=$2nomozbinding...', $data);

// Only works in IE: <span style="width: expression(alert('Ping!'));"></span>
$data = preg_replace('#(<[^>]+?)style[\x00-\x20]*=[\x00-\x20]*[`\'"]*.*?expression[\x00-\x20]*\([^>]*+>#i', '$1>', $data);
$data = preg_replace('#(<[^>]+?)style[\x00-\x20]*=[\x00-\x20]*[`\'"]*.*?behaviour[\x00-\x20]*\([^>]*+>#i', '$1>', $data);
$data = preg_replace('#(<[^>]+?)style[\x00-\x20]*=[\x00-\x20]*[`\'"]*.*?s[\x00-\x20]*c[\x00-\x20]*r[\x00-\x20]*i[\x00-\x20]*p[\x00-\x20]*t[\x00-\x20]*:*[^>]*+>#iu', '$1>', $data);

// Remove namespaced elements (we do not need them)
$data = preg_replace('#</*\w+:\w[^>]*+>#i', '', $data);

do
{
    // Remove really unwanted tags
    $old_data = $data;
    $data = preg_replace('#</*(?:applet|b(?:ase|gsound|link)|embed|frame(?:set)?|i(?:frame|layer)|l(?:ayer|ink)|meta|object|s(?:cript|tyle)|title|xml)[^>]*+>#i', '', $data);
}
while ($old_data !== $data);

// we are done...
return $data;
}
 23
Author: Sarfraz,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2009-12-11 10:03:51

Najlepszym i bezpiecznym sposobem jest użycie HTML Purifier. Pod tym linkiem znajdziesz kilka wskazówek na temat używania go z Zend Framework.

HTML Purifier with Zend Framework

 7
Author: opHASnoNAME,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2009-12-11 10:13:52

Mam podobny problem. Potrzebuję użytkowników do przesyłania treści html do strony profilu z wielkim edytorem WYSIWYG (Redactorjs!), napisałem następującą funkcję do czyszczenia przesłanego html:

    <?php function filterxss($str) {
//Initialize DOM:
$dom = new DOMDocument();
//Load content and add UTF8 hint:
$dom->loadHTML('<meta http-equiv="content-type" content="text/html; charset=utf-8">'.$str);
//Array holds allowed attributes and validation rules:
$check = array('src'=>'#(http://[^\s]+(?=\.(jpe?g|png|gif)))#i','href'=>'|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i');
//Loop all elements:
foreach($dom->getElementsByTagName('*') as $node){
    for($i = $node->attributes->length -1; $i >= 0; $i--){
        //Get the attribute:
        $attribute = $node->attributes->item($i);
        //Check if attribute is allowed:
        if( in_array($attribute->name,array_keys($check))) {
            //Validate by regex:    
            if(!preg_match($check[$attribute->name],$attribute->value)) { 
                //No match? Remove the attribute
                $node->removeAttributeNode($attribute); 
            }
        }else{
            //Not allowed? Remove the attribute:
            $node->removeAttributeNode($attribute);
        }
    }
}
var_dump($dom->saveHTML()); } ?>

Tablica $check zawiera wszystkie dozwolone atrybuty i reguły walidacji. Może to jest przydatne dla niektórych z was. Nie testowałem jeszcze, więc porady są mile widziane

 3
Author: 3eighty,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2012-10-11 08:43:58
function clean($data){
    $data = rawurldecode($data);
    return filter_var($data, FILTER_SANITIZE_SPEC_CHARS);
}
 2
Author: ingnorant,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2011-05-08 23:12:20

htmlspecialchars() doskonale nadaje się do filtrowania danych wejściowych użytkownika wyświetlanych w formularzach html.

 1
Author: Doug Amos,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2015-01-08 17:17:28

Według www.mcafeesecure.com ogólne rozwiązanie dla funkcji filtrowania skryptów krzyżowych (XSS) może być następujące:

function xss_cleaner($input_str) {
    $return_str = str_replace( array('<','>',"'",'"',')','('), array('&lt;','&gt;','&apos;','&#x22;','&#x29;','&#x28;'), $input_str );
    $return_str = str_ireplace( '%3Cscript', '', $return_str );
    return $return_str;
}
 0
Author: Taras,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2012-07-03 14:47:13

Spróbuj użyć do czystego XSS

xss_clean($data): "><script>alert(String.fromCharCode(74,111,104,116,111,32,82,111,98,98,105,101))</script>
 0
Author: user3580379,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2014-05-21 22:38:03

Wszystkie powyższe metody nie pozwalają na zachowanie niektórych tagów, takich jak <a>, <table> itd. Istnieje ostateczne rozwiązanie http://sourceforge.net/projects/kses / Drupal używa tego

 0
Author: ymakux,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2015-08-01 18:08:28

Znalazłem rozwiązanie mojego problemu z postami z niemieckim umlaut. Aby zapewnić od całkowitego czyszczenia (zabijania) postów, koduję przychodzące dane:

    *$data = utf8_encode($data);
    ... function ...*

I w końcu dekoduję wyjście, aby uzyskać prawidłowe znaki:

    *$data = utf8_decode($data);*

Teraz post przejść przez funkcję filtra i uzyskać poprawny wynik...

 -1
Author: Georg,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2017-06-24 12:55:31