mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
import csharp
|
|
import Common
|
|
|
|
class TTConfig extends TaintTracking::Configuration {
|
|
Config c;
|
|
|
|
TTConfig() { this = c }
|
|
|
|
override predicate isSource(DataFlow::Node source) { c.isSource(source) }
|
|
|
|
override predicate isSink(DataFlow::Node sink) { c.isSink(sink) }
|
|
}
|
|
|
|
from TTConfig c, DataFlow::Node source, DataFlow::Node sink
|
|
where c.hasFlow(source, sink)
|
|
select sink
|