mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
Docs: Switch to PascalCase.
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import java
|
||||
import semmle.code.java.dataflow.TaintTracking
|
||||
|
||||
module TaintedOGNLConfig implements DataFlow::ConfigSig {
|
||||
module TaintedOgnlConfig implements DataFlow::ConfigSig {
|
||||
predicate isSource(DataFlow::Node source) { /* TBD */ }
|
||||
|
||||
predicate isSink(DataFlow::Node sink) { /* TBD */ }
|
||||
}
|
||||
|
||||
module TaintedOGNLFlow = TaintTracking::Global<TaintedOGNLConfig>;
|
||||
module TaintedOgnlFlow = TaintTracking::Global<TaintedOgnlConfig>;
|
||||
|
||||
from DataFlow::Node source, DataFlow::Node sink
|
||||
where TaintedOGNLFlow::flow(source, sink)
|
||||
where TaintedOgnlFlow::flow(source, sink)
|
||||
select source, "This untrusted input is evaluated as an OGNL expression $@.", sink, "here"
|
||||
|
||||
Reference in New Issue
Block a user