Also protect GET request from CSRF

release-0.6
thomascube 16 years ago
parent 5499336fef
commit 2a5d02ab8e

@ -3,6 +3,7 @@ CHANGELOG RoundCube Webmail
- Fix import of vCard entries with params (#1485453) - Fix import of vCard entries with params (#1485453)
- Fix HTML messages output with empty block elements (#1485974) - Fix HTML messages output with empty block elements (#1485974)
- Use request tokens to protect POST requests from CSFR
- Added hook when killing a session - Added hook when killing a session
- Added hook to write_log function (#1485971) - Added hook to write_log function (#1485971)
- Performance improvements by use UID commands (#1485690) - Performance improvements by use UID commands (#1485690)

@ -2969,8 +2969,9 @@ function rcube_webmail()
if (!id) if (!id)
id = this.env.iid ? this.env.iid : selection[0]; id = this.env.iid ? this.env.iid : selection[0];
// if (this.env.framed && id) // append token to request
this.goto_url('delete-identity', '_iid='+id, true); this.goto_url('delete-identity', '_iid='+id+'&_token='+this.env.request_token, true);
return true; return true;
}; };

@ -5,7 +5,7 @@
| program/steps/settings/delete_identity.inc | | program/steps/settings/delete_identity.inc |
| | | |
| This file is part of the RoundCube Webmail client | | 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 | | Licensed under the GNU GPL |
| | | |
| PURPOSE: | | 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); $OUTPUT->show_message('deletedsuccessfully', 'confirmation', null, false);
} }
else { else {

Loading…
Cancel
Save