diff --git a/ChangeLog b/ChangeLog index 40b913d86b..e18b6545bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog 4.0.10.10 (Not yet released) - bug #4899 [security] CSRF vulnerability in setup +- bug #4900 [security] Vulnerability allowing Man-in-the-middle attack 4.0.10.9 (2015-03-04) - bug [security] Risk of BREACH attack, see PMASA-2015-1 diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 6c06fd43ed..9775535182 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -716,8 +716,6 @@ class PMA_Config curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_USERAGENT, 'phpMyAdmin/' . PMA_VERSION); curl_setopt($ch, CURLOPT_TIMEOUT, 5);