Skip to content

Conversation

duzun
Copy link

@duzun duzun commented Jan 29, 2020

Replace

eval(attrValue)

with

(new Function('return ('+attrValue+')'))()

Why?

eval() is evaluated in the scope where it is called, which exposes all the (private) variables to the string script being evaluated.
Besides security considerations, it disables mangling of all variables names in the scope (and all parent scopes) during code minification, because every variable could be potentially used in the eval().

The (new Function(str))() approach is much safer, cause it does not have access to the current scope.

Replace 
```js
eval(attrValue)
```
with
```js
(new Function('return ('+attrValue+')'))()
```

### Why?

`eval()` is evaluated in the scope where it is called, which exposes all the (private) variables to the string script being evaluated.
Besides security considerations, it disables mangling of all variables names in the scope (and all parent scopes) during code minification, because every variable could be potentially used in the `eval()`.

The `(new Function(str))()` approach is much safer, cause it does not have access to the current scope.
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant