Oversize Cookie Alert

Cookies cannot be larger than 4kb
This commit is contained in:
Brian Dwyer 2017-02-23 18:48:34 -05:00 committed by GitHub
parent 89ba1d813a
commit 3379e05fec

View File

@ -255,6 +255,10 @@ func (p *OAuthProxy) MakeCookie(req *http.Request, value string, expiration time
if value != "" {
value = cookie.SignedValue(p.CookieSeed, p.CookieName, value, now)
if len(value) > 4096 {
// Cookies cannot be larger than 4kb
log.Printf("WARNING - Cookie Size: %d bytes", len(value))
}
}
return &http.Cookie{
Name: p.CookieName,