mirror of
https://github.com/github/codeql.git
synced 2026-03-01 05:13:41 +01:00
11 lines
295 B
Plaintext
11 lines
295 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 asc
|