mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
606 B
Plaintext
18 lines
606 B
Plaintext
import javascript
|
|
|
|
class CommandLineFileNameConfiguration extends TaintTracking::Configuration {
|
|
CommandLineFileNameConfiguration() { this = "CommandLineFileNameConfiguration" }
|
|
|
|
override predicate isSource(DataFlow::Node source) {
|
|
DataFlow::globalVarRef("process").getAPropertyRead("argv").getAPropertyRead() = source
|
|
}
|
|
|
|
override predicate isSink(DataFlow::Node sink) {
|
|
DataFlow::moduleMember("fs", "readFile").getACall().getArgument(0) = sink
|
|
}
|
|
}
|
|
|
|
from CommandLineFileNameConfiguration cfg, DataFlow::Node source, DataFlow::Node sink
|
|
where cfg.hasFlow(source, sink)
|
|
select source, sink
|