Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/n0nag0n/fatfree-xss-filter
- Owner: n0nag0n
- License: mit
- Created: 2020-08-17T21:41:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T17:20:37.000Z (about 2 years ago)
- Last Synced: 2024-09-24T16:47:49.670Z (4 months ago)
- Topics: extension, fat-free-framework, fatfree, plugin, xss-filter
- Language: PHP
- Homepage:
- Size: 7.81 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.