mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
245 B
Plaintext
8 lines
245 B
Plaintext
import semmle.code.csharp.security.dataflow.CodeInjectionQuery
|
|
|
|
from Sink sink
|
|
where
|
|
sink.getLocation().getFile().fromSource() and
|
|
not sink.getLocation().getFile().getAbsolutePath().matches("%/resources/stubs/%")
|
|
select sink, sink.getExpr()
|