-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathEval.ql
38 lines (33 loc) · 1010 Bytes
/
Eval.ql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* @name Use of eval
* @description The 'eval' function and the 'Function' constructor execute strings as code. This is dangerous and impedes
* program analysis and understanding. Consequently, these two functions should not be used.
* @kind problem
* @problem.severity recommendation
* @id js/eval-call
* @tags maintainability
* language-features
* external/cwe/cwe-676
* @precision medium
*/
import javascript
/**
* A call to `new Function(...)`.
*/
class NewFunction extends DataFlow::NewNode {
NewFunction() { this = DataFlow::globalVarRef("Function").getAnInvocation() }
}
/**
* A call to `eval`.
*/
class EvalCall extends DataFlow::CallNode {
EvalCall() { this = DataFlow::globalVarRef("eval").getACall() }
}
/**
* A call to `new Function(...)` or `eval`.
*/
class EvalUse extends DataFlow::Node {
EvalUse() { this instanceof NewFunction or this instanceof EvalCall }
}
from EvalUse eval
select eval, "Do not use eval or the Function constructor."