Skip to content

Commit 8250e43

Browse files
Typos and rewording
Co-authored-by: Tony Torralba <[email protected]>
1 parent 58ad8e4 commit 8250e43

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

java/ql/lib/change-notes/2023-03-29-moved-configurations-for-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ category: minorAnalysis
33
---
44
* Added the `TaintedPathQuery.qll` library to provide the `TaintedPathFlow` and `TaintedPathLocalFlow` taint-tracking modules to reason about tainted path vulnerabilities.
55
* Added the `ZipSlipQuery.qll` library to provide the `ZipSlipFlow` taint-tracking module to reason about zip-slip vulnerabilities.
6-
* Added the `InsecureBeanValidationQuery.qll` library to provide the `BeanValidationFlow` taint-tracking module to reason about bean validation vulnerabilities.
6+
* Added the `InsecureBeanValidationQuery.qll` library to provide the `BeanValidationFlow` taint-tracking module to reason about bean validation vulnerabilities.
77
* Added the `XssQuery.qll` library to provide the `XssFlow` taint-tracking module to reason about cross site scripting vulnerabilities.
88
* Added the `LdapInjectionQuery.qll` library to provide the `LdapInjectionFlow` taint-tracking module to reason about LDAP injection vulnerabilities.
99
* Added the `ResponseSplittingQuery.qll` library to provide the `ResponseSplittingFlow` taint-tracking module to reason about response splitting vulnerabilities.

java/ql/lib/semmle/code/java/security/InsecureBeanValidationQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import semmle.code.java.dataflow.FlowSources
66
private import semmle.code.java.dataflow.ExternalFlow
77

88
/**
9-
* A message interpolator Type that perform Expression Language (EL) evaluations
9+
* A message interpolator Type that perform Expression Language (EL) evaluations.
1010
*/
1111
class ELMessageInterpolatorType extends RefType {
1212
ELMessageInterpolatorType() {

java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ module TaintedPathConfig implements DataFlow::ConfigSig {
7777
module TaintedPathFlow = TaintTracking::Global<TaintedPathConfig>;
7878

7979
/**
80-
* A taint-tracking configuration for tracking flow from user input to the creation of a path.
80+
* A taint-tracking configuration for tracking flow from local user input to the creation of a path.
8181
*/
8282
module TaintedPathLocalConfig implements DataFlow::ConfigSig {
8383
predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput }
@@ -100,5 +100,5 @@ module TaintedPathLocalConfig implements DataFlow::ConfigSig {
100100
}
101101
}
102102

103-
/** Tracks flow from user input to the creation of a path. */
103+
/** Tracks flow from local user input to the creation of a path. */
104104
module TaintedPathLocalFlow = TaintTracking::Global<TaintedPathLocalConfig>;

0 commit comments

Comments
 (0)