aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 01:34:27 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 01:34:27 +0800
commitd319163688ca5c9fe27cebd50f0f8655827578b2 (patch)
treee49b17a1fc131d0a2d6cb552690f857e582f86af
parentidentifier.go: Remove many elements (some mobile browsers mess it up?) (diff)
downloadpowxy-d319163688ca5c9fe27cebd50f0f8655827578b2.tar.gz
powxy-d319163688ca5c9fe27cebd50f0f8655827578b2.tar.zst
powxy-d319163688ca5c9fe27cebd50f0f8655827578b2.zip
main.go: Secure cookie
-rw-r--r--main.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.go b/main.go
index 2aa6d87..52dd7e4 100644
--- a/main.go
+++ b/main.go
@@ -89,8 +89,9 @@ func main() {
}
http.SetCookie(writer, &http.Cookie{
- Name: "powxy",
- Value: base64.StdEncoding.EncodeToString(expectedMAC),
+ Name: "powxy",
+ Value: base64.StdEncoding.EncodeToString(expectedMAC),
+ Secure: true,
})
log.Println("ACCEPTED", getRemoteIP(request), request.RequestURI, request.Header.Get("User-Agent"))