User Zilk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:03:47Z http://stackoverflow.com/feeds/user/31682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/242118/is-it-safe-to-read-regular-expressions-from-a-file 10 Is it safe to read regular expressions from a file? Zilk 2008-10-28T03:04:07Z 2008-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#136411 Comment by Zilk on How do I check to see if an object has an attribute in Javascript? Zilk 2008-11-28T15:13:18Z 2008-11-28T15:13:18Z John, 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-file Comment by Zilk on Is it safe to read regular expressions from a file? Zilk 2008-10-28T23:31:00Z 2008-10-28T23:31:00Z I 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#118556 Comment by Zilk on Hidden Features of JavaScript? Zilk 2008-10-28T21:45:58Z 2008-10-28T21:45:58Z You 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#117951 Comment by Zilk on Hidden Features of JavaScript? Zilk 2008-10-28T21:35:46Z 2008-10-28T21:35:46Z You 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#61545 Comment by Zilk on Hidden Features of JavaScript? Zilk 2008-10-28T21:21:28Z 2008-10-28T21:21:28Z I 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 &quot;defective&quot;. If you'd like some examples, look at his responses on the JSLint Yahoo Group.