/usr/share/auth2db-frontend/www/security.php is in auth2db-frontend 0.2.5-2+dfsg-5ubuntu1.
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 | <?
# [Muestra los tags HTML sin ejecutarlos.]
function sec_cleanHTML ($var) {
return htmlentities($var);
//return htmlspecialchars($str);
}
# [Quita todos los tags HTML y PHP de la variable.]
function sec_cleanTAGS ($var) {
return strip_tags($var);
}
# [Agrega escape de caracteres especiales SQL -> \' ]
function sec_addESC($var) {
$var = mysql_real_escape_string($var);
return $var;
}
?>
|