MY BAD - i was formatting this pile of crap and forgot to throw the particular peice I was cleaning up BACK into the eval... sorry d00ds. - fixed now sorry bout that...
I'm wondering if the following bit of code is dangerous. I'm new to this shop and i'm going through their js and I found the following eval() statements. I don't know exactly how they are being implemented, but they are wrapped in functions named popUp1, popUp2, etc. so I assume its just used to open a popup... but who knows. (would this be helpful to track down?)
function popUp3(URL) {
day = new Date();
id = day.getTime();
//EVAL HERE
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no');");
}
The reason I am asking this question is because this is I need to determine if this is worth bringing up as a problem to my superiors. There are a LOT of bugs in this code base to fix, so if this isn't a serious security violation it won't likely get picked up.
Now... its pretty safe to assume (via the function name) that this is used to open a pop-up. Theoretically the user would have control over this by editing the HTML via any developer tool.
To be concise...
Is this dangerous: (yes, i already know this is dumb)
<a href="www.google.com"> superflous eval</a>
<script>
$("a").bind('click'){
var url = $(this).attr('href');
eval("window.open('" + url + "');
}
</script>
If so, how could this be exploited?
evalin that code. Just some odd looking strings, a bunch of assignments to global variables, adaythat is not a day, and an unusedid. If URL is not under the control of an attacker then the biggest problem is that the author probably thinks they're giving it a unique window name, but they're not. – Mike Samuel Aug 18 '11 at 20:53'" + id + "'is going to output the string" + id + "(10 chars), it will not read the value ofid. – Rocket Hazmat Aug 18 '11 at 21:10evalin the original code, something like this:eval("page = window.open(URL, '" + id + "', 'toolbar=no');");– Guffa Aug 18 '11 at 21:11