[security] Fixed local path disclosure vulnerability, see PMASA-2012-2

This commit is contained in:
Marc Delisle
2012-03-28 12:39:39 -04:00
parent 5ac9f508a1
commit c51817d3b8
2 changed files with 6 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
phpMyAdmin - ChangeLog phpMyAdmin - ChangeLog
====================== ======================
3.4.10.2 (2012-03-28)
- [security] Fixed local path disclosure vulnerability, see PMASA-2012-2
3.4.10.1 (2012-02-18) 3.4.10.1 (2012-02-18)
- [security] XSS in replication setup, see PMASA-2012-1 - [security] XSS in replication setup, see PMASA-2012-1

View File

@@ -14,6 +14,8 @@ error_reporting(E_ALL);
/** /**
* Read config file. * Read config file.
*/ */
require CONFIG_FILE; if (is_readable(CONFIG_FILE)) {
require CONFIG_FILE;
}
?> ?>