Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-01-11 20:31:56 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-01-11 20:31:56 +0300
commit0bee94b27ee7681bb464efd81f4517150a99b330 (patch)
tree92eae484f840cf4c5db9bb9ea401be98ff389b7d /libraries/config.default.php
parent2b546632d6e56396052cc5eae227ef8cdf89aadc (diff)
parent7dde0d019f6b6b51887843e6a1869671603cb367 (diff)
Merge branch 'QA_5_1-security' into master-security
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/config.default.php')
-rw-r--r--libraries/config.default.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/libraries/config.default.php b/libraries/config.default.php
index d1bb8f86a3..725795c157 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -607,6 +607,13 @@ $cfg['Servers'][$i]['tracking_add_drop_table'] = true;
$cfg['Servers'][$i]['tracking_add_drop_database'] = true;
/**
+ * Whether to show or hide detailed MySQL/MariaDB connection errors on the login page.
+ *
+ * @global bool $cfg['Servers'][$i]['hide_connection_errors']
+ */
+$cfg['Servers'][$i]['hide_connection_errors'] = false;
+
+/**
* Default server (0 = no default server)
*
* If you have more than one server configured, you can set $cfg['ServerDefault']
@@ -840,6 +847,20 @@ $cfg['UseDbSearch'] = true;
$cfg['IgnoreMultiSubmitErrors'] = false;
/**
+ * Define whether phpMyAdmin will encrypt sensitive data from the URL query string.
+ *
+ * @global bool $cfg['URLQueryEncryption']
+ */
+$cfg['URLQueryEncryption'] = false;
+
+/**
+ * A secret key used to encrypt/decrypt the URL query string. Should be 32 bytes long.
+ *
+ * @global string $cfg['URLQueryEncryptionSecretKey']
+ */
+$cfg['URLQueryEncryptionSecretKey'] = '';
+
+/**
* allow login to any user entered server in cookie based authentication
*
* @global boolean $cfg['AllowArbitraryServer']