active questions tagged escaping - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T19:07:33Zhttp://stackoverflow.com/feeds/tag/escapinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915155/xsl-transformation-and-special-xml-entities-escaping1XSL transformation and special XML entities escapingtori38522009-12-16T14:56:12Z2009-12-16T15:43:24Z
<p>Hi,
I have an XML file which is transformed with XSL. Some elements have to be changed, some have to be left as is - specifically, text with entities <strong>&quot;</strong>, <strong>&amp;</strong>, <strong>&apos;</strong>, <strong>&lt;</strong>, <strong>&gt;</strong> should be left as is, and in my case <strong>&quot;</strong> and <strong>&apos;</strong> are changed to <strong>"</strong> and <strong>'</strong> accordingly.</p>
<p>Test XML:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
<root>
<element>
&quot;
&amp;
&apos;
&lt;
&gt;
</element>
</root>
</code></pre>
<p>transformation file:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="no" indent="no" />
<xsl:template match="element">
<xsl:copy>
<xsl:value-of disable-output-escaping="no" select="." />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>result:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<element>
"
&amp;
'
&lt;
&gt;
</element>
</code></pre>
<p>desired result:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<element>
&quot;
&amp;
&apos;
&lt;
&gt;
</element>
</code></pre>
<p>I have 2 questions:</p>
<ul>
<li>why does some of those entities are transformed and other not?</li>
<li>how can I get a desired result?</li>
</ul>
<p>Thank you.</p>
http://stackoverflow.com/questions/1912501/unescape-html-entities-in-javascript2Unescape HTML entities in Javascript?Joseph Turian2009-12-16T05:27:21Z2009-12-16T05:51:45Z
<p>I have some Javascript code that communicates with an XML-RPC backend.
The XML-RPC returns strings of the form:</p>
<pre><code><img src='myimage.jpg'>
</code></pre>
<p>However, when I use the Javascript to insert the strings into HTML, they render literally. I don't see an image, I literally see the string:</p>
<pre><code><img src='myimage.jpg'>
</code></pre>
<p>My guess is that the HTML is being escaped over the XML-RPC channel.</p>
<p>How can I unescape the string in Javascript? I tried the techniques on this page, unsuccessfully: <a href="http://paulschreiber.com/blog/2008/09/20/javascript-how-to-unescape-html-entities/" rel="nofollow">http://paulschreiber.com/blog/2008/09/20/javascript-how-to-unescape-html-entities/</a></p>
<p>What are other ways to diagnose the issue?</p>
http://stackoverflow.com/questions/1911022/what-are-all-the-html-escaping-contexts2What are all the HTML escaping contexts?dirtside2009-12-15T22:51:24Z2009-12-16T00:43:47Z
<p>When outputting HTML, there are several different places where text can be interpreted as control characters rather than as text literals. For example, in "regular" text (that is, outside any element markup):</p>
<pre><code><div>This is regular text</div>
</code></pre>
<p>As well as within the values of attributes:</p>
<pre><code><input value="this is value text">
</code></pre>
<p>And, I believe, within HTML comments:</p>
<pre><code><!-- This text here might be programmatically generated
and could, in theory, contain the double-hyphen character
sequence, which is verboten inside comments -->
</code></pre>
<p>Each of these three kinds of text has <strong>different</strong> rules for how it must be escaped in order to be treated as non-markup. So my first question is, are there any other contexts in HTML in which characters can be interpreted as markup/control characters? The above contexts clearly have different rules about what needs to be escaped.</p>
<p>The second question is, what are the canonical, globally-safe lists of characters (for each context) that need to be escaped to ensure that any embedded text is treated as non-markup? For example, in theory you only need to escape ' and " in attribute values, since <em>within an attribute value</em> only the closing-delimiter character (' or " depending on which delimiter the attribute value started with) would have control meaning. Similarly, within "regular" text only < and & have control meaning. (I realize that not all HTML parsers are identical. I'm mostly interested in what is the minimum set of characters that need escaping in order to appease a spec-conforming parser.)</p>
<p>Tangentially: The following text will throw errors as HTML 4.01 Strict:</p>
<pre><code><a href="http://example.com/file.php?x=1&y=2">foo</a>
</code></pre>
<p>Specifically, it says that it doesn't know what the entity "&y" is supposed to be. If you put a space after the &, however, it validates just fine. But if you're generating this on the fly, you're probably not going to want to check whether each use of & will cause a validation error, and instead just escape all & inside attribute values.</p>
http://stackoverflow.com/questions/1905854/what-strategies-are-there-for-escaping-character-entities2What strategies are there for escaping character entities?peter.murray.rust2009-12-15T07:59:42Z2009-12-15T12:30:06Z
<p>We are doing Natural Language Processing on a range of English language documents (mainly scientific) and run into problems in carrying non-ANSI characters through the various components. The documents may be "ASCII", UNICODE, PDF, or HTML. We cannot predict at this stage what tools will be in our chain or whether they will allow character encodings other than ANSI. Even ISO-Latin characters expressed in UNICODE will give problems (e.g. displaying incorrectly in browsers). We are likely to encounter a range of symbols including mathematical and Greek. We would like to "flatten" these into a text string which will survive multistep processing (including XML and regex tools) and then possibly reconstitute it in the last step (although it is the semantics rather than the typography we are concerned with so this is a minor concern).</p>
<p>I appreciate that there is no absolute answer - any escaping can clash in some cases - but I am looking for something allong the lines of XML's <code><![CDATA[ ...]]></code> which will survive most non-recursive XML operations. Characters such as <code>[</code> are bad as they are common in regexes. So I'm wondering if there is a generally adopted approach rather than inventing our own.</p>
<p>A typical example is the "degrees" symbol:</p>
<pre><code>HTML Entity (decimal) &#176;
HTML Entity (hex) &#xb0;
HTML Entity (named) &deg;
How to type in Microsoft Windows Alt +00B0
Alt 0176
Alt 248
UTF-8 (hex) 0xC2 0xB0 (c2b0)
UTF-8 (binary) 11000010:10110000
UTF-16 (hex) 0x00B0 (00b0)
UTF-16 (decimal) 176
UTF-32 (hex) 0x000000B0 (00b0)
UTF-32 (decimal) 176
C/C++/Java source code "\u00B0"
Python source code u"\u00B0"
</code></pre>
<p>We are also likely to encounter TeX</p>
<pre><code>$10\,^{\circ}{\rm C}$
</code></pre>
<p>or</p>
<pre><code>\degree
</code></pre>
<p>so backslashes, curlies and dollars are a poor idea. </p>
<p>We could for example use markup like:</p>
<pre><code>__deg__
__#176__
</code></pre>
<p>and this will probably work but I'd appreciate advice from those who have similar problems.</p>
<p><strong>update</strong> I accept @MichaelB's insistence that we use UTF-8 throughout. I am worried that some of our tools may not conform and if so I'll revisit this. Note that my original question is not well worded - read his answer and the link in it.</p>
http://stackoverflow.com/questions/1894709/xml-and-html-escaping-special-characters0xml and html escaping special characterskmunky2009-12-12T21:09:43Z2009-12-12T21:15:28Z
<p>i store my article in a xml file, so if i write into it special characters <code>"'</code> xml automatically escapes this characters and when i get(via PHP) the xml content i get something like <code>\"</code>. so if i write into xml <code>"hello dude"</code> my html will look like this <code>\"hello dude\"</code>
how can i get the xml content like it was initially inserted(<code>"hello dude"</code>)? thanks</p>
http://stackoverflow.com/questions/1883257/xslt-escaping-characters-for-xml-attributes2XSLT escaping characters for XML attributesdmccorison2009-12-10T19:09:29Z2009-12-11T23:45:40Z
<p>I am working in a framework (cocoon) which means that the pages after I produce them are re-transformed by processes I have little or no control of. What I am doing is making a web service call, then transforming the results into an HTML page for presentation. Sounds like a job for XSLT. Everything works fine, until the data returned in an XML text node has an '&' character in it. The returned XML is properly escaped, but I want to put it into the href attribute of an anchor node. Everything I have tried ends up with the unescaped '&' character showing up in the href attribute. For example:</p>
<p>If the node returned from the web service looks like:</p>
<pre><code><ns:name>Foo&amp;Bar</ns:name>
</code></pre>
<p>The resulting <code><a></code> token (in the page source) looks like:</p>
<pre><code><a href="ADifferentPage.jsp?name=Foo&Bar">Foo&amp;Bar</a>
</code></pre>
<p>My current XSLT code looks like:</p>
<pre><code><a>
<xsl:attribute name="href">
ADifferentPage.jsp?name=<xsl:value-of select="ns:name" />
</xsl:attribute>
<xsl:value-of select="ns:name" />
</a>
</code></pre>
<p>The desired result is:</p>
<pre><code><a href="ADifferentPage.jsp?name=Foo&amp;Bar">Foo&amp;Bar</a>
</code></pre>
http://stackoverflow.com/questions/1884650/how-do-i-escape-the-character-in-a-vb-net-string-literal1How do I escape the # character in a VB.NET string literal?Rob Sobers2009-12-10T22:48:54Z2009-12-10T22:57:28Z
<p>If I needed to escape a double quote character within a string literal I'd use two consecutive double quotes as follows:</p>
<pre><code>Dim name = "Chuck ""Iceman"" Liddell"
</code></pre>
<p>However, it doesn't seem like consecutive # works the same way. The compiler is expecting a compiler directive to follow the # character, even when its enclosed in double quotes. How can tell the compiler that I want a # character in my string?</p>
<p>Thanks!</p>
<p><strong>EDIT:</strong> as a few of the answers below point out, <code>#</code> is not a reserved character. I closed my solution in Visual Studio and re-opened it and no longer got the compiler squiggles warning me. Thanks!</p>
http://stackoverflow.com/questions/1883490/php-cannot-escape-my-string-properly0PHP Cannot escape my string properlyJonathan Kushner2009-12-10T19:46:48Z2009-12-10T19:58:51Z
<p>I'm using <code>mysql_real_escape_string</code> to escape my content but I am receiving an error in a SQL INSERTION QUERY for having a single-quote unescaped. How can I resolve this?</p>
<pre><code>$content = mysql_real_escape_string("'content'",$conn);
</code></pre>
<p>The error message I am receiving is:</p>
<pre><code>You have an error in your sql syntax near 'content
</code></pre>
<p>My SQL Query ENDS UP BEING of the following:</p>
<pre><code>$sql = "INSERT into `table` (`column`) VALUES ("'content'")
</code></pre>
<p>INSTEAD OF </p>
<pre><code>$sql = "INSERT into `table` (`column`) VALUES ("\'content\'")
</code></pre>
<p>I also tried using single quotes for my delimiter and ended up failing on a double quote not being escaped.</p>
http://stackoverflow.com/questions/1873652/how-to-detect-an-invalid-c-escaped-string-using-a-regular-expression1How to detect an invalid C escaped string using a regular expression?Sorin Sbarnea2009-12-09T12:41:16Z2009-12-10T11:19:19Z
<p>I would like to find a regular expression (regex) that does detect if you have some invalid escapes in a C double quoted escaped string (where you can find double quotes only escaped).</p>
<p>I consider valid <code>\\</code> <code>\n</code> <code>\r</code> <code>\"</code> (the test string is using ")</p>
<p>A partial solution to this is to use <code>(?<!\\)\\[^\"\\nr]</code> but this one fails to detect bad escapes like <code>\\\</code>.</p>
<p>Here is a test string that I use to test the matching:</p>
<p><code>...\n...\\b...\"...\\\\...\\\E...\...\\\...\\\\\..."...\E...</code></p>
<p>The expression should match the last 6 blocks as invalid, the first 4 are valid. The problem is that my current version does find only 2/5 errors.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines7Pass a PHP string to a Javascript variable (including escaping newlines)David Laing2008-10-03T18:27:03Z2009-12-09T10:52:38Z
<p>What is the easiest way to encode a PHP string for output to a Javascript variable?</p>
<p>I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a Javascript variable.</p>
<p>Normally, I would just construct my Javascript in a PHP file, ala:</p>
<pre><code><script>
var myvar = "<?php echo $myVarValue;?>";
</script>
</code></pre>
<p>However, this doesn't work when $myVarValue contains quotes or newlines.</p>
http://stackoverflow.com/questions/199889/escaping-in-access-sql1Escaping ' in Access SQLinglesp2008-10-14T03:08:20Z2009-12-07T04:26:18Z
<p>I'm trying to do a domain lookup in vba with something like this:</p>
<pre><code>DLookup("island", "villages", "village = '" & txtVillage & "'")
</code></pre>
<p>This works fine until txtVillage is something like Dillon's Bay, when the apostrophe is taken to be a single quote, and I get a run-time error.</p>
<p>I've written a trivial function that escapes single quotes - it replaces "'" with "''". This seems to be something that comes up fairly often, but I can't find any reference to a built-in function that does the same. Have I missed something?</p>
http://stackoverflow.com/questions/652310/escaping-verbatim-string-literals0Escaping verbatim string literalssweeney2009-03-16T22:04:49Z2009-12-01T17:25:36Z
<p>I have the following string which won't compile:</p>
<pre><code>String formLookupPull = @"SELECT value1, '"+tableName+"', '"+columnName+"' FROM lkpLookups WHERE ""table"" = '" + tableName + "' and ""field"" = '" + columnName + "';";
</code></pre>
<p>The offending sections are :</p>
<pre><code>""table"" =
</code></pre>
<p>and </p>
<pre><code>""field"" =
</code></pre>
<p>THe compiler is getting all mixed up on the escape sequence. Can anyone see what's wrong?</p>
<p>thaks,
brian</p>
http://stackoverflow.com/questions/1812891/java-escape-string-to-prevent-sql-injection3Java - escape string to prevent SQL injectionIsisagate2009-11-28T16:11:13Z2009-12-01T01:35:35Z
<p>I'm trying to put some anti sql injection in place in java and am finding it very difficult to work with the the "replaceAll" string function. Ultimately I need a function that will convert any existing <code>\</code> to <code>\\</code>, any <code>"</code> to <code>\"</code>, any <code>'</code> to <code>\'</code>, and any <code>\n</code> to <code>\\n</code> so that when the string is evaluated by MySQL SQL injections will be blocked. </p>
<p>I've jacked up some code I was working with and all the <code>\\\\\\\\\\\</code> in the function are making my eyes go nuts. If anyone happens to have an example of this I would greatly appreciate it.</p>
http://stackoverflow.com/questions/1815927/how-to-escape-single-quotes-in-flash1How to escape single quotes in Flash?Kaitsuli2009-11-29T16:12:29Z2009-11-29T16:45:49Z
<p>I have a user supplied text and I need to prepend all backslashes and single quotes with a backslash. How to do that?</p>
http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder0Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builderviatropos2009-11-28T07:18:01Z2009-11-28T19:06:09Z
<p>I would like to add things like bullet points "•" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?</p>
<p>I would like the result to be: </p>
<p><pre><code>
<code><span>&#8226;</span> </code>
</code></pre>
rather than </p>
<p><pre><code>
<code><span>&amp;#8226;</span> </code>
</code></pre></p>
<p>What am I missing? </p>
<p>I'm just doing this: </p>
<p><pre><code>
<code>xml.span {
xml.text "&#8226;\ "
}</code>
</code></pre></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/237703/system-copy-fails-while-cmd-copy-works1system() copy fails, while cmd copy worksMike2008-10-26T07:51:31Z2009-11-27T19:44:57Z
<p>In cmd.exe, I can execute the command "copy c:\hello.txt c:\hello2.txt" and it worked fine.
But in my C program, I ran this piece of code and got the following error:</p>
<pre><code>#include <iostream>
using namespace std;
int main()
{
system("copy c:\hello.txt c:\hello2.txt");
system("pause");
return 0;
}
</code></pre>
<p>Output:
The system cannot find the file specified.</p>
<p>Anybody know what is going on here?</p>
http://stackoverflow.com/questions/1809658/escaping-user-data-without-magic-quotes2Escaping user data, without magic quotesdanp2009-11-27T16:33:09Z2009-11-27T16:55:50Z
<p>Hey,</p>
<p>I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.</p>
<p>Obviously, with the magic quotes directive being deprecated shortly in php 5.3.0+, and removed in php6, this becomes more pressing, for anyone looking to upgrade and get into the new language features, while maintaining legacy code (don't we love it..).</p>
<p>However, one thing that I haven't seen is much discussion about theory/best practice with what to do once you have protected your data - for example, to store with or without slashes? I personally think keeping escaped data in the DB is a bad move, but want to hear discussion and read some case studies preferably.. </p>
<p>Some links from the PHP manual just for reference:</p>
<p><a href="http://php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">PHP Manual - <code>mysql_real_escape_string</code></a></p>
<p><a href="http://php.net/manual/en/function.htmlspecialchars.php" rel="nofollow">PHP Manual - <code>htmlspecialchars</code></a></p>
<p>etc etc.</p>
<p>Any tips?</p>
http://stackoverflow.com/questions/1792807/how-to-treat-a-returned-stored-string-like-a-raw-string-in-python0How to treat a returned/stored string like a raw string in Python?Brendan2009-11-24T20:43:44Z2009-11-24T21:54:21Z
<p>I am trying to <code>.split()</code> a hex string i.e. <code>'\xff\x00'</code> to get a list i.e. <code>['ff', '00']</code> </p>
<p>This works if I split on a raw string literal i.e. <code>r'\xff\x00'</code> using <code>.split('\\x')</code> but not if I split on a hex string stored in a variable or returned from a function (which I presume is not a raw string)</p>
<p>How do I convert or at least 'cast' a stored/returned string as a raw string?</p>
http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting0XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T07:30:39Z2009-11-24T08:20:10Z
<p>I am transforming xml to html using xslt in .Net 1.1. One part contains a javascript section where 2 vars are ANDed (&&). The transform throws an unknown entity error. What can I do? I have tried 'CDATA' and 'disable-output-escaping' but without success. If I write && then the output is also '&&'. </p>
<p>Here is my code. (trimmed for clarity)</p>
<pre><code><?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" standalone="yes" indent="yes" cdata-section-elements="script style"/>
<xsl:template match="/menus">
<html>
<xsl:text disable-output-escaping="yes">
<head>
<title>Portal</title>
<script type="text/javascript">
//
// Show hide language block
//
function lang(s) {
var elD = document.getElementById('german');
var elE = document.getElementById('english');
if(elD && elE) { /// <<---- error occurs here
elD.style.display = s == 'german' ? 'block': 'none';
elE.style.display = s == 'german' ? 'none': 'block';
}
}
</script>
</head>
</xsl:text>
<body>
<h2>Das Portal ist vorübergehend unerreichbar / The Portal is temporarily unavailable</h2>
<div><a href="#" onclick="lang('german')">deutsch</a> | <a href="#" onclick="lang('english')">English</a>
</div>
<div id="german">
<xsl:apply-templates select="//menu[@lang='de']"/>
</div>
<div id="english">
<xsl:apply-templates select="//menu[@lang='en']"/>
</div>
</body>
</html>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/1787322/htmlspecialchars-equivalent-in-javascript0HtmlSpecialChars equivalent in Javascript?Bart van Heukelom2009-11-24T01:59:20Z2009-11-24T02:21:11Z
<p>Apparently, this is harder to find than I thought it would be. And it even is so simple...</p>
<p>Is there a function equivalent to PHP's htmlspecialchars built into Javascript? I know it's fairly easy to implement that yourself, but using a built-in function, if available, is just nicer.</p>
<p>For those unfamiliar with PHP, htmlspecialchars translates stuff like <code><htmltag/></code> into <code>&lt;htmltag/&gt;</code></p>
<p>I know that <code>escape()</code> and <code>encodeURI()</code> do not work this way.</p>
<p><hr></p>
<p><strong>Update:</strong> Here is my own implementation</p>
<pre>function escapeHtml(unsafe) {
return unsafe
.replace("&", "&")
.replace("", ">")
.replace("\"", """)
.replace("'", "'");
}</pre>
http://stackoverflow.com/questions/1782923/php-object-has-semicolon-or-other-strange-character-in-variable-name1PHP object has semicolon (or other strange character) in variable nameMike2009-11-23T12:39:36Z2009-11-23T13:12:51Z
<p>Hi,</p>
<p>I've got an object, which contains semicolons in the property names, when I var_dump, I get:</p>
<pre><code>object(Sales) {
[thisisa:propertyname] => 'some value'
}
</code></pre>
<p>So, how do I access the property? $object->thisisa:propertyname throws an error. I read somewhere a while ago you can wrap thisisa:propertyname in some characters (I've tried {, [, (, |) but I can't remember which.</p>
<p>Also, it seems that using:</p>
<pre><code>$var = "thisisa:propertyname";
$object->$$var;
</code></pre>
<p>Doesn't work either.</p>
<p>Help!</p>
<p>Mike</p>
http://stackoverflow.com/questions/1757618/best-practice-for-html-escaping-user-supplied-data-with-php-and-zf2Best practice for HTML escaping user-supplied data with PHP (and ZF)nbr2009-11-18T17:18:28Z2009-11-20T10:04:38Z
<p><em>Note: I'm using Zend Framework, but I think most of this applies to PHP coding in general.</em></p>
<p>I'm trying to choose a strategy for writing views scripts, possibly with the help of a templating engine. Motivations: <strong>clarity and security</strong>. I'm just not happy with writing .phtml scripts. This syntax is awfully verbose to do the most often needed thing - outputting a variable:</p>
<pre><code><?php echo $this->escape($this->myVariable); ?>
</code></pre>
<p>In addition to the code being lengthy, IMHO the template author shouldn't have to remember (and bother) writing an escape call each time he/she wants to output a variable. Forgetting the call will almost definitely result in an XSS vulnerability.</p>
<p>I have two possible solutions for this problem:</p>
<p><strong>Solution 1: A template engine with automatic escaping</strong></p>
<p>I think at least <a href="http://smarty.net" rel="nofollow">Smarty</a> has an option for automatically escaping html entities when outputting variables. There are <a href="http://nosmarty.net" rel="nofollow">points against Smarty</a>, but maybe at least some of them are addressed in the upcoming 3.0 - I haven't checked yet.</p>
<p>XML based template engines like <a href="http://phptal.org" rel="nofollow">PHPTAL</a> will also escape any data by default. They might look quite odd for a beginner, though. Maybe still worth trying?</p>
<p><strong>Solution 2: Escape the data in the Model</strong></p>
<p>Of course, the other option would be to escape the needed data already in the Model (or even the controller?). The Model should already know the content-type (mainly plain text or HTML text) of each field, so it would be kind of logical to escape the data there. The view could consider all data as safe HTML. This would allow eg. changing the datatype of a field from plain text to HTML without touching the view script - only by changing the Model.</p>
<p>But then again, it doesn't feel like good MVC practice. In addition, there are problems with this approach as well:</p>
<ul>
<li>sometimes the view only wants to print the first n characters, and we don't want to end up truncating the data <code>foo & bar</code> as <code>foo &am</code> (having first escaped it as <code>foo &amp; bar</code>)</li>
<li>maybe the view wants to construct an URL with varName=$varName in the querystring - again, escaping already in the Model would be bad. </li>
</ul>
<p>(These problems could be addressed by providing two versions of the data, or unescaping in the template. Seems bad to me.)</p>
<p>Ideas? Am I missing something? What do you consider "the best practice"?</p>
<p>PS. This post is about finding a general solution for any user-supplied plain-text data that may contain <code><</code> or <code>></code> or any other characters. So, filtering data before saving it to the database isn't the solution.</p>
<p><strong>Update:</strong></p>
<p>Thanks for all comments so far. I did some more research and will next evaluate <a href="http://www.twig-project.org/" rel="nofollow">Twig</a> and possibly <a href="http://www.invenzzia.org/en/projects/open-power-libraries/open-power-template" rel="nofollow">Open Power Template</a>. Both seem interesting: Twig looks very straightforward, but the project is young. On the XML side, OPT's syntax looks a bit nicer than PHPTAL's. Both Twig and OPT are quite well documented.</p>
http://stackoverflow.com/questions/1760084/whats-the-correct-way-to-escape-sql-passed-into-sugarcrms-getentrylist-soap-a0What's the correct way to escape sql passed into SugarCRM's get_entry_list soap api call ?Rodney Amato2009-11-19T00:20:53Z2009-11-19T00:20:53Z
<p>By the looks of the SugarCRM soap api you just seem to pass raw SQL into the restriction part of the get_entry_list function call. </p>
<p>Is there a way to escape the values being passed into the restriction correctly without knowing the target database the SugarCRM instance is running on ?</p>
<p>For example if I have something like</p>
<pre><code>// connect to soap server running on sugarcrm
$client = new SoapClient(NULL, $options);
// login to the soap server
// get all the accounts with a specific name
$response = $client->get_entry_list($session_id, 'Accounts', 'name = "'.$name.'"');
</code></pre>
<p>how am I supposed to correctly escape $name ? </p>
<p>Do I just have to know that my target instance is running on MySQL and that my php version is new enough that I have to use mysql_real_escape_string and establish a link to the crm db first so that it uses the correct character set for escaping my variable ? </p>
<p>I'm hoping there is a better way that I don't know about.</p>
http://stackoverflow.com/questions/1242118/how-to-escape-json-string1How to escape JSON string?theringostarrs2009-08-06T23:40:42Z2009-11-18T15:59:47Z
<p>Are there any classes/functions available to be used for easy JSON escaping? Id rather not have to write my own.</p>
http://stackoverflow.com/questions/1742066/why-is-pdo-better-for-escaping-mysql-queries-querystrings-than-mysqlrealescape2Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string? NeonBlue Bliss2009-11-16T13:01:12Z2009-11-16T14:57:01Z
<p>I've been told that I'd be better using <code>PDO</code> for MySQL escaping, rather than <code>mysql_real_escape_string</code>.</p>
<p>Maybe I'm having a brain-dead day (or it may be the fact I'm by no stretch of the imagination a natural programmer, and I'm still very much at the newbie stage when it comes to PHP), but having checked out the PHP manual and read <a href="http://www.php.net/manual/en/pdo.prepare.php" rel="nofollow">the entry on PDO</a>, I'm still no clearer as to what PDO actually is and why it's better than using <code>mysql_real_escape_string</code>. This may be because I've not really got to grips with the complexities of OOP yet (I'm assuming it's something to do with OOP), but other than the fact that variables and array values seem to have a colon infront of them, I'm still not sure what it actually is and how you use it (and why it's better than <code>mysql_real_escape_string</code>. (It also may have something to do with the fact that I don't really have a clear understanding of what 'classes' are, so when I read "PDO class" I'm none the wiser really).</p>
<p>Having read <a href="http://dev.mysql.com/tech-resources/articles/mysql-pdo.html" rel="nofollow">an article</a> or two on the 'Developer Zone' bit of the MySQL website, I'm still no clearer. As I can't even figure out what it is at the moment, I think probably using it is a bit beyond me right now, but I'm still interested in broadening my education and finding out how I could improve things. </p>
<p>Could anyone explain to me in 'plain English' what PDO is (or point me in the direction of something on the subject written in plain English), and how you'd go about using it?</p>
http://stackoverflow.com/questions/1528490/how-to-pass-xml-text-as-argument-in-exec-ant-task1How to pass xml text as argument in exec ant task?Adam2009-10-06T22:44:24Z2009-11-12T22:23:32Z
<p>We need to call an executable from ant that takes xml as part of the argument. Using exec is easy enough, but one of the arguments includes an xml file. We tried loading the xml file using the loadfile target with striplinebreaks</p>
<pre><code> <loadfile
property="xmlStuff"
srcFile="xmlFile.xml">
<filterchain>
<striplinebreaks/>
</filterchain>
</loadfile>
<exec executable="theCommand">
<arg value="Some other information and now our xml: '${xmlStuff}'" />
</exec>
</code></pre>
<p>Is there a way we can read and escape xml documents for use in this case?</p>
<p>EDIT since xmlStuff has quotes for its attributes they are ending the arg valute attribute quotes. </p>
<p>So the above example ends up like:</p>
<pre><code>theCommand "Some other information and now our xml: '<outerTag myAtt="foobar"> <innerTag /> </outerTag>'"
</code></pre>
<p>Instead of:</p>
<pre><code>theCommand Some other information and now our xml: '<outerTag myAtt="foobar"> <innerTag /> </outerTag>'
</code></pre>
<p><strong>Is there any way to have essentially three layers of quotes?</strong> </p>
<p>One for the value attribute of the arg tag (could these perhaps not be included in the final command?).</p>
<p>One for within the arg tag to represent the nested string.</p>
<p>One for within the xmlStuff for attributes within. </p>
<p>This file is being injected into a database and is not available now.</p>
http://stackoverflow.com/questions/1717193/php-do-i-need-to-escape-this1PHP: Do I need to escape this?Cyclone2009-11-11T18:31:44Z2009-11-11T19:11:48Z
<p>It might be a bit unusual, but I need to echo <code><?php</code>. However, I think that PHP treats it as an actual <code><?php</code> and starts executing code instead of treating it as a string. How can I escape <code><?php</code> and <code>?></code> so they can be treated as strings? There was nothing in the manual about this.</p>
<p>Thanks, I know this is a bit unusual.</p>
http://stackoverflow.com/questions/1489083/how-do-i-prevent-a-builder-template-from-escaping-a-url-in-an-attribute-value0How do I prevent a Builder template from escaping a URL in an attribute value?James A. Rosen2009-09-28T20:04:56Z2009-11-11T11:00:05Z
<p>I have a Rails Builder template:</p>
<pre><code># in app/views/foos/index.xml.builder:
xml.Module do |mod|
...
mod.Content :type => 'url',
:href => foos_url(:bar => 'baz',
:yoo => 'hoo')
end
</code></pre>
<p>(It creates the XML for an OpenSocial Module file, but that's not important.)</p>
<p>The problem is that the rendered XML looks like this:</p>
<pre><code><Module>
...
<Content type="url" href="http://myapp.com/foos?bar=baz&amp;amp;yoo=hoo"/>
</Module>
</code></pre>
<p>That URL suffix should be "<code>bar=baz&yoo=hoo</code>." How do I keep Builder from escaping the amerpsand?</p>
<p><strong>Later</strong></p>
<p>Perhaps the URL suffix should be "<code>bar=baz&amp;yoo=hoo</code>" in the source for XML-validity rules, but certainly it shouldn't be <em>double</em>-escaped, should it?</p>
http://stackoverflow.com/questions/1466741/parameterized-queries-with-psycopg2-python-db-api-and-postgresql0Parameterized queries with psycopg2 / Python DB-API and PostgreSQLcookiecaper2009-09-23T15:28:13Z2009-11-09T18:53:51Z
<p>What's the best way to make psycopg2 pass parameterized queries to PostgreSQL? I don't want to write my own escpaing mechanisms or adapters and the psycopg2 source code and examples are difficult to read in a web browser.</p>
<p>If I need to switch to something like PyGreSQL or another python pg adapter, that's fine with me. I just want simple parameterization.</p>
<p>Thanks. : )</p>
http://stackoverflow.com/questions/1400595/escaping-a-clearsilver-variable-for-use-as-a-javascript-parameter-from-an-href0Escaping a clearsilver variable for use as a javascript parameter from an href.patros2009-09-09T16:05:38Z2009-11-06T17:00:03Z
<p>I'm using a clearsilver variable as a parameter to a javascript function, from an href. Like this:</p>
<pre><code><a href="javascript:foo('<?cs var: js_escape(bar) ?>');"><span>
</code></pre>
<p>This works great, until the cs variable contains quotes.</p>
<p>Anyone have experience with this? Is there some ordering of escaping that will work for this, or do I need to find a variable that doesn't have quotes in it?</p>