Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://bayfiles.com/b1ReA8Lau4/imavex_updated_txt
- ------------------------------ Password decryption -------------------------------
- function getEncryptKey()
- {
- $key = base64_decode('cHNhbG1zMjMK'); //psalm23
- return $key."\0\0\0\0\0\0\0"; //correct padding forced >php 5.6
- }
- function data_decrypt($input)
- {
- $iv = mcrypt_create_iv (mcrypt_get_iv_size (MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND);
- $data = mcrypt_decrypt (MCRYPT_RIJNDAEL_256 , getEncryptKey(), $input, MCRYPT_MODE_ECB,$iv);
- return $data;
- }
- echo data_decrypt(base64_decode('hash_here'));
Add Comment
Please, Sign In to add comment