| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 0.10.8
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Controller\Component;
- use Cake\Controller\Component;
- use Cake\Controller\Controller;
- use Cake\Controller\Exception\AuthSecurityException;
- use Cake\Controller\Exception\SecurityException;
- use Cake\Core\Configure;
- use Cake\Event\Event;
- use Cake\Network\Exception\BadRequestException;
- use Cake\Network\Request;
- use Cake\Utility\Hash;
- use Cake\Utility\Security;
- /**
- * The Security Component creates an easy way to integrate tighter security in
- * your application. It provides methods for various tasks like:
- *
- * - Restricting which HTTP methods your application accepts.
- * - Form tampering protection
- * - Requiring that SSL be used.
- * - Limiting cross controller communication.
- *
- * @link http://book.cakephp.org/3.0/en/controllers/components/security.html
- */
- class SecurityComponent extends Component
- {
- /**
- * Default message used for exceptions thrown
- */
- const DEFAULT_EXCEPTION_MESSAGE = 'The request has been black-holed';
- /**
- * Default config
- *
- * - `blackHoleCallback` - The controller method that will be called if this
- * request is black-hole'd.
- * - `requireSecure` - List of actions that require an SSL-secured connection.
- * - `requireAuth` - List of actions that require a valid authentication key. Deprecated as of 3.2.2
- * - `allowedControllers` - Controllers from which actions of the current
- * controller are allowed to receive requests.
- * - `allowedActions` - Actions from which actions of the current controller
- * are allowed to receive requests.
- * - `unlockedFields` - Form fields to exclude from POST validation. Fields can
- * be unlocked either in the Component, or with FormHelper::unlockField().
- * Fields that have been unlocked are not required to be part of the POST
- * and hidden unlocked fields do not have their values checked.
- * - `unlockedActions` - Actions to exclude from POST validation checks.
- * Other checks like requireAuth(), requireSecure() etc. will still be applied.
- * - `validatePost` - Whether to validate POST data. Set to false to disable
- * for data coming from 3rd party services, etc.
- *
- * @var array
- */
- protected $_defaultConfig = [
- 'blackHoleCallback' => null,
- 'requireSecure' => [],
- 'requireAuth' => [],
- 'allowedControllers' => [],
- 'allowedActions' => [],
- 'unlockedFields' => [],
- 'unlockedActions' => [],
- 'validatePost' => true
- ];
- /**
- * Holds the current action of the controller
- *
- * @var string
- */
- protected $_action = null;
- /**
- * Request object
- *
- * @var \Cake\Network\Request
- */
- public $request;
- /**
- * The Session object
- *
- * @var \Cake\Network\Session
- */
- public $session;
- /**
- * Component startup. All security checking happens here.
- *
- * @param \Cake\Event\Event $event An Event instance
- * @return mixed
- */
- public function startup(Event $event)
- {
- $controller = $event->subject();
- $this->session = $this->request->session();
- $this->_action = $this->request->params['action'];
- $hasData = !empty($this->request->data);
- try {
- $this->_secureRequired($controller);
- $this->_authRequired($controller);
- $isNotRequestAction = (
- !isset($controller->request->params['requested']) ||
- $controller->request->params['requested'] != 1
- );
- if ($this->_action === $this->_config['blackHoleCallback']) {
- throw new AuthSecurityException(sprintf('Action %s is defined as the blackhole callback.', $this->_action));
- }
- if (!in_array($this->_action, (array)$this->_config['unlockedActions']) &&
- $hasData &&
- $isNotRequestAction &&
- $this->_config['validatePost']) {
- $this->_validatePost($controller);
- }
- } catch (SecurityException $se) {
- $this->blackHole($controller, $se->getType(), $se);
- }
- $this->generateToken($controller->request);
- if ($hasData && is_array($controller->request->data)) {
- unset($controller->request->data['_Token']);
- }
- }
- /**
- * Events supported by this component.
- *
- * @return array
- */
- public function implementedEvents()
- {
- return [
- 'Controller.startup' => 'startup',
- ];
- }
- /**
- * Sets the actions that require a request that is SSL-secured, or empty for all actions
- *
- * @param string|array|null $actions Actions list
- * @return void
- */
- public function requireSecure($actions = null)
- {
- $this->_requireMethod('Secure', (array)$actions);
- }
- /**
- * Sets the actions that require whitelisted form submissions.
- *
- * Adding actions with this method will enforce the restrictions
- * set in SecurityComponent::$allowedControllers and
- * SecurityComponent::$allowedActions.
- *
- * @param string|array $actions Actions list
- * @return void
- * @deprecated 3.2.2 This feature is confusing and not useful.
- */
- public function requireAuth($actions)
- {
- $this->_requireMethod('Auth', (array)$actions);
- }
- /**
- * Black-hole an invalid request with a 400 error or custom callback. If SecurityComponent::$blackHoleCallback
- * is specified, it will use this callback by executing the method indicated in $error
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @param string $error Error method
- * @param \Cake\Controller\Exception\SecurityException $exception Additional debug info describing the cause
- * @return mixed If specified, controller blackHoleCallback's response, or no return otherwise
- * @see \Cake\Controller\Component\SecurityComponent::$blackHoleCallback
- * @link http://book.cakephp.org/3.0/en/controllers/components/security.html#handling-blackhole-callbacks
- * @throws \Cake\Network\Exception\BadRequestException
- */
- public function blackHole(Controller $controller, $error = '', SecurityException $exception = null)
- {
- if (!$this->_config['blackHoleCallback']) {
- $this->_throwException($exception);
- }
- return $this->_callback($controller, $this->_config['blackHoleCallback'], [$error, $exception]);
- }
- /**
- * Check debug status and throw an Exception based on the existing one
- *
- * @param \Cake\Controller\Exception\SecurityException $exception Additional debug info describing the cause
- * @throws \Cake\Network\Exception\BadRequestException
- * @return void
- */
- protected function _throwException($exception = null)
- {
- if ($exception !== null) {
- if (!Configure::read('debug') && $exception instanceof SecurityException) {
- $exception->setReason($exception->getMessage());
- $exception->setMessage(self::DEFAULT_EXCEPTION_MESSAGE);
- }
- throw $exception;
- }
- throw new BadRequestException(self::DEFAULT_EXCEPTION_MESSAGE);
- }
- /**
- * Sets the actions that require a $method HTTP request, or empty for all actions
- *
- * @param string $method The HTTP method to assign controller actions to
- * @param array $actions Controller actions to set the required HTTP method to.
- * @return void
- */
- protected function _requireMethod($method, $actions = [])
- {
- if (isset($actions[0]) && is_array($actions[0])) {
- $actions = $actions[0];
- }
- $this->config('require' . $method, (empty($actions)) ? ['*'] : $actions);
- }
- /**
- * Check if access requires secure connection
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @return bool true if secure connection required
- */
- protected function _secureRequired(Controller $controller)
- {
- if (is_array($this->_config['requireSecure']) &&
- !empty($this->_config['requireSecure'])
- ) {
- $requireSecure = $this->_config['requireSecure'];
- if (in_array($this->_action, $requireSecure) || $requireSecure === ['*']) {
- if (!$this->request->is('ssl')) {
- throw new SecurityException(
- 'Request is not SSL and the action is required to be secure'
- );
- }
- }
- }
- return true;
- }
- /**
- * Check if authentication is required
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @return bool true if authentication required
- * @deprecated 3.2.2 This feature is confusing and not useful.
- */
- protected function _authRequired(Controller $controller)
- {
- if (is_array($this->_config['requireAuth']) &&
- !empty($this->_config['requireAuth']) &&
- !empty($this->request->data)
- ) {
- $requireAuth = $this->_config['requireAuth'];
- if (in_array($this->request->params['action'], $requireAuth) || $requireAuth == ['*']) {
- if (!isset($controller->request->data['_Token'])) {
- throw new AuthSecurityException('\'_Token\' was not found in request data.');
- }
- if ($this->session->check('_Token')) {
- $tData = $this->session->read('_Token');
- if (!empty($tData['allowedControllers']) &&
- !in_array($this->request->params['controller'], $tData['allowedControllers'])) {
- throw new AuthSecurityException(
- sprintf(
- 'Controller \'%s\' was not found in allowed controllers: \'%s\'.',
- $this->request->params['controller'],
- implode(', ', (array)$tData['allowedControllers'])
- )
- );
- }
- if (!empty($tData['allowedActions']) &&
- !in_array($this->request->params['action'], $tData['allowedActions'])
- ) {
- throw new AuthSecurityException(
- sprintf(
- 'Action \'%s::%s\' was not found in allowed actions: \'%s\'.',
- $this->request->params['controller'],
- $this->request->params['action'],
- implode(', ', (array)$tData['allowedActions'])
- )
- );
- }
- } else {
- throw new AuthSecurityException('\'_Token\' was not found in session.');
- }
- }
- }
- return true;
- }
- /**
- * Validate submitted form
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @throws \Cake\Controller\Exception\AuthSecurityException
- * @return bool true if submitted form is valid
- */
- protected function _validatePost(Controller $controller)
- {
- if (empty($controller->request->data)) {
- return true;
- }
- $token = $this->_validToken($controller);
- $hashParts = $this->_hashParts($controller);
- $check = Security::hash(implode('', $hashParts), 'sha1');
- if ($token === $check) {
- return true;
- }
- $msg = self::DEFAULT_EXCEPTION_MESSAGE;
- if (Configure::read('debug')) {
- $msg = $this->_debugPostTokenNotMatching($controller, $hashParts);
- }
- throw new AuthSecurityException($msg);
- }
- /**
- * Check if token is valid
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @throws \Cake\Controller\Exception\SecurityException
- * @return string fields token
- */
- protected function _validToken(Controller $controller)
- {
- $check = $controller->request->data;
- $message = '\'%s\' was not found in request data.';
- if (!isset($check['_Token'])) {
- throw new AuthSecurityException(sprintf($message, '_Token'));
- }
- if (!isset($check['_Token']['fields'])) {
- throw new AuthSecurityException(sprintf($message, '_Token.fields'));
- }
- if (!isset($check['_Token']['unlocked'])) {
- throw new AuthSecurityException(sprintf($message, '_Token.unlocked'));
- }
- if (Configure::read('debug') && !isset($check['_Token']['debug'])) {
- throw new SecurityException(sprintf($message, '_Token.debug'));
- }
- if (!Configure::read('debug') && isset($check['_Token']['debug'])) {
- throw new SecurityException('Unexpected \'_Token.debug\' found in request data');
- }
- $token = urldecode($check['_Token']['fields']);
- if (strpos($token, ':')) {
- list($token, ) = explode(':', $token, 2);
- }
- return $token;
- }
- /**
- * Return hash parts for the Token generation
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @return array
- */
- protected function _hashParts(Controller $controller)
- {
- $fieldList = $this->_fieldsList($controller->request->data);
- $unlocked = $this->_sortedUnlocked($controller->request->data);
- return [
- $controller->request->here(),
- serialize($fieldList),
- $unlocked,
- Security::salt()
- ];
- }
- /**
- * Return the fields list for the hash calculation
- *
- * @param array $check Data array
- * @return array
- */
- protected function _fieldsList(array $check)
- {
- $locked = '';
- $token = urldecode($check['_Token']['fields']);
- $unlocked = $this->_unlocked($check);
- if (strpos($token, ':')) {
- list($token, $locked) = explode(':', $token, 2);
- }
- unset($check['_Token'], $check['_csrfToken']);
- $locked = explode('|', $locked);
- $unlocked = explode('|', $unlocked);
- $fields = Hash::flatten($check);
- $fieldList = array_keys($fields);
- $multi = $lockedFields = [];
- $isUnlocked = false;
- foreach ($fieldList as $i => $key) {
- if (preg_match('/(\.\d+){1,10}$/', $key)) {
- $multi[$i] = preg_replace('/(\.\d+){1,10}$/', '', $key);
- unset($fieldList[$i]);
- } else {
- $fieldList[$i] = (string)$key;
- }
- }
- if (!empty($multi)) {
- $fieldList += array_unique($multi);
- }
- $unlockedFields = array_unique(
- array_merge((array)$this->config('disabledFields'), (array)$this->_config['unlockedFields'], $unlocked)
- );
- foreach ($fieldList as $i => $key) {
- $isLocked = (is_array($locked) && in_array($key, $locked));
- if (!empty($unlockedFields)) {
- foreach ($unlockedFields as $off) {
- $off = explode('.', $off);
- $field = array_values(array_intersect(explode('.', $key), $off));
- $isUnlocked = ($field === $off);
- if ($isUnlocked) {
- break;
- }
- }
- }
- if ($isUnlocked || $isLocked) {
- unset($fieldList[$i]);
- if ($isLocked) {
- $lockedFields[$key] = $fields[$key];
- }
- }
- }
- sort($fieldList, SORT_STRING);
- ksort($lockedFields, SORT_STRING);
- $fieldList += $lockedFields;
- return $fieldList;
- }
- /**
- * Get the unlocked string
- *
- * @param array $data Data array
- * @return string
- */
- protected function _unlocked(array $data)
- {
- return urldecode($data['_Token']['unlocked']);
- }
- /**
- * Get the sorted unlocked string
- *
- * @param array $data Data array
- * @return string
- */
- protected function _sortedUnlocked($data)
- {
- $unlocked = $this->_unlocked($data);
- $unlocked = explode('|', $unlocked);
- sort($unlocked, SORT_STRING);
- return implode('|', $unlocked);
- }
- /**
- * Create a message for humans to understand why Security token is not matching
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @param array $hashParts Elements used to generate the Token hash
- * @return string Message explaining why the tokens are not matching
- */
- protected function _debugPostTokenNotMatching(Controller $controller, $hashParts)
- {
- $messages = [];
- $expectedParts = json_decode(urldecode($controller->request->data['_Token']['debug']), true);
- if (!is_array($expectedParts) || count($expectedParts) !== 3) {
- return 'Invalid security debug token.';
- }
- $expectedUrl = Hash::get($expectedParts, 0);
- $url = Hash::get($hashParts, 0);
- if ($expectedUrl !== $url) {
- $messages[] = sprintf('URL mismatch in POST data (expected \'%s\' but found \'%s\')', $expectedUrl, $url);
- }
- $expectedFields = Hash::get($expectedParts, 1);
- $dataFields = Hash::get($hashParts, 1);
- if ($dataFields) {
- $dataFields = unserialize($dataFields);
- }
- $fieldsMessages = $this->_debugCheckFields(
- $dataFields,
- $expectedFields,
- 'Unexpected field \'%s\' in POST data',
- 'Tampered field \'%s\' in POST data (expected value \'%s\' but found \'%s\')',
- 'Missing field \'%s\' in POST data'
- );
- $expectedUnlockedFields = Hash::get($expectedParts, 2);
- $dataUnlockedFields = Hash::get($hashParts, 2) ?: [];
- if ($dataUnlockedFields) {
- $dataUnlockedFields = explode('|', $dataUnlockedFields);
- }
- $unlockFieldsMessages = $this->_debugCheckFields(
- $dataUnlockedFields,
- $expectedUnlockedFields,
- 'Unexpected unlocked field \'%s\' in POST data',
- null,
- 'Missing unlocked field: \'%s\''
- );
- $messages = array_merge($messages, $fieldsMessages, $unlockFieldsMessages);
- return implode(', ', $messages);
- }
- /**
- * Iterates data array to check against expected
- *
- * @param array $dataFields Fields array, containing the POST data fields
- * @param array $expectedFields Fields array, containing the expected fields we should have in POST
- * @param string $intKeyMessage Message string if unexpected found in data fields indexed by int (not protected)
- * @param string $stringKeyMessage Message string if tampered found in data fields indexed by string (protected)
- * @param string $missingMessage Message string if missing field
- * @return array Messages
- */
- protected function _debugCheckFields($dataFields, $expectedFields = [], $intKeyMessage = '', $stringKeyMessage = '', $missingMessage = '')
- {
- $messages = $this->_matchExistingFields($dataFields, $expectedFields, $intKeyMessage, $stringKeyMessage);
- $expectedFieldsMessage = $this->_debugExpectedFields($expectedFields, $missingMessage);
- if ($expectedFieldsMessage !== null) {
- $messages[] = $expectedFieldsMessage;
- }
- return $messages;
- }
- /**
- * Manually add form tampering prevention token information into the provided
- * request object.
- *
- * @param \Cake\Network\Request $request The request object to add into.
- * @return bool
- */
- public function generateToken(Request $request)
- {
- if (isset($request->params['requested']) && $request->params['requested'] === 1) {
- if ($this->session->check('_Token')) {
- $request->params['_Token'] = $this->session->read('_Token');
- }
- return false;
- }
- $token = [
- 'allowedControllers' => $this->_config['allowedControllers'],
- 'allowedActions' => $this->_config['allowedActions'],
- 'unlockedFields' => $this->_config['unlockedFields'],
- ];
- $this->session->write('_Token', $token);
- $request->params['_Token'] = [
- 'unlockedFields' => $token['unlockedFields']
- ];
- return true;
- }
- /**
- * Calls a controller callback method
- *
- * @param \Cake\Controller\Controller $controller Instantiating controller
- * @param string $method Method to execute
- * @param array $params Parameters to send to method
- * @return mixed Controller callback method's response
- * @throws \Cake\Network\Exception\BadRequestException When a the blackholeCallback is not callable.
- */
- protected function _callback(Controller $controller, $method, $params = [])
- {
- if (!is_callable([$controller, $method])) {
- throw new BadRequestException('The request has been black-holed');
- }
- return call_user_func_array([&$controller, $method], empty($params) ? null : $params);
- }
- /**
- * Generate array of messages for the existing fields in POST data, matching dataFields in $expectedFields
- * will be unset
- *
- * @param array $dataFields Fields array, containing the POST data fields
- * @param array $expectedFields Fields array, containing the expected fields we should have in POST
- * @param string $intKeyMessage Message string if unexpected found in data fields indexed by int (not protected)
- * @param string $stringKeyMessage Message string if tampered found in data fields indexed by string (protected)
- * @return array Error messages
- */
- protected function _matchExistingFields($dataFields, &$expectedFields, $intKeyMessage, $stringKeyMessage)
- {
- $messages = [];
- foreach ((array)$dataFields as $key => $value) {
- if (is_int($key)) {
- $foundKey = array_search($value, (array)$expectedFields);
- if ($foundKey === false) {
- $messages[] = sprintf($intKeyMessage, $value);
- } else {
- unset($expectedFields[$foundKey]);
- }
- } elseif (is_string($key)) {
- if (isset($expectedFields[$key]) && $value !== $expectedFields[$key]) {
- $messages[] = sprintf($stringKeyMessage, $key, $expectedFields[$key], $value);
- }
- unset($expectedFields[$key]);
- }
- }
- return $messages;
- }
- /**
- * Generate debug message for the expected fields
- *
- * @param array $expectedFields Expected fields
- * @param string $missingMessage Message template
- * @return string Error message about expected fields
- */
- protected function _debugExpectedFields($expectedFields = [], $missingMessage = '')
- {
- if (count($expectedFields) === 0) {
- return null;
- }
- $expectedFieldNames = [];
- foreach ((array)$expectedFields as $key => $expectedField) {
- if (is_int($key)) {
- $expectedFieldNames[] = $expectedField;
- } else {
- $expectedFieldNames[] = $key;
- }
- }
- return sprintf($missingMessage, implode(', ', $expectedFieldNames));
- }
- }
|