-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathcsrf_test.go
544 lines (453 loc) · 14.9 KB
/
csrf_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
package csrf
import (
"fmt"
"net/http"
"net/http/httptest"
"strings"
"testing"
)
var testKey = []byte("keep-it-secret-keep-it-safe-----")
var testHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
// TestProtect is a high-level test to make sure the middleware returns the
// wrapped handler with a 200 OK status.
func TestProtect(t *testing.T) {
s := http.NewServeMux()
s.HandleFunc("/", testHandler)
r := createRequest("GET", "/", false)
rr := httptest.NewRecorder()
p := Protect(testKey)(s)
p.ServeHTTP(rr, r)
if rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
if rr.Header().Get("Set-Cookie") == "" {
t.Fatalf("cookie not set: got %q", rr.Header().Get("Set-Cookie"))
}
cookie := rr.Header().Get("Set-Cookie")
if !strings.Contains(cookie, "HttpOnly") || !strings.Contains(cookie,
"Secure") {
t.Fatalf("cookie does not default to Secure & HttpOnly: got %v", cookie)
}
}
// TestCookieOptions is a test to make sure the middleware correctly sets cookie options
func TestCookieOptions(t *testing.T) {
s := http.NewServeMux()
s.HandleFunc("/", testHandler)
r := createRequest("GET", "/", false)
rr := httptest.NewRecorder()
p := Protect(testKey, CookieName("nameoverride"), Secure(false), HttpOnly(false), Path("/pathoverride"), Domain("domainoverride"), MaxAge(173))(s)
p.ServeHTTP(rr, r)
if rr.Header().Get("Set-Cookie") == "" {
t.Fatalf("cookie not set: got %q", rr.Header().Get("Set-Cookie"))
}
cookie := rr.Header().Get("Set-Cookie")
if strings.Contains(cookie, "HttpOnly") {
t.Fatalf("cookie does not respect HttpOnly option: got %v do not want HttpOnly", cookie)
}
if strings.Contains(cookie, "Secure") {
t.Fatalf("cookie does not respect Secure option: got %v do not want Secure", cookie)
}
if !strings.Contains(cookie, "nameoverride=") {
t.Fatalf("cookie does not respect CookieName option: got %v want %v", cookie, "nameoverride=")
}
if !strings.Contains(cookie, "Domain=domainoverride") {
t.Fatalf("cookie does not respect Domain option: got %v want %v", cookie, "Domain=domainoverride")
}
if !strings.Contains(cookie, "Max-Age=173") {
t.Fatalf("cookie does not respect MaxAge option: got %v want %v", cookie, "Max-Age=173")
}
}
// Test that idempotent methods return a 200 OK status and that non-idempotent
// methods return a 403 Forbidden status when a CSRF cookie is not present.
func TestMethods(t *testing.T) {
s := http.NewServeMux()
s.HandleFunc("/", testHandler)
p := Protect(testKey)(s)
// Test idempontent ("safe") methods
for _, method := range safeMethods {
r := createRequest(method, "/", false)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
if rr.Header().Get("Set-Cookie") == "" {
t.Fatalf("cookie not set: got %q", rr.Header().Get("Set-Cookie"))
}
}
// Test non-idempotent methods (should return a 403 without a cookie set)
nonIdempotent := []string{"POST", "PUT", "DELETE", "PATCH"}
for _, method := range nonIdempotent {
r := createRequest(method, "/", false)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
if rr.Header().Get("Set-Cookie") == "" {
t.Fatalf("cookie not set: got %q", rr.Header().Get("Set-Cookie"))
}
}
}
// Tests for failure if the cookie containing the session does not exist on a
// POST request.
func TestNoCookie(t *testing.T) {
s := http.NewServeMux()
p := Protect(testKey)(s)
// POST the token back in the header.
r := createRequest("POST", "/", false)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed to reject a non-existent cookie: got %v want %v",
rr.Code, http.StatusForbidden)
}
}
// TestBadCookie tests for failure when a cookie header is modified (malformed).
func TestBadCookie(t *testing.T) {
s := http.NewServeMux()
p := Protect(testKey)(s)
var token string
s.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", false)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
// POST the token back in the header.
r = createRequest("POST", "/", false)
// Replace the cookie prefix
badHeader := strings.Replace(cookieName+"=", rr.Header().Get("Set-Cookie"), "_badCookie", -1)
r.Header.Set("Cookie", badHeader)
r.Header.Set("X-CSRF-Token", token)
r.Header.Set("Referer", "http://www.gorillatoolkit.org/")
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed to reject a bad cookie: got %v want %v",
rr.Code, http.StatusForbidden)
}
}
// Responses should set a "Vary: Cookie" header to protect client/proxy caching.
func TestVaryHeader(t *testing.T) {
s := http.NewServeMux()
s.HandleFunc("/", testHandler)
p := Protect(testKey)(s)
r := createRequest("GET", "/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
if rr.Header().Get("Vary") != "Cookie" {
t.Fatalf("vary header not set: got %q want %q", rr.Header().Get("Vary"), "Cookie")
}
}
// TestNoReferer checks that HTTPS requests with no Referer header fail.
func TestNoReferer(t *testing.T) {
s := http.NewServeMux()
s.HandleFunc("/", testHandler)
p := Protect(testKey)(s)
r := createRequest("POST", "https://golang.org/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed reject an empty Referer header: got %v want %v",
rr.Code, http.StatusForbidden)
}
}
// TestBadReferer checks that HTTPS requests with a Referer that does not
// match the request URL correctly fail CSRF validation.
func TestBadReferer(t *testing.T) {
s := http.NewServeMux()
p := Protect(testKey)(s)
var token string
s.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
// POST the token back in the header.
r = createRequest("POST", "/", true)
setCookie(rr, r)
r.Header.Set("X-CSRF-Token", token)
// Set a non-matching Referer header.
r.Header.Set("Referer", "http://golang.org/")
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed reject a non-matching Referer header: got %v want %v",
rr.Code, http.StatusForbidden)
}
}
// TestTrustedReferer checks that HTTPS requests with a Referer that does not
// match the request URL correctly but is a trusted origin pass CSRF validation.
func TestTrustedReferer(t *testing.T) {
testTable := []struct {
trustedOrigin []string
shouldPass bool
}{
{[]string{"golang.org"}, true},
{[]string{"api.example.com", "golang.org"}, true},
{[]string{"http://golang.org"}, false},
{[]string{"https://golang.org"}, false},
{[]string{"http://example.com"}, false},
{[]string{"example.com"}, false},
}
for _, item := range testTable {
t.Run(fmt.Sprintf("TrustedOrigin: %v", item.trustedOrigin), func(t *testing.T) {
s := http.NewServeMux()
p := Protect(testKey, TrustedOrigins(item.trustedOrigin))(s)
var token string
s.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
// POST the token back in the header.
r = createRequest("POST", "/", true)
setCookie(rr, r)
r.Header.Set("X-CSRF-Token", token)
// Set a non-matching Referer header.
r.Header.Set("Referer", "https://golang.org/")
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if item.shouldPass {
if rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
} else {
if rr.Code != http.StatusForbidden {
t.Fatalf("middleware failed reject a non-matching Referer header: got %v want %v",
rr.Code, http.StatusForbidden)
}
}
})
}
}
// Requests with a valid Referer should pass.
func TestWithReferer(t *testing.T) {
s := http.NewServeMux()
p := Protect(testKey)(s)
var token string
s.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
// POST the token back in the header.
r = createRequest("POST", "/", true)
setCookie(rr, r)
r.Header.Set("X-CSRF-Token", token)
r.Header.Set("Referer", "https://www.gorillatoolkit.org/")
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
}
// Requests without a token should fail with ErrNoToken.
func TestNoTokenProvided(t *testing.T) {
var finalErr error
s := http.NewServeMux()
p := Protect(testKey, ErrorHandler(http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
finalErr = FailureReason(r)
})))(s)
var token string
s.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", true)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
// POST the token back in the header.
r = createRequest("POST", "/", true)
setCookie(rr, r)
// By accident we use the wrong header name for the token...
r.Header.Set("X-CSRF-nekot", token)
r.Header.Set("Referer", "https://www.gorillatoolkit.org/")
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if finalErr != nil && finalErr != ErrNoToken {
t.Fatalf("middleware failed to return correct error: got '%v' want '%v'", finalErr, ErrNoToken)
}
}
func setCookie(rr *httptest.ResponseRecorder, r *http.Request) {
r.Header.Set("Cookie", rr.Header().Get("Set-Cookie"))
}
func TestProtectScenarios(t *testing.T) {
tests := []struct {
name string
safeMethod bool
originUntrusted bool
originHTTP bool
originTrusted bool
secureRequest bool
refererTrusted bool
refererUntrusted bool
refererHTTPDowngrade bool
refererRelative bool
tokenValid bool
tokenInvalid bool
want bool
}{
{
name: "safe method pass",
safeMethod: true,
want: true,
},
{
name: "cleartext POST with trusted origin & valid token pass",
originHTTP: true,
tokenValid: true,
want: true,
},
{
name: "cleartext POST with untrusted origin reject",
originUntrusted: true,
tokenValid: true,
},
{
name: "cleartext POST with HTTP origin & invalid token reject",
originHTTP: true,
},
{
name: "cleartext POST without origin with valid token pass",
tokenValid: true,
want: true,
},
{
name: "cleartext POST without origin with invalid token reject",
},
{
name: "TLS POST with HTTP origin & no referer & valid token reject",
tokenValid: true,
secureRequest: true,
originHTTP: true,
},
{
name: "TLS POST without origin and without referer reject",
secureRequest: true,
tokenValid: true,
},
{
name: "TLS POST without origin with untrusted referer reject",
secureRequest: true,
refererUntrusted: true,
tokenValid: true,
},
{
name: "TLS POST without origin with trusted referer & valid token pass",
secureRequest: true,
refererTrusted: true,
tokenValid: true,
want: true,
},
{
name: "TLS POST without origin from _cleartext_ same domain referer with valid token reject",
secureRequest: true,
refererHTTPDowngrade: true,
tokenValid: true,
},
{
name: "TLS POST without origin from relative referer with valid token pass",
secureRequest: true,
refererRelative: true,
tokenValid: true,
want: true,
},
{
name: "TLS POST without origin from relative referer with invalid token reject",
secureRequest: true,
refererRelative: true,
tokenInvalid: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var token string
var flag bool
mux := http.NewServeMux()
mux.Handle("/", http.HandlerFunc(func(_ http.ResponseWriter, r *http.Request) {
token = Token(r)
}))
mux.Handle("/submit", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
flag = true
}))
p := Protect(testKey)(mux)
// Obtain a CSRF cookie via a GET request.
r := createRequest("GET", "/", tt.secureRequest)
rr := httptest.NewRecorder()
p.ServeHTTP(rr, r)
r = createRequest("POST", "/submit", tt.secureRequest)
if tt.safeMethod {
r = createRequest("GET", "/submit", tt.secureRequest)
}
// Set the Origin header
switch {
case tt.originUntrusted:
r.Header.Set("Origin", "http://www.untrusted-origin.org")
case tt.originTrusted:
r.Header.Set("Origin", "https://www.gorillatoolkit.org")
case tt.originHTTP:
r.Header.Set("Origin", "http://www.gorillatoolkit.org")
}
// Set the Referer header
switch {
case tt.refererTrusted:
p = Protect(testKey, TrustedOrigins([]string{"external-trusted-origin.test"}))(mux)
r.Header.Set("Referer", "https://external-trusted-origin.test/foobar")
case tt.refererUntrusted:
r.Header.Set("Referer", "http://www.invalid-referer.org")
case tt.refererHTTPDowngrade:
r.Header.Set("Referer", "http://www.gorillatoolkit.org/foobar")
case tt.refererRelative:
r.Header.Set("Referer", "/foobar")
}
// Set the CSRF token & associated cookie
switch {
case tt.tokenInvalid:
setCookie(rr, r)
r.Header.Set("X-CSRF-Token", "this-is-an-invalid-token")
case tt.tokenValid:
setCookie(rr, r)
r.Header.Set("X-CSRF-Token", token)
}
rr = httptest.NewRecorder()
p.ServeHTTP(rr, r)
if tt.want && rr.Code != http.StatusOK {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
rr.Code, http.StatusOK)
}
if tt.want && !flag {
t.Fatalf("middleware failed to pass to the next handler: got %v want %v",
flag, true)
}
if !tt.want && flag {
t.Fatalf("middleware failed to reject the request: got %v want %v", flag, false)
}
})
}
}
func createRequest(method, path string, useTLS bool) *http.Request {
r := httptest.NewRequest(method, path, nil)
r.Host = "www.gorillatoolkit.org"
if !useTLS {
return PlaintextHTTPRequest(r)
}
return r
}