Reputation: 1059
Cakephp version I'm using is 3.4.x
I have more than a dozen forms in my cakephp 3 application. I wanna implement xss filtering for all forms. What's the easiest way to do this without making changes to all form functions.
I read in one answer that, to sanitize in a view, we should use the CakePHP convenience function h($string) which will render all attempts at XSS completely harmless.
I tried this but id did not work out.
\src\Template\Users\view.ctp
<p><span>Address</span>: <?= h($user->address) ?></p>
Is there a way to implement xss filtering before saving data to database?
My Controller function (which cakephp baked for me) for adding a new user and his info
\src\Controller\UsersController.php
public function add(){
$this->viewBuilder()->setLayout('admin') ;
$user = $this->Users->newEntity();
if ($this->request->is('post')) {
$user = $this->Users->patchEntity($user, $this->request->getData());
if ($this->Users->save($user)) {
$this->Flash->success(__('The user has been saved.'));
return $this->redirect(['action' => 'index']);
}
$this->Flash->error(__('The user could not be saved. Please, try again.'));
}
$groups = $this->Users->Groups->find('list', ['limit' => 200]);
$this->set(compact('user', 'groups'));
$this->set('_serialize', ['user']);
}
\src\Model\Table\UsersTable.php
public function beforeSave(Event $event)
{
$entity = $event->getData('entity');
if ($entity->isNew()) {
$hasher = new DefaultPasswordHasher();
// Generate an API 'token'
$entity->api_key_plain = sha1(Text::uuid());
// Bcrypt the token so BasicAuthenticate can check
// it during login.
$entity->api_key = $hasher->hash($entity->api_key_plain);
}
return true;
}
Thanks!
Upvotes: 0
Views: 1115
Reputation: 2605
You need to remove tag from your entity
.
please check the official solution for cakephp 3.X
You need to use this in model
use Cake\Event\Event;
use ArrayObject;
public function beforeMarshal(Event $event, ArrayObject $data, ArrayObject $options)
{
foreach ($data as $key => $value) {
if (is_string($value)) {
$data[$key] = trim(strip_tags($value));
}
}
}
Upvotes: 0
Reputation: 1237
You can use mutator method in your User Entity class:
class User extends Entity
{
protected function _setAddress($value) {
return strip_tags($value);
}
}
Using this mutator, You can modify input data before saving to database everytime, when entity is updated or created. More about mutators: https://book.cakephp.org/3.0/en/orm/entities.html#accessors-mutators
You can also use other way, but I wrote this minute ago. You should test this code if You wanna use. Using $entity->getDirty()
method we can get all modified fields, and change their values in Table::beforeSave()
method:
public function beforeSave($event)
{
$entity = $event->getData('entity');
$modified = $entity->getDirty();
foreach((array) $modified as $v) {
if(isset($entity->{$v})) {
$entity->{$v} = strip_tags($entity->{$v});
}
}
return true;
}
Upvotes: 0