mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
15 lines
487 B
Plaintext
15 lines
487 B
Plaintext
/** Definitions related to the Apache Velocity Templating library. */
|
|
|
|
import java
|
|
private import semmle.code.java.dataflow.ExternalFlow
|
|
|
|
private class VelocitySummaryModels extends SummaryModelCsv {
|
|
override predicate row(string row) {
|
|
row =
|
|
[
|
|
"org.apache.velocity.context;AbstractContext;true;put;;;Argument[1];Argument[-1];taint;manual",
|
|
"org.apache.velocity.context;AbstractContext;true;internalPut;;;Argument[1];Argument[-1];taint;manual",
|
|
]
|
|
}
|
|
}
|