/var/softaculous/presta
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
changelog.txt14660644editdlrm
clone.php81490644editdlrm
edit.php45260644editdlrm
edit.xml4470644editdlrm
fileindex.php2600644editdlrm
import.php56080644editdlrm
info.xml44820644editdlrm
install.js11500644editdlrm
install.php125980644editdlrm
install.xml14280644editdlrm
md555940644editdlrm
notes.txt13000644editdlrm
settings.inc.php5140644editdlrm
update_rijndael.php9160644editdlrm
upgrade.php104180644editdlrm
upgrade.xml13070644editdlrm
Edit: /var/softaculous/presta/update_rijndael.php (916B)
'.'RIJNDAEL_KEYS'.'
'; $rijndael_iv = __getiv(); $rijndael_key = __getkey(); echo ''.$rijndael_iv.''; echo ''.$rijndael_key.''; } function __getkey(){ $key_size = mcrypt_get_key_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $key = __passwdGen($key_size); return $key; } function __passwdGen($length = 8){ $str = 'abcdefghijkmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; for ($i = 0, $passwd = ''; $i < $length; $i++) $passwd .= substr($str, mt_rand(0, strlen($str) - 1), 1); return $passwd; } function __getiv(){ $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $iv = base64_encode(mcrypt_create_iv($iv_size, MCRYPT_RAND)); return $iv; } ?>