Parse X-Forwarded-For in http request

This commit is contained in:
世界 2022-08-23 15:51:16 +08:00
parent 8b9965b735
commit 8d23d189c3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 26 additions and 0 deletions

22
protocol/http/addr.go Normal file
View file

@ -0,0 +1,22 @@
package http
import (
"net/http"
"strings"
M "github.com/sagernet/sing/common/metadata"
)
func SourceAddress(request *http.Request) M.Socksaddr {
address := M.ParseSocksaddr(request.RemoteAddr)
forwardFrom := request.Header.Get("X-Forwarded-For")
if forwardFrom != "" {
for _, from := range strings.Split(forwardFrom, ",") {
originAddr := M.ParseAddr(from)
if originAddr.IsValid() {
address.Addr = originAddr
}
}
}
return address
}

View file

@ -48,6 +48,10 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
}
}
if sourceAddress := SourceAddress(request); sourceAddress.IsValid() {
metadata.Source = sourceAddress
}
if request.Method == "CONNECT" {
portStr := request.URL.Port()
if portStr == "" {