up vote 71 down vote favorite
16
share [g+] share [fb]

The eval function is a powerful and easy way to dynamically generate code so what are the caveats?

link|improve this question

60% accept rate
17  
Don't be eval() by Simon Willison - 24ways.org/2005/dont-be-eval – Brian Singh Sep 17 '08 at 19:40
feedback

17 Answers

up vote 60 down vote accepted
  1. Improper use of eval opens up your code for injection attacks

  2. Debugging can be more challenging (no line numbers, etc.)

  3. eval'd code executes more slowly (no opportunity to compile/cache eval'd code)

link|improve this answer
9  
#3 is not quite correct these days, in one sense. Most if not all browsers (definitely v8, Nitro, and SpiderMonkey [upon which I work]) now cache compiled eval programs in some cases, so it's quite possible (likely even, but cache behavior ultimately depends on factors outside the JS developer's control) that eval of the same string multiple times can avoid parse overhead. eval code likely still executes more slowly (the calling function slower yet), but it won't be quite as slow as you'd think. Still, being not quite so slow is no reason to use eval. :-) – Jeff Walden Jan 7 '11 at 10:56
3  
#3 is just wrong – Xnzo72 Oct 7 '11 at 14:29
feedback

eval isn't always evil. There are times where it's perfectly appropriate.

However, eval is currently and historically massively over-used by people who don't know what they're doing. That includes people writing JavaScript tutorials, unfortunately, and in some cases this can indeed have security consequences - or, more often, simple bugs. So the more we can do to throw a question mark over eval, the better. Any time you use eval you need to sanity-check what you're doing, because chances are you could be doing it a better, safer, cleaner way.

To give an all-too-typical example, to set the colour of an element with an id stored in the variable 'potato':

eval('document.'+potato+'.style.color= "red"');

If the authors of the kind of code above had a clue about the basics of how JavaScript objects work, they'd have realised that square brackets can be used instead of literal dot-names, obviating the need for eval:

document[potato].style.color= 'red';

...which is much easier to read as well as less potentially buggy.

(But then, someone who /really/ knew what they were doing would say:

document.getElementById(potato).style.color= 'red';

which is more reliable than the dodgy old trick of accessing DOM elements straight out of the document object.)

link|improve this answer
14  
Hmm, guess I got lucky when I was first learning JavaScript. I always used "document.getElementById" to access the DOM; ironically, I only did it at the time because I didn't have a clue how objects worked in JavaScript ;-) – Mike Spross Mar 15 '09 at 6:45
2  
this is a much better answer IMO – plodder Apr 23 '10 at 17:43
2  
agree. Sometimes eval is ok e.g. for JSON responses from webservices – schoetbi Jan 3 '11 at 15:17
3  
@schoetbi: Shouldn't you use JSON.parse() instead of eval() for JSON? – Nyuszika7H Jan 10 '11 at 21:46
@Nyuszika7H: when you can, sure. There are still a fair few extant browsers that don't have it, alas. – bobince Jan 11 '11 at 0:53
show 3 more comments
feedback

I believe it's because it can execute any javascript function from a string. Using it makes it easier for people to inject rogue code into the application.

link|improve this answer
feedback

Two points come to mind:

  1. Security (but as long as you generate the string to be evaluated yourself, this might be a non-issue)

  2. Performance: until the code to be executed is unknown, it cannot be optimized. (about javascript and performance, certainly Steve Yegge's presentation)

link|improve this answer
feedback

Passing user input to eval() is a security risk, but also each invocation of eval() creates a new instance of the JavaScript interpreter. This can be a resource hog.

link|improve this answer
In the 3+ years since I answered this, my understanding of what happens has, let's say, deepened. What actually happens is a new execution context is created. See dmitrysoshnikov.com/ecmascript/chapter-1-execution-contexts – Andrew Hedges Jan 26 at 3:46
feedback

Its a lot harder to maintain and debug mainly. Its like a goto - you can use it, but it makes it harder to find problems and on the people how may need to make changes later.

link|improve this answer
feedback

Unless you let eval() a dynamic content (through cgi or input) it is as safe and solid as all other JavaScript in your page.

link|improve this answer
feedback

It's generally only an issue if you're passing eval user input.

link|improve this answer
feedback

It's not necessarily that bad provided you know what context you're using it in.

If your application is using eval() to create an object from some JSON which has come back from an XMLHttpRequest to your own site, created by your trusted server-side code, it's probably not a problem.

Untrusted client-side Javascript can't do that much anyway. Provided the thing you're eval'ing has come from a reasonable source, you're fine.

link|improve this answer
Isn't using eval slower than just parsing the JSON? – Brendan Long Apr 5 '11 at 0:24
feedback

one thing to keep in mind is that you can often use eval() to execute code in an otherwise restricted environment - social networking sites that block specific javascript functions can sometimes be fooled by breaking them up in an eval block -

eval('al' + 'er' + 't(' + 'hi there!' + ')');

So if you're looking to run some javascript where it might not otherwise be allowed (myspace, i'm lookin' at you...) then eval() can be a useful trick.

However, for all the reasons mentioned above, you shouldn't use it for your own code, where you have complete control - it's just not necessary, and better-off relegated to the 'tricky js hax' shelf.

link|improve this answer
feedback

Unless you are 100% sure that the code being evaluated is from a trusted source (usually your own application) then it's a surefire way of exposing your system to a cross-site scripting attack.

link|improve this answer
feedback

Besides the possible security issues if you are executing user-submitted code, most of the time there's a better way that doesn't involve re-parsing the code every time it's executed. Anonymous functions or object properties can replace most uses of eval and are much safer and faster.

link|improve this answer
feedback

It is a possible security risk, it has a different scope of execution, and is quite inefficient, as it creates an entirely new scripting environment for the execution of the code. See here for some more info: http://userjs.org/help/tutorials/efficient-code#evalevil

It is quite useful, though, and used with moderation can add a lot of good functionality.

link|improve this answer
feedback

It greatly reduces your level of confidence about security.

link|improve this answer
feedback

If you are wanting the user to input some logical functions and evaluate for AND the OR then the javascript eval function is perfect. I can accept two strings and eval(uate) string1 === string2 etc

Ian

link|improve this answer
feedback

This may become more of an issue as the next generation of browsers come out with some flavor of a JavaScript compiler. Code executed via Eval may not perform as well as the rest of your JavaScript against these newer browsers. Someone should do some profiling.

link|improve this answer
feedback

Along with the rest of the answers, I don't think eval statements can have advanced minimization.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.