结果扫描不使用PortScan中间件

This commit is contained in:
陈国伟 2021-06-17 13:49:16 +08:00
parent 9f3caf3e98
commit 67f839e7df

View File

@ -27,7 +27,7 @@ namespace FastGithub.Scanner
this.metaService = metaService;
this.contextCollection = contextCollection;
this.logger = logger;
;
this.fullScanDelegate = new PipelineBuilder<GithubContext>(appService, ctx => Task.CompletedTask)
.Use<ConcurrentMiddleware>()
.Use<StatisticsMiddleware>()
@ -37,7 +37,6 @@ namespace FastGithub.Scanner
this.resultScanDelegate = new PipelineBuilder<GithubContext>(appService, ctx => Task.CompletedTask)
.Use<StatisticsMiddleware>()
.Use<PortScanMiddleware>()
.Use<HttpsScanMiddleware>()
.Build();
}