diff --git a/HowtoPHP.md b/HowtoPHP.md index dec21e3c..c741a632 100644 --- a/HowtoPHP.md +++ b/HowtoPHP.md @@ -845,14 +845,14 @@ php_admin_value sendmail_path "/bin/true" ### `allow_url_fopen = Off` empêche d’utiliser file_get_contents La solution est d’utiliser -(fsockopen())[https://secure.php.net/manual/fr/function.fsockopen.php] +[fsockopen()](https://secure.php.net/manual/fr/function.fsockopen.php) plutôt que -(file_get_contents())[https://secure.php.net/manual/fr/function.file-get-contents.php]. +[file_get_contents()](https://secure.php.net/manual/fr/function.file-get-contents.php). Il faut faire attention parce que cette API est aussi vulnérable a -(certaines attaques)[https://www.owasp.org/index.php/PHP_Top_5]. +[certaines attaques](https://www.owasp.org/index.php/PHP_Top_5). -Exemple pour (Google Recaptcha)[http://www.google.com/recaptcha/intro/v3.html]: +Exemple pour [Google Recaptcha](http://www.google.com/recaptcha/intro/v3.html): Remplacer