mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Parse X-Forwarded-For in http request
This commit is contained in:
parent
8b9965b735
commit
8d23d189c3
2 changed files with 26 additions and 0 deletions
22
protocol/http/addr.go
Normal file
22
protocol/http/addr.go
Normal 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
|
||||||
|
}
|
|
@ -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" {
|
if request.Method == "CONNECT" {
|
||||||
portStr := request.URL.Port()
|
portStr := request.URL.Port()
|
||||||
if portStr == "" {
|
if portStr == "" {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue