diff --git a/ChangeLog b/ChangeLog index 69d8cfd695ca..e1e8d7553fcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ phpMyAdmin - ChangeLog ====================== +4.4.14.1 (2015-09-08) +- issue [security] reCaptcha bypass + 4.4.14.0 (2015-08-20) - issue #11367 Export after search, missing WHERE clause - issue #11380 Incomplete message after import diff --git a/README b/README index 75f9e1f16655..27b722aaca44 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 4.4.14 +Version 4.4.14.1 A set of PHP-scripts to manage MySQL over the web. diff --git a/doc/conf.py b/doc/conf.py index 8d05395126fd..6a7b22ac3261 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ # built documents. # # The short X.Y version. -version = '4.4.14' +version = '4.4.14.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/Config.class.php b/libraries/Config.class.php index b1ab9cf40e78..392586a9dd2b 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -114,7 +114,7 @@ function __construct($source = null) */ function checkSystem() { - $this->set('PMA_VERSION', '4.4.14'); + $this->set('PMA_VERSION', '4.4.14.1'); /** * @deprecated */ diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php index c85f74a41fd8..2b75262e7e8f 100644 --- a/libraries/plugins/auth/AuthenticationCookie.class.php +++ b/libraries/plugins/auth/AuthenticationCookie.class.php @@ -223,18 +223,9 @@ public function auth() . $GLOBALS['server'] . '" />'; } // end if (server choice) - // We already have one correct captcha. - $skip = false; - if ( isset($_SESSION['last_valid_captcha']) - && $_SESSION['last_valid_captcha'] - ) { - $skip = true; - } - // Add captcha input field if reCaptcha is enabled if ( !empty($GLOBALS['cfg']['CaptchaLoginPrivateKey']) && !empty($GLOBALS['cfg']['CaptchaLoginPublicKey']) - && !$skip ) { // If enabled show captcha to the user on the login screen. echo '