From 586c0e64d670eaedd141868ad857d74bfa96c6b8 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 23 Mar 2025 09:51:53 +0800 Subject: Add JS solver --- main.go | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 82 insertions(+), 3 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index fdf75d4..ce4fe1c 100644 --- a/main.go +++ b/main.go @@ -79,11 +79,89 @@ Encode your selected value in base64 and submit it below:
- -Program to solve this -
` + html.EscapeString(solverProgram) + `
+Program to solve this +
` + html.EscapeString(solverProgram) + `
+

+ `) if err != nil { @@ -173,6 +251,7 @@ func validateCookie(cookie *http.Cookie, expectedToken []byte) bool { return subtle.ConstantTimeCompare(gotToken, expectedToken) == 1 } + func makeSignedToken(request *http.Request) []byte { buf := make([]byte, 0, 2*sha256.Size) -- cgit v1.2.3