index: minor fixes

This commit is contained in:
Vaxry
2025-04-22 01:30:59 +01:00
parent 6f77f5acb1
commit 0c9a8930e1
2 changed files with 8 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html>
<head> <head>
<title>STOP! - Checkpoint</title> <title>STOP! - Checkpoint</title>
@@ -220,9 +221,8 @@
</p> </p>
<p class="code-block"> <p class="code-block">
perl -MDigest::SHA=sha256_hex -e '$nonce="{{ tl:text challengeNonce }}"; $d={{ tl:text perl -MDigest::SHA=sha256_hex -e '$n="{{ tl:text challengeNonce }}";$d={{ tl:text challengeDifficulty
challengeDifficulty }};for($i=0;;$i++){$h=sha256_hex($n.$i);if(substr($h,0,$d) eq "0"x$d){print "$i\n";last}}'
}}; for($i=0;; $i++){ $h=sha256_hex($nonce.$i); if(substr($h,0,$d) eq "0"x$d){ print "$i\n"; last }}'
</p> </p>
<form action="/checkpoint/challengeNoJs" method="get"> <form action="/checkpoint/challengeNoJs" method="get">
@@ -265,7 +265,7 @@
background-color: #161616; background-color: #161616;
color: #d9d9d9; color: #d9d9d9;
border-radius: 1rem; border-radius: 1rem;
font: "Monospace"; font-family: monospace;
margin: 1rem; margin: 1rem;
width: calc(100% - 3rem); width: calc(100% - 3rem);
max-width: 100%; max-width: 100%;
@@ -430,4 +430,6 @@
) )
</script> </script>
</body> </body>
</html>

File diff suppressed because one or more lines are too long