mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 19:08:58 +00:00
cmd/stdiscosrv: Only attempt unescaping when there are %-encodings in the header (fixes #9143)
This commit is contained in:
parent
dc6a10dff4
commit
a405c21ebb
@ -360,8 +360,10 @@ func certificateBytes(req *http.Request) ([]byte, error) {
|
|||||||
// statements. We need to decode, reinstate the newlines every 64
|
// statements. We need to decode, reinstate the newlines every 64
|
||||||
// character and add statements for the PEM decoder
|
// character and add statements for the PEM decoder
|
||||||
|
|
||||||
if unesc, err := url.QueryUnescape(hdr); err == nil {
|
if strings.Contains(hdr, "%") {
|
||||||
hdr = unesc
|
if unesc, err := url.QueryUnescape(hdr); err == nil {
|
||||||
|
hdr = unesc
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := 64; i < len(hdr); i += 65 {
|
for i := 64; i < len(hdr); i += 65 {
|
||||||
|
Loading…
Reference in New Issue
Block a user