mirror of
https://github.com/github/codeql.git
synced 2026-08-03 00:43:00 +02:00
11 lines
344 B
Plaintext
11 lines
344 B
Plaintext
import semmle.code.csharp.security.dataflow.flowsinks.ExternalLocationSink
|
|
import semmle.code.csharp.commons.Diagnostics
|
|
|
|
from ExternalLocationSink sink
|
|
where sink.getLocation().getFile().fromSource()
|
|
select sink, sink.getExpr()
|
|
|
|
query predicate compilationErrors(CompilerError e) { any() }
|
|
|
|
query predicate methodCalls(MethodCall m) { any() }
|