sneek/laravel-xss-middleware
Simple Laravel XSS middlware to strip all tags and encode all entities from a user
3,581
2
| Install | |
|---|---|
composer require sneek/laravel-xss-middleware |
|
| Latest Version: | 1.1.0 |
| PHP: | >=5.4 |
| License: | GPL-3.0 |
| Last Updated: | Oct 8, 2017 |
| Links: | GitHub · Packagist |
Maintainer: CristianGiordano
XSS Middleware
A simple middleware for use in Laravel projects.
Installation
Clone the repository
composer require sneek/laravel-xss-middleware
Add to the Http kernel App\Http\Kernel
/**
* The application's route middleware groups.
*
* @var array
*/
protected $middlewareGroups = [
'web' => [
...
\Sneek\Http\Middleware\XSSProtection::class,
],
....