mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
348 B
Plaintext
14 lines
348 B
Plaintext
import semmle.python.dataflow.new.DataFlow
|
|
|
|
/**
|
|
* A configuration to find all flows.
|
|
* To be used on tiny programs.
|
|
*/
|
|
class AllFlowsConfig extends DataFlow::Configuration {
|
|
AllFlowsConfig() { this = "AllFlowsConfig" }
|
|
|
|
override predicate isSource(DataFlow::Node node) { any() }
|
|
|
|
override predicate isSink(DataFlow::Node node) { any() }
|
|
}
|