瀏覽代碼

cmd/stdiscosrv: Only attempt unescaping when there are %-encodings in the header (fixes #9143)

Jakob Borg 2 年之前
父節點
當前提交
a405c21ebb
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      cmd/stdiscosrv/apisrv.go

+ 4 - 2
cmd/stdiscosrv/apisrv.go

@@ -360,8 +360,10 @@ func certificateBytes(req *http.Request) ([]byte, error) {
 		// statements. We need to decode, reinstate the newlines every 64
 		// character and add statements for the PEM decoder
 
-		if unesc, err := url.QueryUnescape(hdr); err == nil {
-			hdr = unesc
+		if strings.Contains(hdr, "%") {
+			if unesc, err := url.QueryUnescape(hdr); err == nil {
+				hdr = unesc
+			}
 		}
 
 		for i := 64; i < len(hdr); i += 65 {