Using this function you can prevent a vulnerable to Local and Remote File Inclusion attacks.
You'll see it in an example where I load and validate the following string:
<!DOCTYPE scan [<!ENTITY test SYSTEM "php://filter/read=convert.base64-encode/resource=/etc/passwd">]>
<scan>&test;</scan>
One way to prevent that the file in given back is to set this value to 0.
Please take a closer look at the release of symfony 2.0.11
libxml_disable_entity_loader
(PHP 5 >= 5.2.11)
libxml_disable_entity_loader — Désactive le chargement des entités externes
Description
bool libxml_disable_entity_loader
([ bool
$disable = true
] )Active ou désactive le chargement des entités externes.
Liste de paramètres
Valeurs de retour
Retourne la configuration précédente.
Voir aussi
- libxml_use_internal_errors() - Désactive le rapport d'erreur libxml et les stocke pour lecture ultérieure
- La constante
LIBXML_NONET
simonsimcity ¶
1 year ago
