mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
8 lines
193 B
Plaintext
8 lines
193 B
Plaintext
import semmle.code.csharp.security.dataflow.flowsinks.Html
|
|
|
|
from HtmlSink sink, File f
|
|
where
|
|
sink.getLocation().getFile() = f and
|
|
(f.fromSource() or f.getExtension() = "razor")
|
|
select sink
|