File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import java
15
15
import ArraySizing
16
16
import semmle.code.java.dataflow.TaintTracking
17
17
18
- private module BoundedFlowSourceConf implements DataFlow:: ConfigSig {
18
+ private module BoundedFlowSourceConfig implements DataFlow:: ConfigSig {
19
19
predicate isSource ( DataFlow:: Node source ) {
20
20
source instanceof BoundedFlowSource and
21
21
// There is not a fixed lower bound which is greater than zero.
@@ -27,7 +27,7 @@ private module BoundedFlowSourceConf implements DataFlow::ConfigSig {
27
27
}
28
28
}
29
29
30
- module BoundedFlowSourceFlow = DataFlow:: Make< BoundedFlowSourceConf > ;
30
+ module BoundedFlowSourceFlow = DataFlow:: Make< BoundedFlowSourceConfig > ;
31
31
32
32
import BoundedFlowSourceFlow:: PathGraph
33
33
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ predicate isSafeSecureCookieSetting(Expr e) {
26
26
)
27
27
}
28
28
29
- private module SecureCookieConfiguration implements DataFlow:: ConfigSig {
29
+ private module SecureCookieConfig implements DataFlow:: ConfigSig {
30
30
predicate isSource ( DataFlow:: Node source ) {
31
31
exists ( MethodAccess ma , Method m | ma .getMethod ( ) = m |
32
32
m .getDeclaringType ( ) instanceof TypeCookie and
@@ -47,7 +47,7 @@ private module SecureCookieConfiguration implements DataFlow::ConfigSig {
47
47
}
48
48
}
49
49
50
- module SecureCookieFlow = DataFlow:: Make< SecureCookieConfiguration > ;
50
+ module SecureCookieFlow = DataFlow:: Make< SecureCookieConfig > ;
51
51
52
52
from MethodAccess add
53
53
where
You can’t perform that action at this time.
0 commit comments