3x-ui/web/middleware/domainValidator.go
civisrom b7c471e8f2 new file: xray/log_writer.go
new file:   xray/process.go
	new file:   xray/traffic.go
2025-02-04 14:38:53 +03:00

25 lines
430 B
Go

package middleware
import (
"net"
"net/http"
"strings"
"github.com/gin-gonic/gin"
)
func DomainValidatorMiddleware(domain string) gin.HandlerFunc {
return func(c *gin.Context) {
host := c.Request.Host
if colonIndex := strings.LastIndex(host, ":"); colonIndex != -1 {
host, _, _ = net.SplitHostPort(c.Request.Host)
}
if host != domain {
c.AbortWithStatus(http.StatusForbidden)
return
}
c.Next()
}
}