Skip to content

Commit 3d033fd

Browse files
committed
Fix SqlConcatenated
1 parent fcd53a8 commit 3d033fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/Security/CWE/CWE-089/SqlConcatenated.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ where
4848
UncontrolledStringBuilderSourceFlow::flow(DataFlow::exprNode(sbv.getToStringCall()), query)
4949
)
5050
) and
51-
not queryTaintedBy(query, _, _)
51+
not queryIsTaintedBy(query, _, _)
5252
select query, "Query built by concatenation with $@, which may be untrusted.", uncontrolled,
5353
"this expression"

0 commit comments

Comments
 (0)