/var/softaculous/presta
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
changelog.txt14660755editdlrm
clone.php81490755editdlrm
edit.php45260755editdlrm
edit.xml4470755editdlrm
fileindex.php2600755editdlrm
import.php56080755editdlrm
info.xml44820755editdlrm
install.js11500755editdlrm
install.php125980755editdlrm
install.xml14280755editdlrm
md555940755editdlrm
notes.txt13000755editdlrm
settings.inc.php5140755editdlrm
update_rijndael.php9160755editdlrm
upgrade.php104180755editdlrm
upgrade.xml13070755editdlrm
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; } ?>