mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
import javascript
|
|
|
|
class Configuration extends TaintTracking::Configuration {
|
|
Configuration() { this = "PromiseFlowTestingConfig" }
|
|
|
|
override predicate isSource(DataFlow::Node source) {
|
|
source.getEnclosingExpr().getStringValue() = "source"
|
|
}
|
|
|
|
override predicate isSink(DataFlow::Node sink) {
|
|
any(DataFlow::InvokeNode call | call.getCalleeName() = "sink").getAnArgument() = sink
|
|
}
|
|
|
|
// When the source code states that "foo" is being read, "bar" is additionally being read.
|
|
override predicate isAdditionalLoadStep(DataFlow::Node pred, DataFlow::Node succ, string prop) {
|
|
exists(DataFlow::PropRead read | read = succ |
|
|
read.getBase() = pred and
|
|
read.getPropertyName() = "foo"
|
|
) and
|
|
prop = "bar"
|
|
}
|
|
|
|
// calling .copy("foo", "bar") actually moves a property from "foo" to "bar".
|
|
override predicate isAdditionalLoadStoreStep(
|
|
DataFlow::Node pred, DataFlow::Node succ, string loadProp, string storeProp
|
|
) {
|
|
exists(DataFlow::MethodCallNode call |
|
|
call.getMethodName() = "copy" and call = succ and pred = call.getReceiver()
|
|
|
|
|
call.getArgument(0).mayHaveStringValue(loadProp) and
|
|
call.getArgument(1).mayHaveStringValue(storeProp)
|
|
)
|
|
}
|
|
}
|
|
|
|
from DataFlow::Node pred, DataFlow::Node succ, Configuration cfg
|
|
where cfg.hasFlow(pred, succ)
|
|
select pred, succ
|