feat: add -ntp flag to disable TCP supplementary probe

This commit is contained in:
ZacharyZcR
2026-05-12 15:29:08 +08:00
parent 265e855fc3
commit 2e9321837f
6 changed files with 13 additions and 0 deletions
+2
View File
@@ -27,6 +27,7 @@ type Config struct {
ModuleThreadNum int // 模块线程数
DisableBrute bool // 禁用暴力破解
DisablePing bool // 禁用Ping检测
DisableTcpProbe bool // 禁用TCP补充探测
// 扫描模式
Mode string // 扫描模式
@@ -147,6 +148,7 @@ func NewConfig() *Config {
ModuleThreadNum: 10,
DisableBrute: false,
DisablePing: false,
DisableTcpProbe: false,
// 扫描模式
Mode: DefaultScanMode,