sneek/laravel-xss-middleware

Simple Laravel XSS middlware to strip all tags and encode all entities from a user

Downloads

3560

Stars

2

Version

1.1.0

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,
        ],
    ....