From b5f6a1a03de9343ffc718ce253f7730e4d8d6c19 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Tue, 29 Mar 2016 13:36:35 -0400 Subject: [PATCH] Fix for #3812 Insufficient validation of PHP version selector for ISPConfig 3.1 branch. --- interface/web/sites/web_vhost_domain_edit.php | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/interface/web/sites/web_vhost_domain_edit.php b/interface/web/sites/web_vhost_domain_edit.php index 4e1853f..7d6f17a 100644 --- a/interface/web/sites/web_vhost_domain_edit.php +++ b/interface/web/sites/web_vhost_domain_edit.php @@ -1304,6 +1304,32 @@ $this->dataRecord['folder_directive_snippets'] = trim($this->dataRecord['folder_directive_snippets']); } + // Check custom PHP version + if(isset($this->dataRecord['fastcgi_php_version']) && $this->dataRecord['fastcgi_php_version'] != '') { + // Check php-fpm mode + if($this->dataRecord['php'] == 'php-fpm'){ + $tmp = $app->db->queryOneRecord("SELECT * FROM server_php WHERE CONCAT(name,':',php_fpm_init_script,':',php_fpm_ini_dir,':',php_fpm_pool_dir) = '".$app->db->quote($this->dataRecord['fastcgi_php_version'])."'"); + if(is_array($tmp)) { + $this->dataRecord['fastcgi_php_version'] = $tmp['name'].':'.$tmp['php_fpm_init_script'].':'.$tmp['php_fpm_ini_dir'].':'.$tmp['php_fpm_pool_dir']; + } else { + $this->dataRecord['fastcgi_php_version'] = ''; + } + unset($tmp); + // Check fast-cgi mode + } elseif($this->dataRecord['php'] == 'fast-cgi') { + $tmp = $app->db->queryOneRecord("SELECT * FROM server_php WHERE CONCAT(name,':',php_fastcgi_binary,':',php_fastcgi_ini_dir) = '".$app->db->quote($this->dataRecord['fastcgi_php_version'])."'"); + if(is_array($tmp)) { + $this->dataRecord['fastcgi_php_version'] = $tmp['name'].':'.$tmp['php_fastcgi_binary'].':'.$tmp['php_fastcgi_ini_dir']; + } else { + $this->dataRecord['fastcgi_php_version'] = ''; + } + unset($tmp); + } else { + // Other PHP modes do not have custom versions, so we force the value to be empty + $this->dataRecord['fastcgi_php_version'] = ''; + } + } + parent::onSubmit(); } -- Gitblit v1.9.1