sneek/laravel-xss-middleware

Simple Laravel XSS middlware to strip all tags and encode all entities from a user
3,582 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,
        ],
    ....

Related Packages

benconstable/laravel-localize-middleware

Configurable localization middleware for your Laravel >=5.1 application

31,398 90
barryvdh/laravel-stack-middleware

Stack Middleware for Laravel 5

424,433 41
stevenmaguire/laravel-middleware-csp

Provides support for enforcing Content Security Policy with headers in Laravel r...

107,724 39
spatie/laravel-authorize

A middleware to check authorization

26,586 201