From fa248ac40e51a0c06c102bb7ded68aaf065c3385 Mon Sep 17 00:00:00 2001 From: sunriseXu <15927176697@163.com> Date: Fri, 21 Feb 2025 20:30:10 +0800 Subject: [PATCH] add empty passwd to list when pwdf is used --- Common/Parse.go | 1 + 1 file changed, 1 insertion(+) diff --git a/Common/Parse.go b/Common/Parse.go index 6524819..11d8fb8 100644 --- a/Common/Parse.go +++ b/Common/Parse.go @@ -88,6 +88,7 @@ func ParsePass(Info *HostInfo) error { pwdList = append(pwdList, pass) } } + pwdList = append(pwdList, "") Passwords = pwdList LogInfo(GetText("load_passwords_from_file", len(passes))) }