mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
12 lines
314 B
Plaintext
12 lines
314 B
Plaintext
import java
|
|
import semmle.code.java.dataflow.FlowSources
|
|
import utils.test.InlineFlowTest
|
|
|
|
module Config implements DataFlow::ConfigSig {
|
|
predicate isSource(DataFlow::Node n) { n instanceof RemoteFlowSource }
|
|
|
|
predicate isSink(DataFlow::Node n) { DefaultFlowConfig::isSink(n) }
|
|
}
|
|
|
|
import TaintFlowTest<Config>
|