proxy: filter input to prevent XSS

This commit is contained in:
Lan Tian 2021-01-15 01:22:39 +08:00
parent 8d5eb56199
commit 90e5012840
No known key found for this signature in database
GPG Key ID: 3D2E9DC81E5791C7

View File

@ -2,6 +2,7 @@ package main
import (
"fmt"
"html"
"net/http"
"os/exec"
"regexp"
@ -30,6 +31,7 @@ func tracerouteTryExecute(cmd []string, args [][]string) ([]byte, string) {
func tracerouteHandler(httpW http.ResponseWriter, httpR *http.Request) {
query := string(httpR.URL.Query().Get("q"))
query = strings.TrimSpace(query)
query = html.EscapeString(query)
if query == "" {
invalidHandler(httpW, httpR)
} else {