1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
<?php
App::import('Core', array('Security'));
class BeSecurityComponent extends Object {
public $components = array('Session', 'RequestHandler');
public $controller = null;
public $validatePost = true;
public $disableActions = array();
public function initialize($controller, $settings = array()) {
$this->controller = &$controller;
$this->_set($settings);
}
public function startup($controller) {
$isPost = ($this->RequestHandler->isPost() || $this->RequestHandler->isPut());
$isNotRequestAction = (
!isset($controller->params['requested']) ||
$controller->params['requested'] != 1
);
$disableActions = (!is_array($this->disableActions)) ? array($this->disableActions) : $this->disableActions;
if ($isPost && $isNotRequestAction && $this->validatePost && !in_array($controller->action, $disableActions)) {
if ($this->validateCsrf() === false) {
throw new BeditaException(__('Security error: CSRF token is invalid. Please try to resubmit the form', true));
}
}
$this->generateToken();
}
protected function generateToken() {
if (!$this->Session->started()) {
return false;
}
if (isset($this->controller->params['requested']) && $this->controller->params['requested'] === 1) {
if ($this->Session->check('_csrfToken')) {
$tokenData = unserialize($this->Session->read('_csrfToken'));
$this->controller->params['_csrfToken'] = $tokenData;
}
return false;
}
$authKey = Security::generateAuthKey();
$expires = strtotime('+' . Security::inactiveMins() . ' minutes');
$token = array(
'key' => $authKey,
'expires' => $expires
);
if ($this->Session->check('_csrfToken')) {
$tokenData = unserialize($this->Session->read('_csrfToken'));
$valid = (
isset($tokenData['expires']) &&
$tokenData['expires'] > time() &&
isset($tokenData['key'])
);
if ($valid) {
$token['key'] = $tokenData['key'];
}
}
$this->controller->params['_csrfToken'] = $token;
$this->Session->write('_csrfToken', serialize($token));
return true;
}
protected function validateCsrf() {
if (empty($this->controller->data) && empty($this->controller->params['form'])) {
return true;
}
$data = $this->controller->data;
if (!isset($data['_csrfToken']) || !isset($data['_csrfToken']['key'])) {
return false;
}
$token = $data['_csrfToken']['key'];
if ($this->Session->check('_csrfToken')) {
$tokenData = unserialize($this->Session->read('_csrfToken'));
if ($tokenData['expires'] < time() || $tokenData['key'] !== $token) {
return false;
}
} else {
return false;
}
}
}