fix: 修复-user/-pwd凭据参数不生效的问题

问题原因:
- Parse()解析凭据后更新globalConfig
- 但BuildConfigFromFlags()创建新Config时使用默认字典
- 导致解析的UserPassPairs等凭据信息被丢弃

修复内容:
1. initialize.go: 将Parse解析的凭据结果应用到新Config
2. credential.go: 单用户密码对时创建UserPassPairs
3. rdp.go: 单凭据测试时跳过指纹识别,减少连接次数
This commit is contained in:
ZacharyZcR
2026-01-15 00:10:50 +08:00
parent 90c7f9c27e
commit e504c22d82
3 changed files with 54 additions and 7 deletions
+20 -6
View File
@@ -39,12 +39,23 @@ func (p *RDPPlugin) Scan(ctx context.Context, info *common.HostInfo, config *com
login.Socks5Proxy = config.Network.Socks5Proxy
}
// 生成测试凭据(提前生成,用于判断是否为单一凭据测试)
credentials := GenerateCredentials("rdp", config)
// 判断是否为单一凭据测试模式(只有1个凭据时跳过指纹识别)
isSingleCredentialTest := len(credentials) == 1
var osInfo map[string]any
// ============================================
// 第一阶段:系统指纹识别(无需密码)
// 单一凭据测试时跳过此阶段,减少连接次数
// ============================================
osInfo := p.probeOSInfo(target, config, state)
if len(osInfo) > 0 {
p.logOSInfo(target, osInfo)
if !isSingleCredentialTest {
osInfo = p.probeOSInfo(target, config, state)
if len(osInfo) > 0 {
p.logOSInfo(target, osInfo)
}
}
// ============================================
@@ -52,6 +63,12 @@ func (p *RDPPlugin) Scan(ctx context.Context, info *common.HostInfo, config *com
// ============================================
if config.DisableBrute {
// 禁用暴力破解,仅返回服务识别结果
if osInfo == nil {
osInfo = p.probeOSInfo(target, config, state)
if len(osInfo) > 0 {
p.logOSInfo(target, osInfo)
}
}
banner := p.buildBanner(osInfo)
common.LogSuccess(i18n.Tr("rdp_service", target, banner))
return &ScanResult{
@@ -61,9 +78,6 @@ func (p *RDPPlugin) Scan(ctx context.Context, info *common.HostInfo, config *com
Banner: banner,
}
}
// 生成测试凭据
credentials := GenerateCredentials("rdp", config)
if len(credentials) == 0 {
credentials = []Credential{
{Username: "administrator", Password: ""},