aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 21:40:45 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 21:42:17 +0800
commite915ec33eef9cb92a847d7f67227eab63dec9abc (patch)
tree25efc94b089f1d8dd44c2f55efef12f5a62b1ec1
parentMake primary-color-lighter lighter (diff)
downloadpowxy-0.1.83.tar.gz
powxy-0.1.83.tar.zst
powxy-0.1.83.zip
handler: Add Path: "/" for the cookiev0.1.83
If the user encounters a Powxy challenge while not on the root directory, then the cookie will only be set for the current subtree. An explicit path=/ is required in the cookie to make it apply across the entire site.
-rw-r--r--handler.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/handler.go b/handler.go
index 85dbdc5..4348cb6 100644
--- a/handler.go
+++ b/handler.go
@@ -166,6 +166,7 @@ func handler(writer http.ResponseWriter, request *http.Request) {
Value: base64.StdEncoding.EncodeToString(expectedMAC),
Secure: true,
HttpOnly: true,
+ Path: "/",
})
slog.Info("accepted proof of work",