|
Détection des XSS
|
Informations rapides |
|
|
Informations détaillées
|
Description :
Ce script return true si la chaine passée est potentiellement un XSS.
Portion de code
1 2 3 4 5 6
|
function is_xss($str) { if(eregi("<(.*)?(script|object|iframe|applet|meta|style|form|img)(.*)?>", $str )) { return 1; } } |
|
Informations & Services |
 |
|
|
 |
Newsletter
Autre Sources
Tips
| Chaine de caractères |
|
ASP (0) |
|
PERL (3) |
|