We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a866b commit 03d44fdCopy full SHA for 03d44fd
.github/codeql/custom-queries-javascript/ShellSanitizer.ql
@@ -7,7 +7,7 @@ module UtilSanitizerConfig implements DataFlow::ConfigSig {
7
* Treat calls to Util.sanitizeShellArg(...) as a barrier/sanitizer for dataflow
8
*/
9
predicate isBarrier(DataFlow::Node nd) {
10
- nd.(DataFlow::CallNode).getCalleeName() = "Util.sanitizeShellArg"
+ nd.(DataFlow::CallNode).getCalleeName() = "sanitizeShellArg"
11
}
12
/** Minimal stubs required by ConfigSig (false should be no extra action). */
13
predicate isSource(DataFlow::Node n) { false }
0 commit comments