The eval function is a powerful and easy way to dynamically generate code, so what are the caveats?
|
Edit: As @Jeff Walden points out in comments, #3 is less true today than it was in 2008. However, while some caching of compiled scripts may happen this will only be limited to scripts that are eval'd repeated with no modification. A more likely scenario is that you are eval'ing scripts that have undergone slight modification each time and as such could not be cached. Let's just say that SOME eval'd code executes more slowly. |
|||||||||||||||
|
|
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':
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:
...which is much easier to read as well as less potentially buggy. (But then, someone who /really/ knew what they were doing would say:
which is more reliable than the dodgy old trick of accessing DOM elements straight out of the document object.) |
|||||||||||||||||||||
|
|
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. |
||||
|
|
|
Two points come to mind:
|
|||||
|
|
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. |
|||||
|
|
Mainly, it's a lot harder to maintain and debug. It's like a |
||||
|
|
|
Unless you let eval() a dynamic content (through cgi or input) it is as safe and solid as all other JavaScript in your page. |
|||
|
|
|
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 -
So if you're looking to run some JavaScript code where it might not otherwise be allowed (Myspace, I'm looking 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 JavaScript hacks' shelf. |
||||
|
|
|
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 code can't do that much anyway. Provided the thing you're eval'ing has come from a reasonable source, you're fine. |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
If you want 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 |
||||
|
|
|
I know this discussion is old, but I really like this approach by Google and wanted to share that feeling with others ;) The other thing is that the better You get the more You try to understand and finally You just don't believe that something is good or bad just because someone said so :) This is a very inspirational video that helped me to think more by myself :) GOOD PRACTICES are good, but don't use them mindelessly :) |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Along with the rest of the answers, I don't think eval statements can have advanced minimization. |
|||
|
|
|
It sounds like I'm safe since I am using my own code to eval, and not input data, but here's how I'm using it. I'm passing the name of an array as an argument to a function. If I don't use eval, it doesn't work. Should I be using a different method?
|
|||||
|