зеркало из https://github.com/github/oauth2_proxy.git
Oversize Cookie Alert
Cookies cannot be larger than 4kb
This commit is contained in:
Родитель
89ba1d813a
Коммит
3379e05fec
|
@ -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,
|
||||
|
|
Загрузка…
Ссылка в новой задаче