mirror of
https://github.com/hohn/codeql-workshop-sql-injection-java.git
synced 2025-12-16 18:53:05 +01:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
/**
|
|
* @name simple test
|
|
* @description simple test
|
|
* @kind problem
|
|
* @id cpp/simple
|
|
* @problem.severity warning
|
|
*/
|
|
|
|
import java
|
|
|
|
from Call read
|
|
where read.getCallee().getName() = "readLine"
|
|
select read, "Found readline"
|