This repository has been archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
handle.go
583 lines (495 loc) · 14.8 KB
/
handle.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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
package main
import (
"errors"
"net/http"
"strings"
"syscall"
"time"
"golang.org/x/net/publicsuffix"
)
func faviconHandler(w http.ResponseWriter, r *http.Request) {
if _, err := w.Write(favicon); err != nil {
Error.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusInternalServerError,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageFailedHTTPResponse,
)
}
}
func challengeHandle(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case http.MethodGet:
renderHandle(w, r)
case http.MethodPost:
validateHandle(w, r)
case http.MethodOptions:
// OPTIONS is needed for CORS to function properly, we allow all OPTIONS requests when specific header is passed
if strings.EqualFold(r.Header.Get("X-Allow-OPTIONS"), "TRUE") {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusAccepted,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageAllowOptionsRequest,
)
return
}
fallthrough
default:
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusMethodNotAllowed,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageOnlyGetOrPostMethod,
)
// set default allowed headers
allowHeader := []string{
http.MethodGet,
http.MethodPost,
}
if strings.EqualFold(r.Header.Get("X-Allow-OPTIONS"), "TRUE") {
// add OPTIONS to allowed headers
allowHeader = append(allowHeader, http.MethodOptions)
}
// return proper HTTP error with headers
w.Header().Set(
"Allow",
strings.Join(allowHeader, ", "),
)
http.Error(w, messageOnlyGetOrPostMethod, http.StatusMethodNotAllowed)
return
}
}
func renderHandle(w http.ResponseWriter, r *http.Request) {
// allow only GET method
if r.Method != http.MethodGet {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusMethodNotAllowed,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageOnlyGetMethod,
)
// return proper HTTP error with headers
w.Header().Set("Allow", http.MethodGet)
http.Error(w, messageOnlyGetMethod, http.StatusMethodNotAllowed)
return
}
// define domain for a cookie
domain := r.Header.Get("X-Forwarded-Host")
// compute wildcard domain cookie when appropriate configuration header present
if strings.EqualFold(r.Header.Get("X-TLDPlusOne"), "TRUE") {
if val, err := publicsuffix.EffectiveTLDPlusOne(r.Header.Get("X-Forwarded-Host")); err == nil {
domain = "." + val
}
}
// clean old invalid cookies
http.SetCookie(w, &http.Cookie{
Domain: domain,
Name: authenticationName,
Value: "",
Expires: time.Unix(0, 0),
})
http.SetCookie(w, &http.Cookie{
Name: authenticationName,
Value: "",
Expires: time.Unix(0, 0),
})
// set to True when captcha requested with lite template flag
var isLiteTemplate bool
// check for lite template header
if strings.EqualFold(r.Header.Get("X-LiteTemplate"), "TRUE") {
isLiteTemplate = true
}
// get random captcha from memory
challenge, b64str := captchaDB.GetRandomKeyValue()
// set how long cookie is valid
challengeTTL := time.Duration(challengeExpirationSeconds * nanoSecondsInSecond)
// generate expire date for captcha hash
expires := time.Now().Add(challengeTTL)
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', TTL:'%s'\n",
http.StatusOK,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, challengeTTL,
)
// populate struct with needed data for template render
data := struct {
Base64 string
TextHash string
ChallengeKey string
ResponseKey string
ImageID string
}{
// base64 encoded JPEG for data:URI
Base64: b64str,
// set captcha text hash
TextHash: challenge,
// form input names
ChallengeKey: challengeKey,
ResponseKey: responseKey,
ImageID: imageID,
}
// store captcha hash to db
db.Store(data.TextHash,
captchaDBRecord{
Domain: domain,
UserAgent: r.UserAgent(),
Expires: expires,
Address: r.Header.Get("X-Real-IP"),
},
)
// https://www.fastly.com/blog/clearing-cache-browser
// https://www.w3.org/TR/clear-site-data/
w.Header().Set("Clear-Site-Data", `"cache"`)
var err error
// render captcha template
if isLiteTemplate {
err = captchaLiteTemplate.Execute(w, data)
} else {
err = captchaHTMLTemplate.Execute(w, data)
}
if err != nil {
// ignore buffer errors
if errors.Is(err, syscall.EPIPE) {
return
}
Error.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', %s\n",
http.StatusInternalServerError,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
messageFailedHTMLRender,
)
// return proper HTTP error
http.Error(w, messageFailedHTMLRender, http.StatusInternalServerError)
return
}
}
func validateHandle(w http.ResponseWriter, r *http.Request) {
// allow only POST method
if r.Method != http.MethodPost {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusMethodNotAllowed,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageOnlyPostMethod,
)
// return proper HTTP error with headers
w.Header().Set("Allow", http.MethodPost)
http.Error(w, messageOnlyPostMethod, http.StatusMethodNotAllowed)
return
}
// define domain for a cookie
domain := r.Header.Get("X-Forwarded-Host")
// compute wildcard domain cookie when appropriate configuration header present
if strings.EqualFold(r.Header.Get("X-TLDPlusOne"), "TRUE") {
if val, err := publicsuffix.EffectiveTLDPlusOne(r.Header.Get("X-Forwarded-Host")); err == nil {
domain = "." + val
}
}
// get captcha answer, case insensitive
response := strings.ToUpper(r.PostFormValue(responseKey))
// get hidden captcha answer
challenge := r.PostFormValue(challengeKey)
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Response:'%s', Challenge:'%s'\n",
http.StatusOK,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
response, challenge,
)
// https://www.fastly.com/blog/clearing-cache-browser
// https://www.w3.org/TR/clear-site-data/
w.Header().Set("Clear-Site-Data", `"cache"`)
// lookup captcha hash in db
val, ok := db.Load(challenge)
if !ok {
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', %s\n",
http.StatusSeeOther,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, messageUnknownChallenge,
)
// redirect to self
http.Redirect(w, r, "/", http.StatusSeeOther)
return
}
// check captcha hash record
record, ok := val.(captchaDBRecord)
if !ok {
Error.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', %s\n",
http.StatusInternalServerError,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, messageUnknownChallenge,
)
// return proper HTTP error
http.Error(w, messageUnknownChallenge, http.StatusInternalServerError)
return
}
// check that captcha hash is valid for domain
if !strings.EqualFold(domain, record.Domain) {
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', %s\n",
http.StatusSeeOther,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, messageInvalidChallenge,
)
// redirect to self
http.Redirect(w, r, "/", http.StatusSeeOther)
return
}
// check captcha hash expiration
if record.Expires.Before(time.Now()) {
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', %s\n",
http.StatusSeeOther,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, messageExpiredChallenge,
)
// redirect to self
http.Redirect(w, r, "/", http.StatusSeeOther)
return
}
// validate user inputed captcha response
if getStringHash(response) != challenge {
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Challenge:'%s', %s\n",
http.StatusSeeOther,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
challenge, messageInvalidResponse,
)
// redirect to self
http.Redirect(w, r, "/", http.StatusSeeOther)
return
}
// generate ID for cookie value
id, err := genUUID()
if err != nil {
Error.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', %s\n",
http.StatusInternalServerError,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
messageFailedEntropy,
)
// return proper HTTP error
http.Error(w, messageFailedEntropy, http.StatusInternalServerError)
return
}
// set how long cookie is valid
authenticationTTL := time.Duration(authenticationExpirationSeconds * nanoSecondsInSecond)
// generate expire date for authentication hash
expires := time.Now().Add(authenticationTTL)
Info.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Response:'%s', Challenge:'%s', Auth:'%s', TTL:'%s'\n",
http.StatusOK,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
response, challenge,
id, authenticationTTL,
)
// challenge is valid, invalidating used challenge hash
db.Delete(challenge)
// store captcha hash to db
db.Store(id,
captchaDBRecord{
Domain: domain,
UserAgent: r.UserAgent(),
Expires: expires,
Address: r.Header.Get("X-Real-IP"),
},
)
// set cookie for wildcard domain cookie, domain starts with '.'
if strings.HasPrefix(domain, ".") {
http.SetCookie(w, &http.Cookie{
Domain: domain,
Name: authenticationName,
Value: id,
Expires: expires,
MaxAge: int(expires.Unix() - time.Now().Unix()),
Secure: isHTTPS(r.Header),
HttpOnly: false,
SameSite: http.SameSiteNoneMode,
})
} else { // non-wildcard cookie
http.SetCookie(w, &http.Cookie{
Name: authenticationName,
Value: id,
Expires: expires,
MaxAge: int(expires.Unix() - time.Now().Unix()),
Secure: isHTTPS(r.Header),
HttpOnly: true,
SameSite: http.SameSiteStrictMode,
})
}
// redirect to self
http.Redirect(w, r, "/", http.StatusSeeOther)
}
func authHandle(w http.ResponseWriter, r *http.Request) {
// allow web font for '@font-face' request from CSS
if strings.EqualFold(r.Header.Get("X-Allow-Web-Font"), "TRUE") &&
isFontInURL(r.Header.Get("X-Original-URI")) {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
http.StatusOK,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageAllowWebFont,
)
return
}
// get challenge cookie value from request
auth, err := r.Cookie(authenticationName)
if err != nil || auth == nil {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', UA:'%s', %s\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
r.UserAgent(), messageEmptyAuthentication,
)
// return proper HTTP error
http.Error(w, messageEmptyAuthentication, unAuthorizedAccess)
return
}
// define domain for a cookie
domain := r.Header.Get("X-Forwarded-Host")
// compute wildcard domain cookie when appropriate configuration header present
if strings.EqualFold(r.Header.Get("X-TLDPlusOne"), "TRUE") {
if val, err := publicsuffix.EffectiveTLDPlusOne(r.Header.Get("X-Forwarded-Host")); err == nil {
domain = "." + val
}
}
// lookup cookie value in db
val, ok := db.Load(auth.Value)
if !ok {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
auth.Value, messageUnknownAuthentication,
)
// return proper HTTP error
http.Error(w, messageUnknownAuthentication, unAuthorizedAccess)
return
}
// check challenge hash record
record, ok := val.(captchaDBRecord)
if !ok {
Error.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(),
auth.Value, messageUnknownAuthentication,
)
// return proper HTTP error
http.Error(w, messageUnknownAuthentication, unAuthorizedAccess)
return
}
// check that cookie is valid for domain
if !strings.EqualFold(domain, record.Domain) {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s (%s)\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(), auth.Value,
messageInvalidAuthenticationDomain,
record.Domain,
)
// when we switch form wildcard to none-wildcard cookie we need to clean DB records for this domain
if strings.EqualFold(
strings.TrimPrefix(domain, "."),
strings.TrimPrefix(record.Domain, "."),
) {
db.Delete(auth.Value)
}
// return proper HTTP error
http.Error(w, messageInvalidAuthenticationDomain, unAuthorizedAccess)
return
}
// check that cookie is valid for UA
if !strings.EqualFold(r.UserAgent(), record.UserAgent) {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s (%s)\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(), auth.Value,
messageInvalidUserAgent, record.UserAgent,
)
// return proper HTTP error
http.Error(w, messageInvalidUserAgent, unAuthorizedAccess)
return
}
// check cookie expiration
if !record.Expires.After(time.Now()) {
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s\n",
unAuthorizedAccess,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(), auth.Value,
messageExpiredAuthentication,
)
// return proper HTTP error
http.Error(w, messageExpiredAuthentication, unAuthorizedAccess)
}
Debug.Printf(
"%d, RAddr:'%s', URL:'%s%s', Dom:'%s', UA:'%s', Auth:'%s', %s\n",
http.StatusOK,
r.Header.Get("X-Real-IP"),
r.Header.Get("X-Forwarded-Host"),
r.Header.Get("X-Original-URI"),
domain, r.UserAgent(), auth.Value,
messageValidAuthentication,
)
}