| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package controller
- import (
- "net/http"
- "net/http/httptest"
- "testing"
- "github.com/gin-gonic/gin"
- )
- func TestGetRemoteIpIgnoresForwardedHeadersFromUntrustedRemote(t *testing.T) {
- gin.SetMode(gin.TestMode)
- c, _ := gin.CreateTestContext(httptest.NewRecorder())
- c.Request = httptest.NewRequest(http.MethodGet, "/", nil)
- c.Request.RemoteAddr = "203.0.113.10:12345"
- c.Request.Header.Set("X-Real-IP", "198.51.100.9")
- c.Request.Header.Set("X-Forwarded-For", "198.51.100.8")
- if got := getRemoteIp(c); got != "203.0.113.10" {
- t.Fatalf("remote IP = %q, want request remote address", got)
- }
- }
- func TestGetRemoteIpHonorsForwardedHeadersFromTrustedLoopbackProxy(t *testing.T) {
- gin.SetMode(gin.TestMode)
- c, _ := gin.CreateTestContext(httptest.NewRecorder())
- c.Request = httptest.NewRequest(http.MethodGet, "/", nil)
- c.Request.RemoteAddr = "127.0.0.1:12345"
- c.Request.Header.Set("X-Forwarded-For", "198.51.100.8, 127.0.0.1")
- if got := getRemoteIp(c); got != "198.51.100.8" {
- t.Fatalf("remote IP = %q, want forwarded client IP", got)
- }
- }
- func TestResolveHostPrefersForwardedHostOverRealIP(t *testing.T) {
- gin.SetMode(gin.TestMode)
- c, _ := gin.CreateTestContext(httptest.NewRecorder())
- c.Request = httptest.NewRequest(http.MethodGet, "/", nil)
- c.Request.Host = "panel.example.com:2053"
- c.Request.RemoteAddr = "127.0.0.1:12345"
- c.Request.Header.Set("X-Forwarded-Host", "sub.example.net:443")
- c.Request.Header.Set("X-Real-IP", "198.51.100.7")
- if got := resolveHost(c); got != "sub.example.net" {
- t.Fatalf("resolveHost = %q, want X-Forwarded-Host", got)
- }
- }
- func TestResolveHostIgnoresRealIPFromTrustedProxy(t *testing.T) {
- gin.SetMode(gin.TestMode)
- c, _ := gin.CreateTestContext(httptest.NewRecorder())
- c.Request = httptest.NewRequest(http.MethodGet, "/", nil)
- c.Request.Host = "panel.example.com:2053"
- c.Request.RemoteAddr = "127.0.0.1:12345"
- c.Request.Header.Set("X-Real-IP", "198.51.100.7")
- if got := resolveHost(c); got != "panel.example.com" {
- t.Fatalf("resolveHost = %q, want request host (not X-Real-IP)", got)
- }
- }
|