What are some good PHP html (input) sanitizers?
Preferably, if something is built in - I'd like to us that.
UPDATE:
Per the request, via comments, input should not allow HTML (and obviously prevent XSS & SQL Injection, etc).
|
What are some good PHP html (input) sanitizers? Preferably, if something is built in - I'd like to us that. UPDATE: Per the request, via comments, input should not allow HTML (and obviously prevent XSS & SQL Injection, etc). | ||||
|
feedback
|
|
html purifier -> http://htmlpurifier.org/ | |||||||
feedback
|
|
I've always used PHP's addslashes() and stripslashes() functions, but I also just saw the built-in filter_var() function (link). Looks like there are quite a few built-in filters. | |||
feedback
|
|
If you want to run a query that use let's say
If you want to store a text in a database and then print it on a web page, consider use htmlentities [Edit]Or as awshepard said, you can use addslashes() and stripslashes() functions[/Edit] Here is a little example of sanitization when it comes to prevent XSS attacks:
| |||||||||
feedback
|
|
use
and functions are below, almost sanitize everthing u need
Remember : it will not sanitize multidimensional array, u need to modify it recursively. | |||
|
feedback
|
<script>? In the meantime, I'd say some basic suggested reading for anyone looking for similar info would be the section on Filtering Input in the book "Essential PHP Security" - books.google.ca/… – Richard JP Le Guen Apr 30 '10 at 14:24