File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Likely Bugs/Memory Management Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ deprecated class NetworkToBufferSizeConfiguration extends DataFlow::Configuratio
147147 }
148148}
149149
150- module NetworkToBufferSizeConfiguration implements DataFlow:: ConfigSig {
150+ private module NetworkToBufferSizeConfiguration implements DataFlow:: ConfigSig {
151151 predicate isSource ( DataFlow:: Node node ) { node .asExpr ( ) instanceof NetworkFunctionCall }
152152
153153 predicate isSink ( DataFlow:: Node node ) { node .asExpr ( ) = any ( BufferAccess ba ) .getAccessedLength ( ) }
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ deprecated class UntrustedDataToExternalApiConfig extends TaintTracking::Configu
6262deprecated class UntrustedDataToExternalAPIConfig = UntrustedDataToExternalApiConfig ;
6363
6464/** A configuration for tracking flow from `RemoteFlowSource`s to `ExternalApiDataNode`s. */
65- module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
65+ private module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
6666 predicate isSource ( DataFlow:: Node source ) {
6767 exists ( RemoteFlowSourceFunction remoteFlow |
6868 remoteFlow = source .asExpr ( ) .( Call ) .getTarget ( ) and
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ deprecated class UntrustedDataToExternalApiConfig extends TaintTracking::Configu
5757deprecated class UntrustedDataToExternalAPIConfig = UntrustedDataToExternalApiConfig ;
5858
5959/** A configuration for tracking flow from `RemoteFlowSource`s to `ExternalApiDataNode`s. */
60- module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
60+ private module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
6161 predicate isSource ( DataFlow:: Node source ) { source instanceof RemoteFlowSource }
6262
6363 predicate isSink ( DataFlow:: Node sink ) { sink instanceof ExternalApiDataNode }
You can’t perform that action at this time.
0 commit comments