Skip to content
Snippets Groups Projects
Commit cb904e40 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#2172 - User's group created with empty values (mysql escaping problem)

parent 61211e91
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ class mail_user_filter_plugin { ...@@ -111,7 +111,7 @@ class mail_user_filter_plugin {
} }
} }
$out = mysql_real_escape_string($out); $out = $app->db->quote($out);
$app->db->datalogUpdate('mail_user', "custom_mailfilter = '$out'", 'mailuser_id', $page_form->dataRecord["mailuser_id"]); $app->db->datalogUpdate('mail_user', "custom_mailfilter = '$out'", 'mailuser_id', $page_form->dataRecord["mailuser_id"]);
} }
......
...@@ -136,7 +136,7 @@ class page_action extends tform_actions { ...@@ -136,7 +136,7 @@ class page_action extends tform_actions {
function onAfterInsert() { function onAfterInsert() {
global $app, $conf; global $app, $conf;
// Create the group for the client // Create the group for the client
$groupid = $app->db->datalogInsert('sys_group', "(name,description,client_id) VALUES ('".mysql_real_escape_string($this->dataRecord["username"])."','',".$this->id.")", 'groupid'); $groupid = $app->db->datalogInsert('sys_group', "(name,description,client_id) VALUES ('".$app->db->quote($this->dataRecord["username"])."','',".$this->id.")", 'groupid');
$groups = $groupid; $groups = $groupid;
$username = $app->db->quote($this->dataRecord["username"]); $username = $app->db->quote($this->dataRecord["username"]);
......
...@@ -138,7 +138,7 @@ class page_action extends tform_actions { ...@@ -138,7 +138,7 @@ class page_action extends tform_actions {
function onAfterInsert() { function onAfterInsert() {
global $app, $conf; global $app, $conf;
// Create the group for the reseller // Create the group for the reseller
$groupid = $app->db->datalogInsert('sys_group', "(name,description,client_id) VALUES ('".mysql_real_escape_string($this->dataRecord["username"])."','',".$this->id.")", 'groupid'); $groupid = $app->db->datalogInsert('sys_group', "(name,description,client_id) VALUES ('".$app->db->quote($this->dataRecord["username"])."','',".$this->id.")", 'groupid');
$groups = $groupid; $groups = $groupid;
$username = $app->db->quote($this->dataRecord["username"]); $username = $app->db->quote($this->dataRecord["username"]);
......
...@@ -238,7 +238,7 @@ class page_action extends tform_actions { ...@@ -238,7 +238,7 @@ class page_action extends tform_actions {
// Spamfilter policy // Spamfilter policy
$policy_id = intval($this->dataRecord["policy"]); $policy_id = intval($this->dataRecord["policy"]);
if($policy_id > 0) { if($policy_id > 0) {
$tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".mysql_real_escape_string($this->dataRecord["domain"])."'"); $tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".$app->db->quote($this->dataRecord["domain"])."'");
if($tmp_user["id"] > 0) { if($tmp_user["id"] > 0) {
// There is already a record that we will update // There is already a record that we will update
$app->db->datalogUpdate('spamfilter_users', "policy_id = $ploicy_id", 'id', $tmp_user["id"]); $app->db->datalogUpdate('spamfilter_users', "policy_id = $ploicy_id", 'id', $tmp_user["id"]);
...@@ -297,7 +297,7 @@ class page_action extends tform_actions { ...@@ -297,7 +297,7 @@ class page_action extends tform_actions {
// Spamfilter policy // Spamfilter policy
$policy_id = intval($this->dataRecord["policy"]); $policy_id = intval($this->dataRecord["policy"]);
$tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".mysql_real_escape_string($this->dataRecord["domain"])."'"); $tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".$app->db->quote($this->dataRecord["domain"])."'");
if($policy_id > 0) { if($policy_id > 0) {
if($tmp_user["id"] > 0) { if($tmp_user["id"] > 0) {
// There is already a record that we will update // There is already a record that we will update
...@@ -322,7 +322,7 @@ class page_action extends tform_actions { ...@@ -322,7 +322,7 @@ class page_action extends tform_actions {
$mail_config = $app->getconf->get_server_config($this->dataRecord["server_id"],'mail'); $mail_config = $app->getconf->get_server_config($this->dataRecord["server_id"],'mail');
//* Update the mailboxes //* Update the mailboxes
$mailusers = $app->db->queryAllRecords("SELECT * FROM mail_user WHERE email like '%@".mysql_real_escape_string($this->oldDataRecord['domain'])."'"); $mailusers = $app->db->queryAllRecords("SELECT * FROM mail_user WHERE email like '%@".$app->db->quote($this->oldDataRecord['domain'])."'");
$sys_groupid = (isset($this->dataRecord['client_group_id']))?$this->dataRecord['client_group_id']:$this->oldDataRecord['sys_groupid']; $sys_groupid = (isset($this->dataRecord['client_group_id']))?$this->dataRecord['client_group_id']:$this->oldDataRecord['sys_groupid'];
if(is_array($mailusers)) { if(is_array($mailusers)) {
foreach($mailusers as $rec) { foreach($mailusers as $rec) {
...@@ -330,27 +330,27 @@ class page_action extends tform_actions { ...@@ -330,27 +330,27 @@ class page_action extends tform_actions {
$mail_parts = explode("@",$rec['email']); $mail_parts = explode("@",$rec['email']);
$maildir = str_replace("[domain]",$this->dataRecord['domain'],$mail_config["maildir_path"]); $maildir = str_replace("[domain]",$this->dataRecord['domain'],$mail_config["maildir_path"]);
$maildir = str_replace("[localpart]",$mail_parts[0],$maildir); $maildir = str_replace("[localpart]",$mail_parts[0],$maildir);
$maildir = mysql_real_escape_string($maildir); $maildir = $app->db->quote($maildir);
$email = mysql_real_escape_string($mail_parts[0].'@'.$this->dataRecord['domain']); $email = $app->db->quote($mail_parts[0].'@'.$this->dataRecord['domain']);
$app->db->datalogUpdate('mail_user', "maildir = '$maildir', email = '$email', sys_groupid = '$sys_groupid'", 'mailuser_id', $rec['mailuser_id']); $app->db->datalogUpdate('mail_user', "maildir = '$maildir', email = '$email', sys_groupid = '$sys_groupid'", 'mailuser_id', $rec['mailuser_id']);
} }
} }
//* Update the aliases //* Update the aliases
$forwardings = $app->db->queryAllRecords("SELECT * FROM mail_forwarding WHERE source like '%@".mysql_real_escape_string($this->oldDataRecord['domain'])."' OR destination like '%@".mysql_real_escape_string($this->oldDataRecord['domain'])."'"); $forwardings = $app->db->queryAllRecords("SELECT * FROM mail_forwarding WHERE source like '%@".$app->db->quote($this->oldDataRecord['domain'])."' OR destination like '%@".mysql_real_escape_string($this->oldDataRecord['domain'])."'");
if(is_array($forwardings)) { if(is_array($forwardings)) {
foreach($forwardings as $rec) { foreach($forwardings as $rec) {
$destination = mysql_real_escape_string(str_replace($this->oldDataRecord['domain'],$this->dataRecord['domain'],$rec['destination'])); $destination = $app->db->quote(str_replace($this->oldDataRecord['domain'],$this->dataRecord['domain'],$rec['destination']));
$source = mysql_real_escape_string(str_replace($this->oldDataRecord['domain'],$this->dataRecord['domain'],$rec['source'])); $source = $app->db->quote(str_replace($this->oldDataRecord['domain'],$this->dataRecord['domain'],$rec['source']));
$app->db->datalogUpdate('mail_forwarding', "source = '$source', destination = '$destination', sys_groupid = '$sys_groupid'", 'forwarding_id', $rec['forwarding_id']); $app->db->datalogUpdate('mail_forwarding', "source = '$source', destination = '$destination', sys_groupid = '$sys_groupid'", 'forwarding_id', $rec['forwarding_id']);
} }
} }
//* Update the mailinglist //* Update the mailinglist
$app->db->query("UPDATE mail_mailinglist SET sys_groupid = $sys_groupid WHERE domain = '".mysql_real_escape_string($this->oldDataRecord['domain'])."'"); $app->db->query("UPDATE mail_mailinglist SET sys_groupid = $sys_groupid WHERE domain = '".$app->db->quote($this->oldDataRecord['domain'])."'");
//* Delete the old spamfilter record //* Delete the old spamfilter record
$tmp = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".mysql_real_escape_string($this->oldDataRecord["domain"])."'"); $tmp = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '@".$app->db->quote($this->oldDataRecord["domain"])."'");
$app->db->datalogDelete('spamfilter_users', 'id', $tmp["id"]); $app->db->datalogDelete('spamfilter_users', 'id', $tmp["id"]);
unset($tmp); unset($tmp);
......
...@@ -54,7 +54,7 @@ class page_action extends tform_actions { ...@@ -54,7 +54,7 @@ class page_action extends tform_actions {
function onBeforeDelete() { function onBeforeDelete() {
global $app; $conf; global $app; $conf;
$tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '".mysql_real_escape_string($this->dataRecord["email"])."'"); $tmp_user = $app->db->queryOneRecord("SELECT id FROM spamfilter_users WHERE email = '".$app->db->quote($this->dataRecord["email"])."'");
$app->db->datalogDelete('spamfilter_users', 'id', $tmp_user["id"]); $app->db->datalogDelete('spamfilter_users', 'id', $tmp_user["id"]);
$tmp_filters = $app->db->queryAllRecords("SELECT filter_id FROM mail_user_filter WHERE mailuser_id = '".$this->id."'"); $tmp_filters = $app->db->queryAllRecords("SELECT filter_id FROM mail_user_filter WHERE mailuser_id = '".$this->id."'");
......
...@@ -72,7 +72,7 @@ class page_action extends tform_actions { ...@@ -72,7 +72,7 @@ class page_action extends tform_actions {
} }
} }
$out = mysql_real_escape_string($out); $out = $app->db->quote($out);
$app->db->datalogUpdate('mail_user', "custom_mailfilter = '$out'", 'mailuser_id', $this->dataRecord["mailuser_id"]); $app->db->datalogUpdate('mail_user', "custom_mailfilter = '$out'", 'mailuser_id', $this->dataRecord["mailuser_id"]);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment