forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomAbstractValueDefinitions.ql
More file actions
43 lines (33 loc) · 1.47 KB
/
CustomAbstractValueDefinitions.ql
File metadata and controls
43 lines (33 loc) · 1.47 KB
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
39
40
41
42
43
import javascript
import semmle.javascript.dataflow.InferredTypes
import semmle.javascript.dataflow.internal.FlowSteps as FlowSteps
import semmle.javascript.dataflow.internal.AbstractPropertiesImpl as AbstractPropertiesImpl
import semmle.javascript.dataflow.CustomAbstractValueDefinitions
class MyCustomAbstractValueDefinition extends CustomAbstractValueDefinition {
DataFlow::ValueNode node;
MyCustomAbstractValueDefinition() {
DataFlow::valueNode(this) = node and
node instanceof DataFlow::ObjectLiteralNode and
exists(DataFlow::PropWrite pwn |
pwn.writes(node, "custom", any(BooleanLiteral l | l.getValue() = "true").flow())
)
}
override boolean getBooleanValue() { result = true }
override predicate isCoercibleToNumber() { none() }
override PrimitiveAbstractValue toPrimitive() { result = TAbstractOtherString() }
override InferredType getType() { result = TTObject() }
override predicate shouldTrackProperties() {
exists(DataFlow::PropWrite pwn |
pwn.writes(node, "trackProps", any(BooleanLiteral l | l.getValue() = "true").flow())
)
}
}
boolean flowProps(AbstractValue val) {
if FlowSteps::shouldTrackProperties(val) then result = true else result = false
}
boolean typeProps(AbstractValue val) {
if AbstractPropertiesImpl::shouldTrackProperties(val) then result = true else result = false
}
from MyCustomAbstractValueDefinition def, AbstractValue val
where def.getAbstractValue() = val
select def, val, flowProps(val), typeProps(val)