Browse Source

Drain Connection Based on uuid based behavior seed(skip auth info drain for now)

Shelikhoo 5 years ago
parent
commit
ca032dd00f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      proxy/vmess/encoding/server.go

+ 1 - 2
proxy/vmess/encoding/server.go

@@ -152,8 +152,7 @@ func (s *ServerSession) DecodeRequestHeader(reader io.Reader) (*protocol.Request
 
 	user, timestamp, valid := s.userValidator.Get(buffer.Bytes())
 	if !valid {
-		//It is possible that we are under attack described in https://github.com/v2ray/v2ray-core/issues/2523
-		return nil, drainConnection(newError("invalid user"))
+		return nil, newError("invalid user")
 	}
 
 	iv := hashTimestamp(md5.New(), timestamp)