├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── xss-protection.php └── src ├── Cleaners └── BladeEchoes.php ├── Events └── MaliciousInputFound.php ├── Middleware └── XssCleanInput.php └── ServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/composer.json -------------------------------------------------------------------------------- /config/xss-protection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/config/xss-protection.php -------------------------------------------------------------------------------- /src/Cleaners/BladeEchoes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/src/Cleaners/BladeEchoes.php -------------------------------------------------------------------------------- /src/Events/MaliciousInputFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/src/Events/MaliciousInputFound.php -------------------------------------------------------------------------------- /src/Middleware/XssCleanInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/src/Middleware/XssCleanInput.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-xss-protection/HEAD/src/ServiceProvider.php --------------------------------------------------------------------------------