Everytime a user posts something containing < or > in a page in my webapp, I get this exception thrown.

I don't want to go into the discussion about the smartness of throwing an exception or crashing an entire webapp because somebody entered a character in a textbox, but I am looking for an elegant way to handle this.

Trapping the exception and showing "An error has occured please go back and re-type your entire form again, but this time please do not use <" doesn't seem professional enough to me

Disabling post validation ( validateRequest="false" ) will definitelly avoid this error, but it will leave the page vulnerable to a number of attacks.

Ideally: when a postback occurs containing HTML restricted caracters, that posted value in the Form collection will be automatically HTML encoded. So the .Text property of my text-box will be " something & lt; html & gt; "

Any way I can do this from a handler?

link|improve this question

8  
Note that you can get this error if you have HTML entity names (&amp;) or entity numbers (&#39;) in your input too. – Drew Noakes Oct 14 '10 at 2:50
check here – gofor.net Mar 28 at 15:40
feedback

19 Answers

up vote 233 down vote accepted

I think you are attacking it from the wrong angle by trying to encode all posted data.

Note that a "<" could also come from other outside sources, like a database field, a configuration, a file, a feed and so on.

Furthermore, "<" is not inherently dangerous, its only dangerous in a specific context: when writing unencoded strings to HTML output (because of XSS). In other contexts different substrings are dangerous, e.g. if you write an user-provided URL into a link, the substring "javascript:" may be dangerous. The single quote character on the other hand is dangerous when interpolating strings in SQL queries, but perfectly safe if it is a part of a name submitted from a form or read from a database field.

The bottom line is: you can't filter random input for dangerous characters, because any charater may be dangerous under the right circumstances. You should encode at the point where some specific characters may become dangerous because they cross into a different sublanguage where they have special meaning. When you write a string to HTML, you should encode characters that have special meaning in HTML, using Server.HtmlEncode. If you pass a string to a dyamic SQL statement, you should encode different characters (or better, let the framework do it for you by using prepared statements or the like).

When you are sure you HTML-encode everywhere you pass strings to HTML, then set validateRequest="false".

Edit: See comments for up-to-date info regarding .Net 4.0 and Asp.Net MVC

link|improve this answer
9  
excellent answer ! – Joel Spolsky May 23 '09 at 1:25
110  
In .NET 4 you may need to do a little more. Sometimes it's necessary to also add <httpRuntime requestValidationMode="2.0" /> to web.config. See asp.net/(S(ywiyuluxr3qb2dfva1z5lgeg))/learn/whitepapers/aspnet4/… – Ian Mercer Mar 19 '10 at 19:57
6  
To those coming in late: validateRequest="false" goes in the Page directive (first line of your .aspx file) – MGOwen Oct 20 '10 at 5:28
15  
Tip: Put <httpRuntime requestValidationMode="2.0" /> in a location tag to avoid killing the useful protection provided by validation from the rest of your site. – Brian May 17 '11 at 14:05
38  
In MVC3, this is [AllowHtml] on the model property. – Jeremy Holovacs Sep 9 '11 at 19:30
show 3 more comments
feedback

There's a different solution to this error if you're using ASP.NET MVC:

Visual Basic sample:

<AcceptVerbs(HttpVerbs.Post), ValidateInput(False)> _
Function Edit(ByVal collection As FormCollection) As ActionResult
    ...
End Function

C# sample:

[HttpPost, ValidateInput(false)]
public ActionResult Edit(FormCollection collection)
{
    // ...
}
link|improve this answer
8  
the solution for ASP.NET MVC is just what i needed, thanks! – Lucas Apr 8 '10 at 19:39
the problem may be come when it's need on one page of whole application – Steven Spielberg Dec 18 '10 at 6:03
1  
You can also add the [ValidateInput(false)] attribute at the class level. If you add it to your base controller class, it will apply to all controller method actions. – Shan Plourde May 29 '11 at 13:12
The best answer chosen is not always the right answer for everybody. +1 – dpp Nov 18 '11 at 5:06
feedback

If you are on .net 4.0 make sure you add this in your web.config

<httpRuntime requestValidationMode="2.0" />

Inside the <system.web> tags

link|improve this answer
15  
Inside the <system.web> tags. – Hosam Aly Nov 4 '10 at 11:26
2  
I've put this in the web.config, but still to the error "A potentially dangerous Request.Form value " – Filip Dec 12 '10 at 15:40
7  
Looks like <httpRuntime requestValidationMode="2.0" /> works only when 2.0 framework is installed on the machine. What if 2.0 framework is not installed at all but only 4.0 framework is installed? – Samuel Jul 20 '11 at 18:18
feedback

in mvc 3 add AllowHtmlAttrribute to your model property

e.g.

/// <summary>
///   <para>Description</para>
/// </summary>
[AllowHtml]
public string Description { get; set; }

http://msdn.microsoft.com/en-us/library/system.web.mvc.allowhtmlattribute(v=vs.98).aspx

link|improve this answer
Perfect! Thanks for this Anthony! – Chris Holmes Dec 15 '11 at 17:15
Much better to do this declarativly than in the controller! – Andiih Mar 9 at 9:03
feedback

You can HtmlEncode text box content but unfortunately that won't stop the exception from happening. In my experience there is no way around and you have to disable page validation. By doing that you're saying: "I'll be careful, I promise."

link|improve this answer
feedback

The answers above are great, but nobody said how to exclude a single field from being validated for html/js injections. I don't know about previous versions but in MVC3 Beta you can do this:

[HttpPost, ValidateInput(true, Exclude = "YourFieldName")]
public virtual ActionResult Edit(int id, FormCollection collection)
{
    ...
}

This still validates all the fields except for the excluded one. The nice thing about this is that your validation attributes still validate the field, you just don't get the "A potentially dangerous Request.Form value was detected from the client" exceptions.

I've used this for validating a RegularExpression. I've made my own ValidationAttribute to see if the regex is valid or not. As regexes can contain something that looks like a script I applied the above code - the regex is still being checked if it's valid or not, but not if it contains scripts or html.

link|improve this answer
3  
Sadly it looks like the Exclude feature was removed from MVC 3 RTW :( – Matt Greer Mar 23 '11 at 16:18
feedback

In ASP.Net MVC you need to set requestValidationMode="2.0" and validateRequest="false" in web.config, and apply a ValidateInput attribute to your Controller action:

<httpRuntime requestValidationMode="2.0"/>

<configuration>
    <system.web>
        <pages validateRequest="false" />
    </system.web>
</configuration>

and

[Post, ValidateInput(false)]
public ActionResult Edit(string message) {
    ...
}
link|improve this answer
feedback

You can catch that error in Global.asax. I still want to validate, but show an appropriate message. On the blog listed below, a sample like this was available.

    void Application_Error(object sender, EventArgs e)
    {
        Exception ex = Server.GetLastError();

        if (ex is HttpRequestValidationException)
        {
            Response.Clear();
            Response.StatusCode = 200;
            Response.Write(@"[html]");
            Response.End();
        }
    }

Redirecting to another page also seems like a reasonable response to the exception.

http://www.romsteady.net/blog/2007/06/how-to-catch-httprequestvalidationexcep.html

link|improve this answer
feedback

Please bear in mind that some .NET controls will automatically HTML encode the output. For instance setting the .Text property on a TextBox control will automatically encode it, that specifically means converting < into &lt;, > into &gt; and & into &amp;. So be wary of doing this...

myTextBox.Text = Server.HtmlEncode(myStringFromDatabase); // Pseudo code

However, the .Text property for HyperLink, Literal and Label won't HTML Encode things so wrapping Server.HtmlEncode(); around anything being set on these properties is a must if you want to prevent <script> window.location = "http://www.porn.com"; </script> from being output into your page and subsequently executed.

Do a little experimenting to see what gets Encoded and what doesn't.

link|improve this answer
feedback

I guess you could do it in a module; but that leaves open some questions; what if you want to save the input to a database? Suddenly because you're saving encoded data to the database you end up trusting input from it which is probably a bad idea, ideally you store raw unencoded data in the database and the encode every time.

Disabling the protection on a per page level and then encoding each time is a better option.

Rather than using Server.HtmlEncode you should look at the newer, more complete Anti-XSS library from the Microsoft ACE team.

link|improve this answer
feedback

In the web.config file, within the tags, insert the httpRuntime element with the attribute requestValidationMode="2.0". Also add the validateRequest="false" attribute in the pages element.

Example:

<configuration>
  <system.web>
   <httpRuntime requestValidationMode="2.0" />
  </system.web>
  <pages validateRequest="false">
  </pages>
</configuration>
link|improve this answer
feedback

Disable the page validation if you really need the special characters like > and < etc. Then ensure that when the user input is displayed, the data is HTML encoded.

There is a security vuln with the page validation, so it can be bypassed. Also the page validation shouldn't be solely relied on.

See: http://www.procheckup.com/PDFs/bypassing-dot-NET-ValidateRequest.pdf

link|improve this answer
feedback

If you don´t want to disable ValidateRequest you need to implement a javascript function in order to avoid the exception, is not the best option, but it´s works.

function AlphanumericValidation(evt)
{
    var charCode = (evt.charCode) ? evt.charCode : ((evt.keyCode) ? evt.keyCode :
        ((evt.which) ? evt.which : 0));         
    //User type Enter key
    if (charCode == 13)
    {

        //Do something, set controls focus or do anything
        return false;
    }
    //User can not type non alphanumeric chacacters
    if ((charCode < 48) || (charCode > 122) ||  ((charCode > 57) && (charCode <  65)) ||  ((charCode > 90) && (charCode < 97))   )
    {
        //Show message or do something
            return false;
    }  
}

then in code behind, on PageLoad event, add the atribute to your control with the next code:

Me.TextBox1.Attributes.Add("OnKeyPress", "return AlphanumericValidation(event);")
link|improve this answer
1  
This will still leave the app vulnerable from made-up POST requests. A regular user will have problems entering characters like , : or quotes, but a regular hacker will have no problems POSTing malformed data to the server. I'd vode this waaay down. – Radu094 Oct 26 '09 at 22:21
3  
@Radu094: This solution allows you to keep ValidateRequest=true, which means hackers will still hit that wall. Vote UP, since this leaves you less vulnerable than turning ValidateRequest off. – jbehren Aug 17 '11 at 19:10
feedback

You should use the Server.HtmlEncode method to protect your site from dangerous input.

More info here

link|improve this answer
Use the Anti-XSS Library to prevent this error... this is incomplete. – makerofthings7 Oct 21 '11 at 22:51
feedback

As long as these are only "<" and ">" (and not the double quote itself) characters and you're using them in context like <input value="this" />, you're safe (while for <textarea>this one</textarea> you would be vulnerable of course). That may simplify your situation, but for anything more use one of other posted solutions.

link|improve this answer
feedback

If you're just looking to tell your users that < and > are not to be used BUT, you don't want the entire form processed/posted back (and lose all the input) before-hand could you not simply put in a validator around the field to screen for those (and maybe other potentially dangerous) characters?

link|improve this answer
feedback

You could also escape the use JavaScript's escape(string) function to replace the special characters. Then server side use Server.URLDecode(string) to switch it back.

This way you don't have to turn off input validation and it will be more clear to other programmers that the string may have HTML content.

link|improve this answer
feedback

The other solutions here are nice, however it's a bit of a royal pain in the rear to have to apply [AllowHtml] to every single Model property especially if you have over 100 models on a decent sized site.

If like me, you want to turn this (imho pretty pointless) feature off site wide you can override the Execute() method in your base controller (if you don't already have a base controller I suggest you make one, they can be pretty useful for applying common functionality).

    protected override void Execute(RequestContext requestContext)
    {
        // Disable requestion validation (security) across the whole site
        ValidateRequest = false;
        base.Execute(requestContext);
    }

Just make sure that you are html encoding everything that is pumped out to the views that came from user input (it's default behaviour in MVC3 with Razor anyway so unless for some bizzare reason you are using Html.Raw() you shouldn't require this feature.

link|improve this answer
feedback

Seems no one has mentioned the below yet but it fixes the issue for me. And before anyone says it yeah its VB... yuck. But I wanted a better job and now I have one ;)

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Example.aspx.vb" Inherits="Example.Example" **ValidateRequest="false"** %>

I dunno if theres any downsides but for me this worked amazing :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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