2017 © Pedro Peláez
 

library xss

Xss Sanitizer for Laravel

image

owlgrin/xss

Xss Sanitizer for Laravel

  • Tuesday, November 1, 2016
  • by owlgrin
  • Repository
  • 3 Watchers
  • 6 Stars
  • 9,044 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 3 Open issues
  • 3 Versions
  • 7 % Grown

The README.md

Laravel Xss

This package is the custom port of Codeigniter's Xss class., (*1)

Installation

Require the package in composer.json:, (*2)

"owlgrin/xss": "0.1.*"

Then, include the following in the array on service providers in config/app.php:, (*3)

'Owlgrin\Xss\XssServiceProvider',

And, if you want to use it as facade, bind the facade in facade's array in config/app.php:, (*4)

'Xss'            => 'Owlgrin\Xss\XssFacade',

Usage

You can clean your input HTML code from Xss attacks using the clean() method:, (*5)

<?php

$input = Input::get('html');

$cleanedHtml = Xss::clean($input);

If you want to conserve some custom tags that the stripper strips, you can pass them in array as second argument:, (*6)

<?php

$input = Input::get('html');

$cleanedHtml = Xss::clean($input, ['iframe']);

The Versions

01/11 2016

dev-master

9999999-dev

Xss Sanitizer for Laravel

  Sources   Download

MIT

The Requires

 

by Mohit Mamoria

01/11 2016

0.1.1

0.1.1.0

Xss Sanitizer for Laravel

  Sources   Download

MIT

The Requires

 

by Mohit Mamoria

13/11 2014

v0.1.0

0.1.0.0

Xss Sanitizer for Laravel

  Sources   Download

MIT

The Requires

 

by Mohit Mamoria