diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:02:44 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:02:44 +0800 |
commit | 895309bf158ee49e6608187f95d6f93720f8a2e0 (patch) | |
tree | fc4a8fcae10bf3dce23f6b40d5345816246e1398 | |
parent | Lower default difficulty (diff) | |
download | powxy-895309bf158ee49e6608187f95d6f93720f8a2e0.tar.gz powxy-895309bf158ee49e6608187f95d6f93720f8a2e0.tar.zst powxy-895309bf158ee49e6608187f95d6f93720f8a2e0.zip |
Forbid long submissions
-rw-r--r-- | main.go | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -68,11 +68,11 @@ func init() { {{- if .Message }} <p><strong>{{ .Message }}</strong></p> {{- end }} -<p>Select a value, such that when it is appended to the decoded form of the following base64 string, and a SHA-256 hash is taken as a whole, the first {{ .NeedBits }} bits of the SHA-256 hash are zeros. Within one octet, higher bits are considered to be in front of lower bits.</p> +<p>Select an nonce shorter than or equal to 32 bytes, such that when it is appended to the decoded form of the following base64 string, and a SHA-256 hash is taken as a whole, the first {{ .NeedBits }} bits of the SHA-256 hash are zeros. Within one octet, higher bits are considered to be in front of lower bits.</p> <p>{{ .UnsignedTokenBase64 }}</p> <form method="POST"> <p> -Encode your selected value in base64 and submit it below: +Encode your selected nonce in base64 and submit it below: </p> <input name="powxy" type="text" /> <input type="submit" value="Submit" /> @@ -221,6 +221,11 @@ func main() { return } + if len(nonce) > 32 { + authPage("Your submission was too long.") + return + } + h := sha256.New() h.Write(expectedToken[:sha256.Size]) h.Write(nonce) |