diff options
author | thomascube <thomas@roundcube.net> | 2006-12-29 21:06:39 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-12-29 21:06:39 +0000 |
commit | 86df1529feb4b7eb1a9721baa194518bacbfd8ff (patch) | |
tree | 380827ed01c3e3e3a3253d0b00c350b467186a25 /program/steps/mail/func.inc | |
parent | 3b12aeeeca89bbc3d8cc5342beb07643067e3760 (diff) |
Error handling for attachment uploads; multibyte-safe string functions; XSS improvements
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index dea6c040e..b8c391aae 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1214,7 +1214,7 @@ function rcmail_mod_html_body($body, $container_id) while ($body != $prev_body) { $prev_body = $body; - $body = preg_replace('/(<[^!][^>]*?\s)(on\w+?)(=[^>]*?>)/im', '$1__removed=$3', $body); + $body = preg_replace('/(<[^!][^>]*?\s)(on[^=]+)(=[^>]*?>)/im', '$1__removed=$3', $body); $body = preg_replace('/(<[^!][^>]*?\shref=["\']?)(javascript:)([^>]*?>)/im', '$1null:$3', $body); } |