Skip to content

Commit c7816ea

Browse files
committed
Conform Config modules to naming convention
1 parent 8856730 commit c7816ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

java/ql/src/Security/CWE/CWE-129/ImproperValidationOfArrayConstructionCodeSpecified.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import java
1515
import ArraySizing
1616
import semmle.code.java.dataflow.TaintTracking
1717

18-
private module BoundedFlowSourceConf implements DataFlow::ConfigSig {
18+
private module BoundedFlowSourceConfig implements DataFlow::ConfigSig {
1919
predicate isSource(DataFlow::Node source) {
2020
source instanceof BoundedFlowSource and
2121
// There is not a fixed lower bound which is greater than zero.
@@ -27,7 +27,7 @@ private module BoundedFlowSourceConf implements DataFlow::ConfigSig {
2727
}
2828
}
2929

30-
module BoundedFlowSourceFlow = DataFlow::Make<BoundedFlowSourceConf>;
30+
module BoundedFlowSourceFlow = DataFlow::Make<BoundedFlowSourceConfig>;
3131

3232
import BoundedFlowSourceFlow::PathGraph
3333

java/ql/src/Security/CWE/CWE-614/InsecureCookie.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ predicate isSafeSecureCookieSetting(Expr e) {
2626
)
2727
}
2828

29-
private module SecureCookieConfiguration implements DataFlow::ConfigSig {
29+
private module SecureCookieConfig implements DataFlow::ConfigSig {
3030
predicate isSource(DataFlow::Node source) {
3131
exists(MethodAccess ma, Method m | ma.getMethod() = m |
3232
m.getDeclaringType() instanceof TypeCookie and
@@ -47,7 +47,7 @@ private module SecureCookieConfiguration implements DataFlow::ConfigSig {
4747
}
4848
}
4949

50-
module SecureCookieFlow = DataFlow::Make<SecureCookieConfiguration>;
50+
module SecureCookieFlow = DataFlow::Make<SecureCookieConfig>;
5151

5252
from MethodAccess add
5353
where

0 commit comments

Comments
 (0)