/home/techb158/on-time-movers.com/wp-content/plugins/updraftplus
NameSizeModeActions
central/-0755rm
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
languages/-0755rm
methods/-0755rm
templates/-0755rm
vendor/-0755rm
admin.php3709760644editdlrm
backup.php2388420644editdlrm
changelog-old.txt1272580644editdlrm
class-updraftplus.php3326060644editdlrm
example-decrypt.php12590644editdlrm
index.html44480644editdlrm
options.php132770644editdlrm
readme.txt1787860644editdlrm
restorer.php2601660644editdlrm
SECURITY.md13570644editdlrm
updraftplus.php179650644editdlrm
Edit: /home/techb158/on-time-movers.com/wp-content/plugins/updraftplus/example-decrypt.php (1259B)
output.sql.gz 3) You may then want to gunzip the resulting file to have a standard SQL file. e.g. gunzip output.sql.gz */ // @codingStandardsIgnoreEnd /** * An example of how to decrypt a file * * @param String $file Full path to file to decrypt * @param String $key Key or salting to be used */ function rijndael_decrypt_file($file, $key) { include_once(dirname(__FILE__).'/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'); $rijndael = new Crypt_Rijndael(); $rijndael->setKey($key); $ciphertext = file_get_contents($file); print $rijndael->decrypt($ciphertext);// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- intentional binary output }