Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Why exactly is eval evil?

I read people claim that eval is unsafe when run on arbitrary user input code. I understand this in other languages that run on the server that access the filesystem, etc. However, why does this matter when executing code in a browser? After all, can't you just fire up Firebug and write any arbitrary script you want anyway? So then how is eval any different?

share|improve this question
1  
eval() may be a XSS attack vector, if you're not careful – PaoloVictor Jan 27 '11 at 3:01
1  
please explain a little further – Joe Armstrong Jan 27 '11 at 3:04
1  
@Joel: You can check about XSS here: weblogs.java.net/blog/2006/09/27/… . It explains how eval is not safe and vulnerable to XSS. – bertzzie Jan 27 '11 at 3:15
@Phrogz, only stackoverflow.com/questions/197769/… is relevant - the others are about eval in general, this is a very different question (cause other languages are not generally run in a sandbox) – tobyodavies Jan 27 '11 at 3:37
show 1 more comment

marked as duplicate by Phrogz, galambalazs, martin clayton, Fredrik Mörk, Graviton Jan 28 '11 at 15:39

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

The danger of eval only rears its ugly head when you are serving a script written by alice to user bob for bob's browser to eval.

e.g. if bob enters his password on your page, alice could have written a keylogger in the user input you evaled and arrange for the data to be encoded in a script that bob will (unknowingly) submit to be served to alice. This is, as @Hunter2 has suggested in the comments, an XSS attack.

If you are not serving to other people, you are correct in assuming it is equivalent to firing up firebug

share|improve this answer

don't think it is unsafe, for the most paranoid execute eval = null;

share|improve this answer
3  
This won't help. I can get most of the authority of eval by doing new ((function () {}).constructor)('alert("Untrusted code")')(). Look Ma, no globals! – Mike Samuel Jan 27 '11 at 3:27
that made window go all bonkers on me, but I'm curious: if you'd override a reference to a native through window, is there any way you can reference it otherwise? – Filip Dupanović Jan 27 '11 at 3:31
3  
function myEval(str){return (new Function(str))()} is simpler and works for me :D – tobyodavies Jan 28 '11 at 8:28

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