12
votes
16answers
11k views
Why is using Javascript eval function a bad idea?
The eval function is a powerful and easy way to dynamically generate code so what are the caveats?
12
votes
5answers
1k views
How can I evaluate a C# expression dynamically?
I would like to do the equivalent of:
object result = Eval("1 + 3");
string now = Eval("System.DateTime.Now().ToString()") as string
Following Biri s link, I got this snippet (modified to remove …
7
votes
3answers
614 views
Perl: $SIG{__DIE__}, eval { } and stack trace
I have a piece of Perl code somewhat like the following (strongly simplified): There are some levels of nested subroutine calls (actually, methods), and some of the inner ones do their own exception …
7
votes
5answers
261 views
Is ‘eval’ supposed to be nasty?
I have been using eval feature of ruby many a times. But I have heard people saying evals are nasty. When asked, why and how, I could never get a convincing reason not to use it. Are they really …
6
votes
5answers
405 views
Safety of Python ‘eval’ For List Deserialization
Are there any security exploits that could occur in this scenario:
eval(repr(unsanitized_user_input), {"__builtins__": None}, {"True":True, "False":False})
where unsanitized_user_input is a str …
6
votes
10answers
546 views
when is eval evil in php?
hi all,
i all the years i have been developing in php, i've always heard that using eval() is evil.
considering the following code, wouldn't it make sense, to use the second (and elegant) option? if …
5
votes
9answers
303 views
Is there ever a good reason to use eval() ?
It seems to me that eval() is treated with the same disdain that goto is. And by eval, I mean a function for executing a string as code, as seen in PHP, Python, JavaScript, etc.. Is there ever a …
5
votes
4answers
332 views
Javascript prototype undefined after eval deserialization
Attempting to deserialize JSON data and update each object's prototype and inherit a common function.
However, the following script throws error "people[0].getFullName is not a function". The …
5
votes
5answers
586 views
Security of Python’s eval() on untrusted strings?
If I am evaluating a Python string using eval(), and have a class like:
class Foo(object):
a = 3
def bar(self, x): return x + a
What are the security risks if I do not trust the string? In …
5
votes
9answers
949 views
Eval is evil… So what should I use instead?
An ajax request returns me a standard JSON array filled with my user's inputs. The input has been sanitized, and using the eval() function, I can easily create my javascript object and update my …
4
votes
5answers
107 views
How can I evaluate chained expressions from a string, in Perl?
I'm not really sure what to call these type of expressions, so an example would be easier...
Is there a way in Perl to evaluate expressions like a < b <= c? I have a configuration file that …
4
votes
6answers
121 views
Parsing a string which represents a list of tuples
I have strings which look like this one:
"(8, 12.25), (13, 15), (16.75, 18.5)"
and I would like to convert each of them into a python data structure. Preferably a list (or tuple) of tuples …
4
votes
6answers
283 views
What is the best way to call a python script from another python script?
I have a script named test1.py which is not in a module. It just has code that should execute when the script itself is run. There are no functions, classes, methods etc. I have another script which …
4
votes
1answer
366 views
Properly handling spaces and quotes in bash completion
What is the correct/best way of handling spaces and quotes in bash completion?
Here’s a simple example. I have a command called words (e.g., a dictionary lookup program) that takes various words as …
4
votes
6answers
543 views
C# Eval() support
Hi Guys,
we need to evaluate a value in an object in run time while we have a textual statement of the exact member path for example: myobject.firstMember.secondMember[3].text
we thought of parsing …
