Remove unnecessary private markers (CommandLine and Request forgery)

This commit is contained in:
Ed Minnix
2023-03-28 11:34:22 -04:00
parent 0249890747
commit bbf7c67f9b
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ deprecated class RemoteUserInputToArgumentToExecFlowConfig extends TaintTracking
/**
* A taint-tracking configuration for unvalidated user input that is used to run an external process.
*/
private module RemoteUserInputToArgumentToExecFlowConfig implements DataFlow::ConfigSig {
module RemoteUserInputToArgumentToExecFlowConfig implements DataFlow::ConfigSig {
predicate isSource(DataFlow::Node src) { src instanceof RemoteFlowSource }
predicate isSink(DataFlow::Node sink) { sink.asExpr() instanceof ArgumentToExec }

View File

@@ -35,7 +35,7 @@ deprecated class RequestForgeryConfiguration extends TaintTracking::Configuratio
/**
* A taint-tracking configuration characterising request-forgery risks.
*/
private module RequestForgeryConfig implements DataFlow::ConfigSig {
module RequestForgeryConfig implements DataFlow::ConfigSig {
predicate isSource(DataFlow::Node source) {
source instanceof RemoteFlowSource and
// Exclude results of remote HTTP requests: fetching something else based on that result