We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e1a00 commit d7ad5a0Copy full SHA for d7ad5a0
python/ql/src/meta/alerts/TaintSinks.ql
@@ -58,6 +58,10 @@ DataFlow::Node relevantTaintSink(string kind) {
58
or
59
kind = "RegexInjection" and result instanceof RegexInjection::Sink
60
61
+ kind = "NoSqlInjection (string sink)" and result instanceof NoSqlInjection::StringSink
62
+ or
63
+ kind = "NoSqlInjection (dict sink)" and result instanceof NoSqlInjection::DictSink
64
65
kind = "ServerSideRequestForgery" and result instanceof ServerSideRequestForgery::Sink
66
67
kind = "SqlInjection" and result instanceof SqlInjection::Sink
0 commit comments