How to do Php Security check for input user fields and input user treatment(please if you can solve example1+2)?

Example1: check if user insert url or something else:

<label>url: </label>
<input type="text">

Example2: check if user insert html or something else

<label>paste html: </label>
<textarea></textarea>

thanks

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

1. For the validation of URLs :

$validUrl = strpos($url, "http://") === 0;
if(!$validUrl) $url = "http://".$url;

When the link is return to the user, use htmlentities().

2. For the validation of HTML code, use a lib like http://htmlpurifier.org/.

<?php
require_once 'htmlpurifier/HTMLPurifier.auto.php';

$purifier = new HTMLPurifier();
$clean_html = $purifier->purify($_GET['dirty_html']);
echo $clean_html;
?>

With the input :

<img src="test.gif" onload="alert('xss')"/>

The result is :

<img src="test.gif" alt="test.gif" />
link|improve this answer
Thanks,does simple dom have filtering like html purifier? – Yosef Jul 4 '10 at 1:40
what about if user insert www.yahoo.com or yahoo.com your code not work – Yosef Jul 4 '10 at 2:04
For the URLs, you should force "http://" otherwise links like "jAvAsCrIpT://%0Aalert('xss')" can be passed – h3xStream Jul 4 '10 at 2:20
Filtering HTML goes beyond matching certain tags. Many HTML tags support js events that can be malicious. Support HTML as input only if necessary. – h3xStream Jul 4 '10 at 2:26
feedback

For string filtering/validating we use RegExp and for html filtering/validating we use DOM extension

link|improve this answer
You should provide a regex (it's easy to make a broken one) / Do you have any code sample of validation using the DOM api? This seems ambitious. – h3xStream Jul 5 '10 at 0:22
feedback

USE regex to validate your input

see

http://www.webcheatsheet.com/php/regular_expressions.php

http://articles.sitepoint.com/article/regular-expressions-php

http://www.roscripts.com/PHP_regular_expressions_examples-136.html

http://regular-expressions.info

link|improve this answer
Not only should nobody ever, under any circumstances attempt to validate or parse html/xml using regular expressions, I can't believe you missed regular-expressions.info – Kris Jul 4 '10 at 1:27
@kris, included thanks – Starx Jul 4 '10 at 7:46
@Kris - OK... why not? – Jack Webb-Heller Jul 4 '10 at 7:51
@Jack, because it is very widely regarded a very bad idea. xml/html is not just text and parsing xml/html with regex is slow and unless you are a rockstar regex expert, your regex is going to suck. For simpler text though, regex is the shizzle – Kris Jul 4 '10 at 21:33
@Jack : recursive encapsulation, ton of tags, ton of attributes ... and the code need to be maintainable. – h3xStream Jul 5 '10 at 0:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.