Fix socks5 handshake

This commit is contained in:
世界 2023-09-25 17:28:53 +08:00
parent 494f88c9b8
commit 5b05b5c147
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -171,6 +171,9 @@ func HandleConnection0(ctx context.Context, conn net.Conn, version byte, authent
if err != nil {
return err
}
if response.Status != socks5.UsernamePasswordStatusSuccess {
return E.New("socks5: authentication failed, username=", usernamePasswordAuthRequest.Username, ", password=", usernamePasswordAuthRequest.Password)
}
}
request, err := socks5.ReadRequest(conn)
if err != nil {