From 2849c0cff8bd362f2a66befcd39f9723524dd620 Mon Sep 17 00:00:00 2001 From: Fenn-CS Date: Mon, 13 Mar 2017 22:22:46 +0100 Subject: [PATCH] Stripped PMA version from curl user-agent to increase consitency and security Signed-off-by: Fenn-CS --- libraries/Util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Util.php b/libraries/Util.php index 8ae1241224..fa85f87752 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -4760,7 +4760,7 @@ class Util ); } } - $curl_status &= curl_setopt($curl_handle, CURLOPT_USERAGENT, 'phpMyAdmin/' . PMA_VERSION); + $curl_status &= curl_setopt($curl_handle, CURLOPT_USERAGENT, 'phpMyAdmin'); if ($method != "GET") { $curl_status &= curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, $method);