mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-26 21:53:48 +03:00
caddyhttp: Replace sensitive headers with REDACTED (close #5669)
This commit is contained in:
parent
924010cd3d
commit
7b48ce0e7e
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ func (h LoggableHTTPHeader) MarshalLogObject(enc zapcore.ObjectEncoder) error {
|
||||||
if !h.ShouldLogCredentials {
|
if !h.ShouldLogCredentials {
|
||||||
switch strings.ToLower(key) {
|
switch strings.ToLower(key) {
|
||||||
case "cookie", "set-cookie", "authorization", "proxy-authorization":
|
case "cookie", "set-cookie", "authorization", "proxy-authorization":
|
||||||
val = []string{}
|
val = []string{"REDACTED"} // see #5669. I still think ▒▒▒▒ would be cool.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
enc.AddArray(key, LoggableStringArray(val))
|
enc.AddArray(key, LoggableStringArray(val))
|
||||||
|
|
Loading…
Reference in a new issue