+ If you have disabled javascript, you will be presented with a perl script to run.
+ Here is a short explanation of what it does.
+
+ A sample script looks like this:
+
$n="58c80c8c2..."; sets a string of text to the variable n
+
$d=4; sets the number 4 to the variable n
+
for($i=0;;$i++) runs a loop from zero upwards where the current iteration is stored in the variable i
+
$h=sha256_hex($n.$i) calculates a sha256 hash of a string which is made by concatenating variables n
+ and i
+
if(substr($h,0,$d) eq "0"x$d) checks if the first d (in this case, 4) characters of the sha256 hash
+ are zeroes. If so:
+
print "$i\n";last prints the iteration and exits the loop.
+
+
+
+ Please note that if ANYTHING but the string in $n and number in $d are different, the script is
+ forged and not genuine!
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/html/index.html b/html/index.html
index 401b4c5..d4fd2be 100644
--- a/html/index.html
+++ b/html/index.html
@@ -242,6 +242,11 @@
+
+ Never trust random scripts from the internet! Make sure you understand the perl script above.
+ If you don't, click here for an explanation.
+
+
🛑
STOP!
Verifying that you are not a bot. This might take a short moment.
You do not need to do anything.
Why am I seeing this?
This website protects itself from AI bots and scrapers by asking you to complete a cryptographic challenge before allowing you entry.