File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ private newtype WebViewOrSettings =
6565 IsWebView ( ) or
6666 IsSettings ( )
6767
68- private module WebViewDisallowContentAccessConfiguration implements DataFlow:: StateConfigSig {
68+ private module WebViewDisallowContentAccessConfig implements DataFlow:: StateConfigSig {
6969 class FlowState = WebViewOrSettings ;
7070
7171 predicate isSource ( DataFlow:: Node node , FlowState state ) {
@@ -102,7 +102,7 @@ private module WebViewDisallowContentAccessConfiguration implements DataFlow::St
102102}
103103
104104module WebViewDisallowContentAccessFlow =
105- TaintTracking:: MakeWithState< WebViewDisallowContentAccessConfiguration > ;
105+ TaintTracking:: MakeWithState< WebViewDisallowContentAccessConfig > ;
106106
107107from Expr e
108108where
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class TrustAllHostnameVerifier extends RefType {
4444/**
4545 * A configuration to model the flow of a `TrustAllHostnameVerifier` to a `set(Default)HostnameVerifier` call.
4646 */
47- private module TrustAllHostnameVerifierConfiguration implements DataFlow:: ConfigSig {
47+ private module TrustAllHostnameVerifierConfig implements DataFlow:: ConfigSig {
4848 predicate isSource ( DataFlow:: Node source ) {
4949 source .asExpr ( ) .( ClassInstanceExpr ) .getConstructedType ( ) instanceof TrustAllHostnameVerifier
5050 }
@@ -77,7 +77,7 @@ private module TrustAllHostnameVerifierConfiguration implements DataFlow::Config
7777 }
7878}
7979
80- module TrustAllHostnameVerifierFlow = DataFlow:: Make< TrustAllHostnameVerifierConfiguration > ;
80+ module TrustAllHostnameVerifierFlow = DataFlow:: Make< TrustAllHostnameVerifierConfig > ;
8181
8282import TrustAllHostnameVerifierFlow:: PathGraph
8383
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ import semmle.code.java.dataflow.FlowSources
1616import semmle.code.java.dataflow.TaintTracking
1717import semmle.code.java.security.XPath
1818
19- private module XPathInjectionConfiguration implements DataFlow:: ConfigSig {
19+ private module XPathInjectionConfig implements DataFlow:: ConfigSig {
2020 predicate isSource ( DataFlow:: Node source ) { source instanceof RemoteFlowSource }
2121
2222 predicate isSink ( DataFlow:: Node sink ) { sink instanceof XPathInjectionSink }
2323}
2424
25- module XPathInjectionFlow = TaintTracking:: Make< XPathInjectionConfiguration > ;
25+ module XPathInjectionFlow = TaintTracking:: Make< XPathInjectionConfig > ;
2626
2727import XPathInjectionFlow:: PathGraph
2828
You can’t perform that action at this time.
0 commit comments