Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

207
votes
16answers
109k views

A potentially dangerous Request.Form value was detected from the client

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 ...
35
votes
10answers
32k views

How do I perform HTML decoding/encoding using Python/Django?

I have a string that is html encoded: &lt;img class=&quot;size-medium wp-image-113&quot; style=&quot;margin-left: 15px;&quot; title=&quot;su1&quot; ...
22
votes
10answers
5k views

Will HTML Encoding prevent all kinds of XSS attacks?

I am not concerned about other kinds of attacks. Just want to know whether HTML Encode can prevent all kinds of XSS attacks. Is there some way to do an XSS attack even if HTML Encode is used?
19
votes
2answers
8k views

HTML Encoding Strings - Web Forms VS Razor View Engines

I'm not quite sure how this works yet... trying to find documentation. In my existing app I've got two different ways of rendering strings in my View <%: model.something %> <!-- or --> ...
18
votes
5answers
2k views

HTML encode user input when storing or when displaying

Simple question that keeps bugging me. Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode when displaying? ...
14
votes
3answers
12k views

ASP.NET MVC Html.Encode - New lines

Html.Encode seems to simply call HttpUtility.HtmlEncode to replace a few html specific characters with their escape sequences. However this doesn't provide any consideration for how new lines and ...
10
votes
3answers
3k views

How do I bypass the HTML encoding when using Html.ActionLink in Mvc?

Whenever I use Html.ActionLink it always Html encodes my display string. For instance I want my link to look like this: <a href="/posts/422/My-Post-Title-Here">More&hellip;</a> it ...
9
votes
2answers
2k views

mvc3 - How to disable htmlencode of symbols from source

I need to out on my page text from database table. Table field "Text" Contains text with html formatting tags like <p>, <br/> etc... (in table its not encoded!) When i'm trying to output ...
8
votes
1answer
2k views

Why is my custom HTML Helper result getting html encoded?

I've got the following custom html helper in asp.net mvc 3 public static string RegisterJS(this HtmlHelper helper, ScriptLibrary scriptLib) { return "<script ...
8
votes
5answers
7k views

HtmlSpecialChars equivalent in Javascript?

Apparently, this is harder to find than I thought it would be. And it even is so simple... Is there a function equivalent to PHP's htmlspecialchars built into Javascript? I know it's fairly easy to ...
8
votes
6answers
13k views

How to use HtmlEncode with TemplateFields, Data Binding, and a GridView

I have a GridView bound to an ObjectDataSource. I've got it supporting editing as well, which works just fine. However, I'd like to safely HtmlEncode text that is displayed as we do allow special ...
7
votes
3answers
761 views

How do I XML-encode a string in Erlang?

I have a erlang string which may contain characters like & " < and so on: 1> Unenc = "string & \"stuff\" <". ok Is there a Erlang function somewhere that parses the string and ...
6
votes
5answers
9k views

Is there a JDK class to do HTML encoding (but not URL encoding)?

