From 12bd00155e5471d7132a34b4950ae12d107167db Mon Sep 17 00:00:00 2001 From: Eth007 <59326198+Eth007@users.noreply.github.com> Date: Sun, 27 Nov 2022 21:56:05 -0800 Subject: [PATCH] Fix unsanitized input in Team ID, CSS "typo" (#159) A team ID like the below can cause unexpected behavior on the scoring report page: "> Aeacus Scoring Report

` @@ -29,7 +29,7 @@ func genReport(img *imageData) { htmlFile.WriteString(header) htmlFile.WriteString("

" + html.EscapeString(conf.Title) + "

") htmlFile.WriteString("

Report Generated At: " + genTime.Format("2006/01/02 15:04:05 MST") + "

") - htmlFile.WriteString(``) + htmlFile.WriteString(``) if conf.Remote != "" { if teamID == "" {