mirror of
https://github.com/hohn/codeql-lab.git
synced 2025-12-16 09:53:04 +01:00
Clean code for TaintFlowDebugging.ql
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
|
||||
import java
|
||||
import semmle.code.java.dataflow.FlowSources
|
||||
import semmle.code.java.dataflow.TaintTracking
|
||||
|
||||
class ReadLineSource extends Source {
|
||||
ReadLineSource() { this.getMethod().hasQualifiedName("java.io", "Console", "readLine") }
|
||||
@@ -19,13 +20,6 @@ class Sink extends MethodCall {
|
||||
Sink() { this.getMethod().hasQualifiedName("java.sql", "Statement", "executeUpdate") }
|
||||
}
|
||||
|
||||
// from Sink s
|
||||
// select s, ""
|
||||
// from MethodCall mc
|
||||
// where mc.getMethod().getName() = "readLine"
|
||||
// select mc, mc.getMethod().getQualifiedName()
|
||||
import semmle.code.java.dataflow.TaintTracking
|
||||
|
||||
module MyFlowConfiguration implements DataFlow::ConfigSig {
|
||||
predicate isSource(DataFlow::Node source) {
|
||||
//exists(Source s | source.asExpr() = s)
|
||||
@@ -33,7 +27,6 @@ module MyFlowConfiguration implements DataFlow::ConfigSig {
|
||||
}
|
||||
|
||||
predicate isSink(DataFlow::Node sink) {
|
||||
//sink.asExpr() instanceof Sink
|
||||
exists(Sink sink2 | sink.asExpr() = sink2.getArgument(_))
|
||||
//any()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user