From 6e0e58c61a8130b3af0587bbf4f6fce3d334386d Mon Sep 17 00:00:00 2001 From: Blackeye Date: Wed, 4 Feb 2026 01:39:18 +0100 Subject: [PATCH 1/1] fixed script md5 -> sha256 --- script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.php b/script.php index ae57449..d28bc02 100644 --- a/script.php +++ b/script.php @@ -183,7 +183,7 @@ if (isset($_FILES['file']) && is_writable(VAR_FILES) echo 'Error 9'; exit; } - if (strlen($link['key']) > 0 && md5($key) != $link['key']) { + if (strlen($link['key']) > 0 && hash('sha256',$key) != $link['key']) { sleep(2); echo 'Error 10'; exit; -- 2.43.0