Fix: panic of socks5 client missing authentication

This commit is contained in:
gVisor bot 2020-06-03 18:49:20 +08:00
parent 7206450be0
commit a008bc063f

View file

@ -229,6 +229,10 @@ func ClientHandshake(rw io.ReadWriter, addr Addr, command Command, user *User) (
}
if buf[1] == 2 {
if user == nil {
return nil, ErrAuth
}
// password protocol version
authMsg := &bytes.Buffer{}
authMsg.WriteByte(1)