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
1515import ArraySizing
1616import 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
3232import BoundedFlowSourceFlow:: PathGraph
3333
Original file line number Diff line number Diff 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
5252from MethodAccess add
5353where
You can’t perform that action at this time.
0 commit comments