Update Parse.go to add empty pass

This commit is contained in:
sunrise 2025-02-13 12:34:54 +08:00 committed by GitHub
parent e2c8dd8b1f
commit 20f985c6c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,6 +63,7 @@ func ParsePass(Info *HostInfo) {
PwdList = append(PwdList, pass) PwdList = append(PwdList, pass)
} }
} }
PwdList = append(PwdList, "")
Passwords = PwdList Passwords = PwdList
} }
} }