mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
16 lines
288 B
Plaintext
16 lines
288 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import csharp
|
|
import Common
|
|
import 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
|