User Zilk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T15:03:47Zhttp://stackoverflow.com/feeds/user/31682http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/242118/is-it-safe-to-read-regular-expressions-from-a-file10Is it safe to read regular expressions from a file?Zilk2008-10-28T03:04:07Z2008-10-28T20:38:54Z
<p>Assuming a Perl script that allows users to specify several text filter expressions in a config file, is there a safe way to let them enter regular expressions as well, without the possibility of unintended side effects or code execution? Without actually parsing the regexes and checking them for problematic constructs, that is. There won't be any substitution, only matching.</p>
<p>As an aside, is there a way to test if the specified regex is valid before actually using it? I'd like to issue warnings if something like <code>/foo (bar/</code> was entered.</p>
<p>Thanks, Z.</p>
<p><hr>
EDIT:<br />
Thanks for the very interesting answers. I've since found out that the following dangerous constructs will only be evaluated in regexes if the <code>use re 'eval'</code> pragma is used:</p>
<pre><code>(?{code})
(??{code})
${code}
@{code}
</code></pre>
<p>The default is <code>no re 'eval'</code>; so unless I'm missing something, it should be safe to read regular expressions from a file, with the only check being the eval/catch posted by Axeman. At least I haven't been able to hide anything evil in them in my tests.</p>
<p>Thanks again. Z.</p>
http://stackoverflow.com/questions/135448/how-do-i-check-to-see-if-an-object-has-an-attribute-in-javascript/136411#136411Comment by Zilk on How do I check to see if an object has an attribute in Javascript?Zilk2008-11-28T15:13:18Z2008-11-28T15:13:18ZJohn, you shouldn't use function declarations in an if() branch. That's not allowed in ECMAScript, and current browsers handle them in very different ways. To conditionally create functions, use function expressions:
var hasOwnProperty = function () {...};http://stackoverflow.com/questions/242118/is-it-safe-to-read-regular-expressions-from-a-fileComment by Zilk on Is it safe to read regular expressions from a file?Zilk2008-10-28T23:31:00Z2008-10-28T23:31:00ZI just read that it's considered good style not to edit one's question to provide the answer, but to post a new answer instead. My apologies for the faux-pas, I'm still very new here. But I'm learning :-)http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118556#118556Comment by Zilk on Hidden Features of JavaScript?Zilk2008-10-28T21:45:58Z2008-10-28T21:45:58ZYou shouldn't iterate over an array with for..in at all! Use the standard for() loop or the new forEach() method for arrays, and for..in strictly for iterating over object properties.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/117951#117951Comment by Zilk on Hidden Features of JavaScript?Zilk2008-10-28T21:35:46Z2008-10-28T21:35:46ZYou can also get the [Global] object from anywhere like this:
var glb = function () { return this; }();http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61545#61545Comment by Zilk on Hidden Features of JavaScript?Zilk2008-10-28T21:21:28Z2008-10-28T21:21:28ZI second Jason's warning. The book in itself is very interesting, and it does give a lot of good advice, but DC is <i>far</i> too convinced that his way of doing things is the only correct way, everything else is "defective". If you'd like some examples, look at his responses on the JSLint Yahoo Group.