I am of course familiar with the java.net.URLEncoder and java.net.URLDecoder classes. However, I only need HTML-style encoding. (I don't want ' ' replaced with '+', etc). I am not aware of any JDK ...
5
votes
2answers
791 views

HTML.Encode but preserve line breaks

I take user input into a text area, store it and eventually display it back to the user. In my View (Razor) I want to do something like this... @Message.Replace("\n", "</br>") This doesn't ...
4
votes
1answer
362 views

Encode/Decode a TextBox

I use Asp.Net 4, C# and MS SQL. For my website I use MS default solution for preventing Cross-Site Scripting. I'm also used to ENCODE all User's Inputs in my logic so that this data can be stored ...
4
votes
1answer
588 views

How to stop Spark View Engine HTML encoding?

Even with the following in spark section of web.config: <pages automaticEncoding="false"> Things between ${...} Still get passed through H(...), which HTML encodes it. How change this or ...
4
votes
6answers
6k views

HTML entity encoding (convert '<' to '&lt;') on iPhone in objective-c

I'm developing an application for the iPhone that has inApp-mail sending capabilities. So far so good, but now I want to avoid html-injections as some parts of the mail are user-generated texts. ...
4
votes
1answer
535 views

Xml Escaping/Encoding terminology

I'm confused as for the difference between the terms "escaping" and "encoding" in phrases like: Xml Encoding Xml Escaping Encoded Html Escaped Url ... Can anyone explain it to me?
3
votes
4answers
176 views

SQL Injection or Server.HTMLEncode or both? Classic ASP

People say to prevent SQL Injection, you can do one of the following (amongst other things): Prepare statements (parameterized) Stored procedures Escaping user input I have done item 1, preparing ...
3
votes
1answer
170 views

How to stop Server.HtmlEncode to encode UTF8 characters?

How can I stop Server.HtmlEncode to encode UTF8 characters? I set the codepage to UTF8 but didn't help Here is my test case: <%@CODEPAGE=65001%> <% Response.CodePage = 65001 ...
3
votes
1answer
2k views

How to HTML-encode in the JSP expression language?

Consider the following piece of JSP: <param name="FlashVars" value="${flashVars}" /> The value of ${flashVars} contains ampersands and needs to be encoded before it is output. Instead, JSP ...
3
votes
2answers
661 views

<%: %> brackets for HTML Encoding in ASP.NET 4.0

Accidentally I found this post about a new feature in ASP.NET 4.0: Expressions enclosed in these new brackets <%: Content %> should be rendered as HTML encoded. I've tried this within a ...
3
votes
2answers
198 views

Is there a built-in jQuery function for encoding a string as HTML?

Is there a built-in jQuery function for encoding a string as HTML? I'm trying to take the text a user types into a text box and then put that text into a different area of the page. My plan was to ...
3
votes
4answers
1k views

Do you HtmlEncode during input or output?

When do you call Microsoft.Security.Application.AntiXss.HtmlEncode? Do you do it when the user submits the information or do you do when you're displaying the information? How about for basic ...
2
votes
2answers
79 views

AllowHtml not working for ASP.Net Mvc 3 site

We're trying to use the [AllowHtml] decoration on one of our ViewModel properties so that we can avoid the YSOD: A potentially dangerous Request.Form value was detected from the client ...
2
votes
2answers
48 views

HtmlEncode on Post for ASP.Net MVC 3 Html.TextAreaFor

I have an ASP.Net MVC 3 page in which I have an Html.TextAreaFor control, see code below. If I try to submit the page to the http post action with text in angle brackets like: <test>, I get a ...
2
votes
1answer
153 views

MVC3 TextBoxFor with encoded text

Is there a way to use TextBoxFor helper with encoded text? for example: When using the following helper of MVC3 With Razor view engine : @Html.TextBoxFor(model => model.Description) and the ...
2
votes
5answers
148 views

How to encode embedded javascript in Razor view in ASP.NET MVC 3?

How do I properly encode JavaScript in the following context: <html> ... <script type="text/javascript"> var settings = @Html.PleaseEncode(settings.ToJson()); // ... </script> ...
2
votes
4answers
77 views

How to allow a user to enter html comments

Using MVC, EF 4.2. I am working on an application that has a comment section. Right now if a user enters a comment that contains HTML e.g. <b>text</b> and hits submit i get the message ...
2
votes
1answer
1k views

HTML Encoding for HtmlHelper Extension Method

First of all I'm using MVC 3 RC1 with the Razor view engine. I've got an HTML helper extension which looks like this: public static string TabbedMenuItem(this HtmlHelper htmlHelper, string text, ...
2
votes
1answer
219 views

Saving property with HTML - encode on entry, or on display?

I have a system which allows users to enter HTML-reserved characters into a text area, then post that to my application. That information is then saved to a database for later retrieval and display. ...
2
votes
1answer
100 views

ASP.NET MVC Url display problem

I have recently been experimenting with the profile features of ASP.NET. I am having trouble getting a "website" property to display correctly. For example, if the website I enter is: ...
2
votes
4answers
947 views

How do you handle line breaks in HTML Encoded MVC view?

I am unsure of the best way to handle this. In my index view I display a message that is contained in TempData["message"]. This allows me to display certain error or informational messages to the ...
2
votes
1answer
145 views

Content type vs HTML encoding

I'm bulding a site and I've set its content type to use charset UTF-8. I'm also using HTML encoding for the special characters, ie: instead of having á I've got &aacute;. Now I wonder (still ...
2
votes
6answers
476 views

installing fonts in client machine

I'm building a website(PHP) with chinese fonts. The problem is most browsers doesn't have chinese fonts installed by default. I want the client machine to have this font installed to view the webpage. ...
2
votes
2answers
189 views

Is it possible to turn on HTML encoding by default in ASP.NET 4?

In ASP.NET 4, we can use the new <%: ... %> operator to output HTML encoded strings. Is it possible to configure ASP.NET 4 (in web.config) so that the <%= ... %> operator will also HTML ...
2
votes
3answers
655 views

How can I encode a string for HTML?

Looking for a simple way to HTML encode a string/object in perl. the least amount of additional packages used the better.
2
votes
5answers
425 views

HTMLEncode script tags only

I'm working on StackQL.net, which is just a simple web site that allows you to run ad hoc tsql queries on the StackOverflow public dataset. It's ugly (I'm not a graphic designer), but it works. One ...
2
votes
4answers
2k views

Chinese characters in mailto subject line of email

I'm looking to add some Chinese characters in a mailto: email link. I've tried <a href="mailto:email@address.com?subject=调查 / Inquiry">Email</a> but when I click on the link the ...
2
votes
5answers
4k views

PHP - Storing Text in MySQL Database

I have a textbox on my website and I need to store whatever the user enters into my database, and retrieve it at a later time. I need to store it exactly as the user entered, including special ...
2
votes
2answers
5k views

How to HTML encode a string in JavaScript from a Firefox extension

So I know I can write my own HTML-encoding function like this: function getHTMLEncode(t) { return ...
2
votes
5answers
3k views

Cross Site Scripting and HTML Encoding

If I HTML encode any data entered by website users when I redisplay it, will this prevent CSS vulnerabilities? Also, is there a tool/product available that will sanitize my user input for me, so ...
1
vote
1answer
78 views

SED - HTML-encode between specific tags in XML file

I´m currently working on a short SED script that needs to HTML-encode parts of an XML-file. The script currently looks like this: sed.exe "/<messageData>/,/<\/messageData>/ ...
1
vote
1answer
181 views

How to prevent HtmlGenericControl from html-encoding content?

I'm writing an asp.net site (actually, a DotNetNuke module), using C#. From code-behind, I'm trying to create a <script> tag where I set a required js variable, then append it to the HMTL ...
1
vote
1answer
91 views

Html Encode in ASP.NET Web Control

I have a file called TopicTree.ascx.cs which I am trying to output encoded strings like so: string subject = reader.IsDBNull(0) ? string.Empty : reader.GetString(0); string ...
1
vote
1answer
36 views

Encoder.htmlEncoder in JS

On a website, I retrieve a string the user entered. DataItem.getProperty('-----some name ----') The problem is that some users put a <script></script> in there. How can I ...
1
vote
2answers
339 views

<%: %> Syntax for HTML Encoding in a repeater

Since .NET 4 its possible to use the <%: %> syntax for HTML Encoding of text. In a repeater I use the following syntax to display data <%# DataBinder.Eval(Container.DataItem, ...
1
vote
1answer
166 views

MVC.Net HTML Encoding, IE7 vs other browsers

When I have this in my view <a href="../Product/Category/<%= Html.Encode(item.Category) %>/Default.aspx?partial=False"> <%= Html.Encode(item.Category)%></a> It renders ...
1
vote
3answers
496 views

How and when to use Html encode

I've recently learned that i shouldn't store html encoded data in the database, but i should rather html encode the data that is shown on the screen for the user. No big deal, i have to fix my ...
1
vote
4answers
250 views

Normalizing Unicode data for indexing (for Multi-byte languages): What products do this? Does Lucene/Hadoop/Solr?

I have several (1 million+) documents, email messages, etc, that I need to index and search through. Each document potentally has a different encoding. What products (or configuration for the ...

1 2 3