Files
TryHackMe/CTF/Decryptify1.2/php/test1.php
2025-12-04 09:57:17 +01:00

12 lines
281 B
PHP

<?php
$email = "alpha@fake.thm";
$seed_value = 1324931;
$email_length = strlen($email);
$email_hex = hexdec(substr($email, 0, 8));
$sum_value = dechex($seed_value);
$constant_value = $sum_value - ($email_length + $email_hex);
echo "The constant value is: " . $constant_value;
?>