mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
- cryptutil: add hmac & tests - cryptutil: rename cipher / encoders to be more clear - cryptutil: simplify SecureEncoder interface - cryptutil: renamed NewCipherFromBase64 to NewAEADCipherFromBase64 - cryptutil: move key & random generators to helpers Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
335 lines
11 KiB
Go
335 lines
11 KiB
Go
package middleware
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pomerium/pomerium/internal/cryptutil"
|
|
)
|
|
|
|
func hmacHelperFunc(rawRedirect string, timestamp time.Time, secret string) []byte {
|
|
data := []byte(fmt.Sprint(rawRedirect, timestamp.Unix()))
|
|
return cryptutil.GenerateHMAC(data, secret)
|
|
}
|
|
|
|
func Test_SameDomain(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
name string
|
|
uri string
|
|
rootDomains string
|
|
want bool
|
|
}{
|
|
{"good url redirect", "https://example.com/redirect", "https://example.com", true},
|
|
{"good multilevel", "https://httpbin.a.corp.example.com", "https://auth.b.corp.example.com", true},
|
|
{"good complex tld", "https://httpbin.a.corp.example.co.uk", "https://auth.b.corp.example.co.uk", true},
|
|
{"bad complex tld", "https://httpbin.a.corp.notexample.co.uk", "https://auth.b.corp.example.co.uk", false},
|
|
{"simple sub", "https://auth.example.com", "https://test.example.com", true},
|
|
{"bad domain", "https://auth.example.com/redirect", "https://test.notexample.com", false},
|
|
{"malformed url", "^example.com/redirect", "https://notexample.com", false},
|
|
{"empty domain list", "https://example.com/redirect", ".com", false},
|
|
{"empty domain", "https://example.com/redirect", "", false},
|
|
{"empty url", "", "example.com", false},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
u, _ := url.Parse(tt.uri)
|
|
j, _ := url.Parse(tt.rootDomains)
|
|
if got := SameDomain(u, j); got != tt.want {
|
|
t.Errorf("SameDomain() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_ValidSignature(t *testing.T) {
|
|
t.Parallel()
|
|
goodURL := "https://example.com/redirect"
|
|
secretA := "41aOD7VNtQ1/KZDCGrkYpaHwB50JC1y6BDs2KPRVd2A="
|
|
now := fmt.Sprint(time.Now().Unix())
|
|
rawSig := hmacHelperFunc(goodURL, time.Now(), secretA)
|
|
sig := base64.URLEncoding.EncodeToString(rawSig)
|
|
staleTime := fmt.Sprint(time.Now().Add(-6 * time.Minute).Unix())
|
|
|
|
tests := []struct {
|
|
name string
|
|
redirectURI string
|
|
sigVal string
|
|
timestamp string
|
|
secret string
|
|
want bool
|
|
}{
|
|
{"good signature", goodURL, sig, now, secretA, true},
|
|
{"empty redirect url", "", sig, now, secretA, false},
|
|
{"bad redirect url", "https://google.com^", sig, now, secretA, false},
|
|
{"malformed signature", goodURL, sig + "^", now, "&*&@**($&#(", false},
|
|
{"malformed timestamp", goodURL, sig, now + "^", secretA, false},
|
|
{"stale timestamp", goodURL, sig, staleTime, secretA, false},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := ValidSignature(tt.redirectURI, tt.sigVal, tt.timestamp, tt.secret); got != tt.want {
|
|
t.Errorf("ValidSignature() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSetHeaders(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
securityHeaders map[string]string
|
|
}{
|
|
{"one option", map[string]string{"X-Frame-Options": "DENY"}},
|
|
{"two options", map[string]string{"X-Frame-Options": "DENY", "A": "B"}},
|
|
}
|
|
req, err := http.NewRequest(http.MethodGet, "/", nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
for k, want := range tt.securityHeaders {
|
|
if got := w.Header().Get(k); want != got {
|
|
t.Errorf("want %s got %q", want, got)
|
|
}
|
|
|
|
}
|
|
})
|
|
rr := httptest.NewRecorder()
|
|
handler := SetHeaders(tt.securityHeaders)(testHandler)
|
|
handler.ServeHTTP(rr, req)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateRedirectURI(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
name string
|
|
rootDomain string
|
|
redirectURI string
|
|
status int
|
|
}{
|
|
{"simple", "https://auth.google.com", "redirect_uri=https://b.google.com", http.StatusOK},
|
|
{"deep ok", "https://a.some.really.deep.sub.domain.google.com", "redirect_uri=https://b.some.really.deep.sub.domain.google.com", http.StatusOK},
|
|
{"bad match", "https://auth.aol.com", "redirect_uri=https://test.google.com", http.StatusBadRequest},
|
|
{"bad simple", "https://auth.corp.aol.com", "redirect_uri=https://test.corp.google.com", http.StatusBadRequest},
|
|
{"deep bad", "https://a.some.really.deep.sub.domain.scroogle.com", "redirect_uri=https://b.some.really.deep.sub.domain.google.com", http.StatusBadRequest},
|
|
{"with cname", "https://auth.google.com", "redirect_uri=https://www.google.com", http.StatusOK},
|
|
{"with path", "https://auth.google.com", "redirect_uri=https://www.google.com/path", http.StatusOK},
|
|
{"http mistmatch", "https://auth.google.com", "redirect_uri=http://www.google.com/path", http.StatusOK},
|
|
{"http", "http://auth.google.com", "redirect_uri=http://www.google.com/path", http.StatusOK},
|
|
{"ip", "http://1.1.1.1", "redirect_uri=http://8.8.8.8", http.StatusBadRequest},
|
|
{"redirect get param not set", "https://auth.google.com", "not_redirect_uri!=https://b.google.com", http.StatusBadRequest},
|
|
{"malformed, invalid get params", "https://auth.google.com", "redirect_uri=https://%zzzzz", http.StatusBadRequest},
|
|
{"malformed, invalid url", "https://auth.google.com", "redirect_uri=https://accounts.google.^", http.StatusBadRequest},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{
|
|
Method: http.MethodGet,
|
|
URL: &url.URL{RawQuery: tt.redirectURI},
|
|
}
|
|
testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("Hi"))
|
|
})
|
|
rr := httptest.NewRecorder()
|
|
u, _ := url.Parse(tt.rootDomain)
|
|
handler := ValidateRedirectURI(u)(testHandler)
|
|
handler.ServeHTTP(rr, req)
|
|
if rr.Code != tt.status {
|
|
t.Errorf("Status code differs. got %d want %d", rr.Code, tt.status)
|
|
t.Errorf("%s", rr.Body)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateClientSecret(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
name string
|
|
sharedSecret string
|
|
clientGetValue string
|
|
clientHeaderValue string
|
|
status int
|
|
}{
|
|
{"simple", "secret", "secret", "secret", http.StatusOK},
|
|
{"missing get param, valid header", "secret", "", "secret", http.StatusOK},
|
|
{"missing both", "secret", "", "", http.StatusBadRequest},
|
|
{"simple bad", "bad-secret", "secret", "", http.StatusBadRequest},
|
|
{"malformed, invalid hex digits", "secret", "%zzzzz", "", http.StatusBadRequest},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{
|
|
Method: http.MethodGet,
|
|
Header: http.Header{"X-Client-Secret": []string{tt.clientHeaderValue}},
|
|
URL: &url.URL{RawQuery: fmt.Sprintf("shared_secret=%s", tt.clientGetValue)},
|
|
}
|
|
testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("Hi"))
|
|
})
|
|
rr := httptest.NewRecorder()
|
|
handler := ValidateClientSecret(tt.sharedSecret)(testHandler)
|
|
handler.ServeHTTP(rr, req)
|
|
if rr.Code != tt.status {
|
|
t.Errorf("Status code differs. got %d want %d", rr.Code, tt.status)
|
|
t.Errorf("%s", rr.Body)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateSignature(t *testing.T) {
|
|
t.Parallel()
|
|
secretA := "41aOD7VNtQ1/KZDCGrkYpaHwB50JC1y6BDs2KPRVd2A="
|
|
now := fmt.Sprint(time.Now().Unix())
|
|
goodURL := "https://example.com/redirect"
|
|
rawSig := hmacHelperFunc(goodURL, time.Now(), secretA)
|
|
sig := base64.URLEncoding.EncodeToString(rawSig)
|
|
staleTime := fmt.Sprint(time.Now().Add(-6 * time.Minute).Unix())
|
|
|
|
tests := []struct {
|
|
name string
|
|
sharedSecret string
|
|
redirectURI string
|
|
sig string
|
|
ts string
|
|
status int
|
|
}{
|
|
{"valid signature", secretA, goodURL, sig, now, http.StatusOK},
|
|
{"stale signature", secretA, goodURL, sig, staleTime, http.StatusBadRequest},
|
|
{"malformed", secretA, goodURL, "%zzzzz", now, http.StatusBadRequest},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
v := url.Values{}
|
|
v.Set("redirect_uri", tt.redirectURI)
|
|
v.Set("ts", tt.ts)
|
|
v.Set("sig", tt.sig)
|
|
|
|
req := &http.Request{
|
|
Method: http.MethodGet,
|
|
URL: &url.URL{RawQuery: v.Encode()}}
|
|
if tt.name == "malformed" {
|
|
req.URL.RawQuery = "sig=%zzzzz"
|
|
}
|
|
|
|
testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("Hi"))
|
|
})
|
|
rr := httptest.NewRecorder()
|
|
handler := ValidateSignature(tt.sharedSecret)(testHandler)
|
|
handler.ServeHTTP(rr, req)
|
|
if rr.Code != tt.status {
|
|
t.Errorf("Status code differs. got %d want %d", rr.Code, tt.status)
|
|
t.Errorf("%s", rr.Body)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestHealthCheck(t *testing.T) {
|
|
t.Parallel()
|
|
testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("Hi"))
|
|
})
|
|
tests := []struct {
|
|
name string
|
|
method string
|
|
clientPath string
|
|
serverPath string
|
|
|
|
wantStatus int
|
|
}{
|
|
{"good - Get", http.MethodGet, "/ping", "/ping", http.StatusOK},
|
|
{"good - Head", http.MethodHead, "/ping", "/ping", http.StatusOK},
|
|
{"bad - Options", http.MethodOptions, "/ping", "/ping", http.StatusMethodNotAllowed},
|
|
{"bad - Put", http.MethodPut, "/ping", "/ping", http.StatusMethodNotAllowed},
|
|
{"bad - Post", http.MethodPost, "/ping", "/ping", http.StatusMethodNotAllowed},
|
|
{"bad - route miss", http.MethodGet, "/not-ping", "/ping", http.StatusOK},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := httptest.NewRequest(tt.method, tt.clientPath, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
handler := Healthcheck(tt.serverPath, string("OK"))(testHandler)
|
|
handler.ServeHTTP(w, r)
|
|
if w.Code != tt.wantStatus {
|
|
t.Errorf("code differs. got %d want %d body: %s", w.Code, tt.wantStatus, w.Body.String())
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// Redirect to a fixed URL
|
|
type handlerHelper struct {
|
|
msg string
|
|
}
|
|
|
|
func (rh *handlerHelper) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte(rh.msg))
|
|
}
|
|
|
|
func handlerHelp(msg string) http.Handler {
|
|
return &handlerHelper{msg}
|
|
}
|
|
func TestValidateHost(t *testing.T) {
|
|
validHostFunc := func(host string) bool {
|
|
return host == "google.com"
|
|
}
|
|
|
|
validHostHandler := handlerHelp("google")
|
|
|
|
tests := []struct {
|
|
name string
|
|
isValidHost func(string) bool
|
|
validHostHandler http.Handler
|
|
clientPath string
|
|
expected []byte
|
|
status int
|
|
}{
|
|
{"good", validHostFunc, validHostHandler, "google.com", []byte("google"), 200},
|
|
{"no route", validHostFunc, validHostHandler, "googles.com", []byte("google"), 404},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req, err := http.NewRequest(http.MethodGet, tt.clientPath, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
rr := httptest.NewRecorder()
|
|
|
|
var testHandler http.Handler
|
|
if tt.isValidHost(tt.clientPath) {
|
|
tt.validHostHandler.ServeHTTP(rr, req)
|
|
testHandler = tt.validHostHandler
|
|
} else {
|
|
testHandler = handlerHelp("ok")
|
|
}
|
|
handler := ValidateHost(tt.isValidHost)(testHandler)
|
|
handler.ServeHTTP(rr, req)
|
|
|
|
if rr.Code != tt.status {
|
|
t.Errorf("Status code differs. got %d want %d", rr.Code, tt.status)
|
|
t.Errorf("%s", rr.Body)
|
|
}
|
|
|
|
})
|
|
}
|
|
}
|