chore: ss2022 converter method verify

This commit is contained in:
metacubex
2023-01-10 21:55:36 +08:00
parent 0f29c267be
commit dd4e4d7559
2 changed files with 15 additions and 3 deletions

View File

@ -268,16 +268,22 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) {
}
var (
cipher = urlSS.User.Username()
password string
cipherRaw = urlSS.User.Username()
cipher string
password string
)
if password, found = urlSS.User.Password(); !found {
dcBuf, _ := encRaw.DecodeString(cipher)
dcBuf, _ := enc.DecodeString(cipherRaw)
cipher, password, found = strings.Cut(string(dcBuf), ":")
if !found {
continue
}
err := VerifyMethod(cipher, password)
if err != nil {
dcBuf, _ := encRaw.DecodeString(cipherRaw)
cipher, password, found = strings.Cut(string(dcBuf), ":")
}
}
ss := make(map[string]any, 10)