summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-11-01 00:01:40 +0000
committerthomascube <thomas@roundcube.net>2005-11-01 00:01:40 +0000
commitdba5f7c44a92c8e6986fa9395536347508145f60 (patch)
treee90c57be4dd31c14e6bc6b03d85ea5a9ad51ecd2
parent9db57c57feeb113d370e52480c63b6cd00d292b2 (diff)
Prevent from identities XSS
-rw-r--r--CHANGELOG2
-rw-r--r--program/steps/settings/save_identity.inc4
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7430c45ce..ebb9d8347 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -68,3 +68,5 @@ CHANGELOG RoundCube Webmail
- Set default user language from config 'locale_string'
- Added sorting patch for message list
- Make default sort col/order configurable
+- Fixed XSS in address book and identities
+
diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc
index 680833d7c..ea186ec12 100644
--- a/program/steps/settings/save_identity.inc
+++ b/program/steps/settings/save_identity.inc
@@ -33,7 +33,7 @@ if ($_POST['_iid'])
if (!isset($_POST[$fname]))
continue;
- $a_write_sql[] = sprintf("`%s`='%s'", $col, addslashes($_POST[$fname]));
+ $a_write_sql[] = sprintf("`%s`='%s'", $col, addslashes(strip_tags($_POST[$fname])));
}
if (sizeof($a_write_sql))
@@ -87,7 +87,7 @@ else
continue;
$a_insert_cols[] = $DB->quoteIdentifier($col);
- $a_insert_values[] = sprintf("'%s'", addslashes($_POST[$fname]));
+ $a_insert_values[] = sprintf("'%s'", addslashes(strip_tags($_POST[$fname])));
}
if (sizeof($a_insert_cols))