Files
codeql/java/ql/test/query-tests/security/CWE-089/semmle/examples/controlledString.ql
Anders Schack-Mulligen e5d7208c12 Java: Adjust a few qltests.
2020-09-01 12:49:09 +02:00

11 lines
429 B
Plaintext

import semmle.code.java.security.ControlledString
from Expr controlled, Method method, int line
where
controlledString(controlled) and
method = controlled.getEnclosingCallable() and
line = controlled.getLocation().getStartLine() - method.getLocation().getStartLine() and
controlled.getCompilationUnit().fromSource() and
controlled.getFile().getStem() = ["Test", "Validation"]
select method.getName(), line, controlled