mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 12:49:20 +02:00
Stop at '?' when reading HTTP PATH before shunting
This commit is contained in:
parent
819717d278
commit
100edc370b
|
@ -458,7 +458,7 @@ func (s *Server) fallback(ctx context.Context, sid errors.ExportOption, err erro
|
||||||
if k == '\r' || k == '\n' { // avoid logging \r or \n
|
if k == '\r' || k == '\n' { // avoid logging \r or \n
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if k == ' ' {
|
if k == '?' || k == ' ' {
|
||||||
path = string(firstBytes[i:j])
|
path = string(firstBytes[i:j])
|
||||||
newError("realPath = " + path).AtInfo().WriteToLog(sid)
|
newError("realPath = " + path).AtInfo().WriteToLog(sid)
|
||||||
if pfb[path] == nil {
|
if pfb[path] == nil {
|
||||||
|
|
|
@ -293,7 +293,7 @@ func (h *Handler) Process(ctx context.Context, network net.Network, connection i
|
||||||
if k == '\r' || k == '\n' { // avoid logging \r or \n
|
if k == '\r' || k == '\n' { // avoid logging \r or \n
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if k == ' ' {
|
if k == '?' || k == ' ' {
|
||||||
path = string(firstBytes[i:j])
|
path = string(firstBytes[i:j])
|
||||||
newError("realPath = " + path).AtInfo().WriteToLog(sid)
|
newError("realPath = " + path).AtInfo().WriteToLog(sid)
|
||||||
if pfb[path] == nil {
|
if pfb[path] == nil {
|
||||||
|
|
Loading…
Reference in New Issue