initial commit
This commit is contained in:
11
CTF/Decryptify1.2/php/test1.php
Normal file
11
CTF/Decryptify1.2/php/test1.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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;
|
||||
?>
|
||||
Reference in New Issue
Block a user