Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a library or acceptable method for sanitizing the input to an html page?

In this case I have a form with just a name, phone number, and email address.

Code must be C#.

For example:

"<script src='bobs.js'>John Doe</script>" should become "John Doe"
share|improve this question
1  
You will need to explain what you meant by sanitizing! – azamsharp Oct 9 '08 at 19:44

5 Answers

up vote 23 down vote accepted

You could use the StackOverflow santization method from here.

share|improve this answer
2  
That allows way too much in. – Chris Lively Oct 9 '08 at 19:57
1  
The approach takes a whitelist approach, so just use the same code but don't include any tags in your whitelist. It will strip everything out. – Bryant Oct 9 '08 at 20:11
HtmlUtilities.Sanitize(html) from code.google.com/p/stack-exchange-data-explorer/source/browse/… would do the work also. – Artem Latyshev Nov 29 '12 at 9:02
3  
The page linked is not available. – Devon Dec 18 '12 at 18:17

If by sanitize you mean REMOVE the tags entirely, the RegEx example referenced by Bryant is the type of solution you want.

If you just want to ensure that the code DOESN'T mess with your design and render to the user. You can use the HttpUtility.HtmlEncode method to prevent against that!

share|improve this answer
1  
Is there a reason to do that instead of the simpler regex by Jakub? – Chris Lively Oct 9 '08 at 21:10
The regex solution will remove the code, it works....but takes time. HtmlEncode, just formats it in a safe manner for web display. – Mitchel Sellers Oct 9 '08 at 21:18

Based on the comment you made to this answer, you might find some useful info in this question:
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site

Here's a parameterized query example. Instead of this:

string sql = "UPDATE UserRecord SET FirstName='" + txtFirstName.Text + "' WHERE UserID=" + UserID;

Do this:

SqlCommand cmd = new SqlCommand("UPDATE UserRecord SET FirstName= @FirstName WHERE UserID= @UserID");
cmd.Parameters.Add("@FirstName", SqlDbType.VarChar, 50).Value = txtFirstName.Text;
cmd.Parameters.Add("@UserID", SqlDbType.Integer).Value = UserID;


Edit: Since there was no injection, I removed the portion of the answer dealing with that. I left the basic parameterized query example, since that may still be useful to anyone else reading the question.
--Joel

share|improve this answer
Actually, no. I was just trying to be proactive with some new development. Great info though. – Chris Lively Oct 9 '08 at 20:07
Make sure you've seen the latest edit: I added a very useful link at the bottom. – Joel Coehoorn Oct 9 '08 at 20:12
1  
BTW, I'm already using s'procs anyway. I just want to make sure that systems downstream (which I have absolutely no control over) don't incorrectly deal with the input. – Chris Lively Oct 9 '08 at 21:09

What about using Microsoft Anti-Cross Site Scripting Library?

share|improve this answer
Interesting. When I have time I'll play with it. Looks promising though. – Chris Lively Nov 10 '09 at 23:48
1  
The link above references v3.1 of the Anti-Cross Site Scripting Library. Version 4.0 is the most current release. – CBono Oct 10 '11 at 13:39
the above link is outdated as well, edited the answer to include the correct link to the MSACSS Library – adam May 23 '12 at 17:42
2  
Too bad version 4.2 is horribly broken, with no source code ATM... – Tieson T. Jun 19 '12 at 9:55

You are looking for RegEx class and for pattern like this <(.|\n)*?>.

You can find a lot of examles on google.

share|improve this answer
8  
Using RegEx for this is not very wise, this will give you a false sense of security since there are always corner cases that gives a hacker a way to still inject script tags or other things into your fields. RegEx is not made to sanitize input... – Bryan Rehbein Jun 3 '10 at 15:14
7  
It's interesting that the top voted answer to this question uses RegEx. – tomwadley Sep 2 '11 at 13:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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