Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/n0nag0n/fatfree-xss-filter

XSS Filter to properly clean your request data from XSS related attacks.
https://github.com/n0nag0n/fatfree-xss-filter

extension fat-free-framework fatfree plugin xss-filter

Last synced: 2 months ago
JSON representation

XSS Filter to properly clean your request data from XSS related attacks.

Awesome Lists containing this project

README

        

# fatfree-xss-filter
XSS Filter to properly clean your request data from XSS related attacks.

# Install
Use composer to get this guy up and running
```
composer require n0nag0n/fatfree-xss-filter
```

# Usage
Pretty simple to use really
```php
run();

// Additionally, filter whatever you'd like in controllers and such.
// $input_from_form = Xss_Filter::filterScalar($input_from_form_raw);
```

# Thanks
Originally created by @dabcorp and put on github with permission.