mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import csharp
|
|
import Common
|
|
import utils.test.ProvenancePathGraph::ShowProvenance<Taint::PathNode, Taint::PathGraph>
|
|
|
|
module Taint = TaintTracking::Global<FlowConfig>;
|
|
|
|
from Taint::PathNode source, Taint::PathNode sink, string s
|
|
where
|
|
Taint::flowPath(source, sink) and
|
|
s = sink.toString()
|
|
select sink, source, sink, s
|