mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
10 lines
291 B
Plaintext
10 lines
291 B
Plaintext
import csharp
|
|
import Common
|
|
|
|
from MyFlowSource source, Access sink, string s
|
|
where
|
|
TaintTracking::localTaintStep+(source, DataFlow::exprNode(sink)) and
|
|
exists(MethodCall mc | mc.getTarget().getName() = "Check" and mc.getAnArgument() = sink) and
|
|
s = sink.toString()
|
|
select s order by s
|