VB Replace problem with HTML ascii codes - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:32:18Zhttp://stackoverflow.com/feeds/question/709694http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes0VB Replace problem with HTML ascii codesZan2009-04-02T13:25:41Z2009-04-02T15:02:29Z
<p>So I ran into a problem. Wrote the following code snippet:</p>
<pre><code>teksti = teksti.Trim()
teksti = Replace(teksti, "<", "& lt;")
teksti = Replace(teksti, ">", "& gt;")
teksti = Replace(teksti, """", "& quot;")
teksti = Replace(teksti, "'", "& #8217;")
teksti = Replace(teksti, "%", "& #37;")
teksti = Replace(teksti, "&", "& amp;")
teksti = Replace(teksti, "#", "& #35;")
teksti = Replace(teksti, "@", "& #64;")
</code></pre>
<p>After writing this I realized it becomes its own problem. The function is supposed to make information safe for HTML and SQL injection (there are other methods too, parameterized queries, etc but that's beside the point). However what happens, is that it first replaces <code>&lt;</code> with <code>& lt;</code> and then proceeds to replace the newly written string again as every replace string has &, # and ; signs in it.</p>
<p>Any hints? I thought about using a regex for this, but I couldn't find any decent Visual Basic examples that were simple enough.</p>
<p><b>Edit:</b> Thanks for the tips. I was sure there would be a "smart" easy way to do this, but I guess there are no common methods available after all. The re-arranging the problem cases first is the obvious solution here, thanks for that. I guess the work day was too long for me to notice. :D</p>
<p>As for parametirized queries, checking back I see my English doesn't come out as intended. I meant to say that I'm already using them, that this problem here is specific to prevent all manner of html-injection and possible sql-injection using the same strings elsewhere later. Thanks again for the help.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/709715#7097156Answer by Joel Coehoorn for VB Replace problem with HTML ascii codesJoel Coehoorn2009-04-02T13:28:59Z2009-04-02T13:38:36Z<p>If this is .NET, you might look at <a href="http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.htmlencode.aspx" rel="nofollow"><code>System.Web.HttpServerUtility.HtmlEncode</code></a> instead.</p>
<p>If you're using VBScript/VB6 just move the ampersand and pound sign up to the top of this list, and don't rely on this function to protect you against sql injection. You still need parameterized queries.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/709728#7097283Answer by lc for VB Replace problem with HTML ascii codeslc2009-04-02T13:32:16Z2009-04-02T13:38:03Z<p>If you're using VB.NET, You're looking for <a href="http://msdn.microsoft.com/en-us/library/73z22y6h.aspx" rel="nofollow">System.Web.HttpUtility.HtmlEncode(string)</a>.</p>
<p>Otherwise, I would loop through the string one character at a time and build up a new encoded string, replacing as you go. That way, you only need one pass through the string and a case statement for each character, and you're not going to re-encode an encoded character.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/709736#7097362Answer by JeeBee for VB Replace problem with HTML ascii codesJeeBee2009-04-02T13:34:16Z2009-04-02T13:34:16Z<p>You could reorder to put the problem cases first.
Or you could iterate through the string and build a new string by analysing each character in turn and either appending it or it's desired replacement.
Otherwise you could use an off the shelf library/function for this, although I'm not versed in this language so couldn't name one.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/709745#7097451Answer by Jamie for VB Replace problem with HTML ascii codesJamie2009-04-02T13:36:49Z2009-04-02T13:39:26Z<p>Reorder as other people suggested. If you find two cases which conflict with each other and cannot be resolved through reordering, add an additional replacement like this:</p>
<pre><code>teksti = teksti.Trim()
teksti = Replace(teksti, "&", "THISISANAMP")
teksti = Replace(teksti, ";", "& #59;")
teksti = Replace(teksti, "#", "& #35;")
teksti = Replace(teksti, "THISISANAMP", "&amp;") ''newly added
teksti = Replace(teksti, "<", "& lt;")
teksti = Replace(teksti, ">", "& gt;")
teksti = Replace(teksti, """", "& quot;")
teksti = Replace(teksti, "'", "& #8217;")
teksti = Replace(teksti, "%", "& #37;")
teksti = Replace(teksti, "@", "& #64;")
</code></pre>
<p>This is the simplest way to alter your code.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/709752#7097522Answer by Guffa for VB Replace problem with HTML ascii codesGuffa2009-04-02T13:37:34Z2009-04-02T13:37:34Z<p>Replace the & character first, then the # character. After that the others can safely be replaced.</p>
<p>However, this is <strong>not</strong> a good method to protect against SQL injection. That should preferrably be done using parameterised queries. There are characters in your code that doesn't need encoding for HTML, if you are encoding them to protect against SQL injections, you are on a dangerous path. It will make SQL injections harder to accomplish, but it's not a safe method.</p>
<p>Also, if you are encoding the text before you put it in the database, you may get problems with it later. It's better to store the text unchanged in the database and take care of the HTML encoding when you display the text.</p>
http://stackoverflow.com/questions/709694/vb-replace-problem-with-html-ascii-codes/710085#7100851Answer by dcadenas for VB Replace problem with HTML ascii codesdcadenas2009-04-02T15:02:29Z2009-04-02T15:02:29Z<p>Like mentioned in previous posts, reordering your "replaces" should provide a quick fix to your specific issue and it is highly advisable for you to look into parameterized queries as well.</p>
<p>Another suggestion is for you to look into the built-in .net libraries for encoding, specifically the <strong>Microsoft.Security.Application.AntiXss</strong> library which I find it to be better than System.Web.HttpUtility.HtmlEncode because it uses a "whitelist" approach rather than a "blacklist" approach. </p>
<p>You can find more info about it here:</p>
<p><a href="http://blogs.msdn.com/cisg/archive/2008/08/26/what-is-microsoft-antixss.aspx" rel="nofollow">http://blogs.msdn.com/cisg/archive/2008/08/26/what-is-microsoft-antixss.aspx</a></p>
<p>Hope this helps.</p>
<p>D.</p>