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
147
147
}
148
148
}
149
149
150
- module NetworkToBufferSizeConfiguration implements DataFlow:: ConfigSig {
150
+ private module NetworkToBufferSizeConfiguration implements DataFlow:: ConfigSig {
151
151
predicate isSource ( DataFlow:: Node node ) { node .asExpr ( ) instanceof NetworkFunctionCall }
152
152
153
153
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
62
62
deprecated class UntrustedDataToExternalAPIConfig = UntrustedDataToExternalApiConfig ;
63
63
64
64
/** A configuration for tracking flow from `RemoteFlowSource`s to `ExternalApiDataNode`s. */
65
- module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
65
+ private module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
66
66
predicate isSource ( DataFlow:: Node source ) {
67
67
exists ( RemoteFlowSourceFunction remoteFlow |
68
68
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
57
57
deprecated class UntrustedDataToExternalAPIConfig = UntrustedDataToExternalApiConfig ;
58
58
59
59
/** A configuration for tracking flow from `RemoteFlowSource`s to `ExternalApiDataNode`s. */
60
- module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
60
+ private module UntrustedDataToExternalApiConfig implements DataFlow:: ConfigSig {
61
61
predicate isSource ( DataFlow:: Node source ) { source instanceof RemoteFlowSource }
62
62
63
63
predicate isSink ( DataFlow:: Node sink ) { sink instanceof ExternalApiDataNode }
You can’t perform that action at this time.
0 commit comments