diff options
author | thomascube <thomas@roundcube.net> | 2009-07-21 16:13:42 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-07-21 16:13:42 +0000 |
commit | 2a5d02ab8ea2e80d7d73f90b1d31994def0c7c43 (patch) | |
tree | b20bee3635f16d918e3f13ab3f673b700f77252a /program/steps/settings/delete_identity.inc | |
parent | 5499336feff22f682448dd99cc00a9b36701fcd1 (diff) |
Also protect GET request from CSRF
Diffstat (limited to 'program/steps/settings/delete_identity.inc')
-rw-r--r-- | program/steps/settings/delete_identity.inc | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/program/steps/settings/delete_identity.inc b/program/steps/settings/delete_identity.inc index 97c16d578..3d8e2420b 100644 --- a/program/steps/settings/delete_identity.inc +++ b/program/steps/settings/delete_identity.inc @@ -5,7 +5,7 @@ | program/steps/settings/delete_identity.inc | | | | This file is part of the RoundCube Webmail client | - | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | + | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -19,11 +19,20 @@ */ -if (($ids = get_input_value('_iid', RCUBE_INPUT_GET)) && preg_match('/^[0-9]+(,[0-9]+)*$/', $ids)) +$iid = get_input_value('_iid', RCUBE_INPUT_GPC); + +// check request token +if (!$OUTPUT->ajax_call && !$RCMAIL->check_request(RCUBE_INPUT_GPC)) { + $OUTPUT->show_message('invalidrequest', 'error'); + rcmail_overwrite_action('identities'); + return; +} + +if ($iid && preg_match('/^[0-9]+(,[0-9]+)*$/', $iid)) { - $plugin = $RCMAIL->plugins->exec_hook('delete_identity', array('id' => $ids)); + $plugin = $RCMAIL->plugins->exec_hook('delete_identity', array('id' => $iid)); - if (!$plugin['abort'] && $USER->delete_identity($ids)) { + if (!$plugin['abort'] && $USER->delete_identity($iid)) { $OUTPUT->show_message('deletedsuccessfully', 'confirmation', null, false); } else { |