Fix V2Ray transport path validation behavior

This commit is contained in:
世界 2023-12-23 10:54:25 +08:00
parent a0cab4f563
commit 082e3fb8df
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 76 additions and 40 deletions

View file

@ -65,7 +65,7 @@ func (s *Server) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
s.invalidRequest(writer, request, http.StatusBadRequest, E.New("bad host: ", host))
return
}
if !strings.HasPrefix(request.URL.Path, s.path) {
if request.URL.Path != s.path {
s.invalidRequest(writer, request, http.StatusNotFound, E.New("bad path: ", request.URL.Path))
return
}