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

I've been working on a system which doesn't allow HTML formatting. The method I currently use is to escape HTML entities before they get inserted into the database. I've been told that I should insert the raw text into the database, and escape HTML entities on output.

Other similar questions here I've seen look like for cases where HTML can still be used for formatting, so I'm asking for a case where HTML wouldn't be used at all.

share|improve this question

4 Answers

up vote 7 down vote accepted

you will also restrict yourself when performing the escaping before inserting into your db. let's say you decide to not use HTML as output, but JSON, plaintext, etc.

if you have stored escaped html in your db, you would first have to 'unescape' the value stored in the db, just to re-escape it again into a different format.

also see this perfect owasp article on xss prevention

share|improve this answer

Yes, because at some stage you'll want access to the original input entered. This is because...

  • You never know how you want to display it - in JSON, in HTML, as an SMS?
  • You may need to show it back to the user as is.

I do see your point about never wanting HTML entered. What are you using to strip HTML tags? If it a regex, then look out for confused users who might type something like this...

3<4 :->

They'll only get the 3 if it is a regex.

share|improve this answer
I'm using htmlentities() in PHP, which (for example) turns < into &lt; – rzhw Sep 6 '10 at 0:42
1  
+1! I agree. Add to that the case where you change how you're doing your escaping, or you decide later that you want to allow certain tags like <b>, <i>, <u> and <a>. Escaping the data on the way out is future-proof. – mattmc3 Sep 6 '10 at 0:44
@a2h I tagged your question accordingly. I would use htmlentities() to display in your HTML, if that is how you wanted it displayed. – alex Sep 6 '10 at 0:46
1  
@alex: i'd use htmlspecialchars(), htmlentities() replaces any character as soon as there's an html entity for it (umlauts, utf-8 chars, …). htmlspecialchars only replaces those chars necessary for injection (<>&") – knittl Sep 6 '10 at 0:53
@knittl Yeah, I'd use htmlspecialchars() too. I added the if that is how you wanted it displayed because he may want to have everything encoded to its entity. – alex Sep 6 '10 at 0:55
show 1 more comment

I usually store both versions of the text. The escaped/formatted text is used when a normal page request is made to avoid the overhead of escaping/formatting every time. The original/raw text is used when a user needs to edit an existing entry, and the escaping/formatting only occurs when the text is created or changed. This strategy works great unless you have tight storage space constraints, since you will be duplicating data.

share|improve this answer
  1. Another elusive issue: Suppose you are entering a record with the string R&B in it's title. It will be stored as R&amp;B. And assume we have a search function which uses the SQL:

    $query = $database->prepare('SELECT * FROM table WHERE title LIKE ?');
    $query->execute(array($searchString.'%'));    
    

    Now if someone searches R&B, it won't match this row, as it is stored as R&amp;B. The situation is the same for equality, sorting etc.

    Of course, here we have the issue of not searching HTML tags, as <span>'s will be matching when someone searches for span. This could be solved by delegating the search functionality to some external service like Solr, or by storing a version in a second field which is cleared of HTML tags, special characters and such (for full text search) similar to what @limscoder suggested.

  2. One day you may be exposing your data via an API or something, and your API users may assume it un-escaped.

  3. A few months later, a new team member joins. As a well trained developer, he always uses html escaping, now only to see everything is double-escaped (e.g. there are titles showing up like He said &quot;nuff&quot; instead of He said "nuff").

  4. Quote style of htmlspecialchars() (e.g. ENT_QUOTES, ENT_COMPAT etc) is going to bite you, if you are using anything other than the default one and forget to use the same quoting style in both storing/outputting.

    A similar issue happens when you use htmlentities() to store, and htmlspecialchars() to output, or vice versa (with corresponding counter-functions). Your HTML will be polluted with &Uuml;s, &Ccedil;s etc.

    These are more prone to be abused if there are multiple developers working on the same codebase.

share|improve this answer

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.