X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=d853f1ca8d9b9b1b56619e90b1827f27d2c1db99;hp=1e402e0fa28c5366217d4d849b57599fdd23ec69;hb=4b7f401f2a4680ae46ca41c57f749cfe35163660;hpb=0e899620c7a065952d6787c236fb2b33ae337d6a diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 1e402e0fa2..d853f1ca8d 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -1,7 +1,7 @@ Cookie: ".get_session('u_hash')."
Test: ".$test); - - // Write $file_hash to database - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET file_hash='%s' WHERE config=0 LIMIT 1", - array($file_hash), __FILE__, __LINE__); - - // Also create .htaccess file - $fp = @fopen(PATH."inc/.secret/.htaccess", 'w') or mxchange_die("Cannot write to .htaccess file!"); - if ($fp != false) - { - // Add deny line to file - fwrite($fp, "Deny from all"); - - // Close the file - fclose($fp); - } - - // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); - } -} - -// -?> \ No newline at end of file +if (getConfig('master_salt') == '') { + // Generate the master salt which is the first chars minus 40 chars of this random hash + // We do an extra scrambling here... + $masterSalt = scrambleString(sha1(generatePassword(mt_rand(128, 256)))); + + // ... and store it there for future usage + updateConfiguration('master_salt', $masterSalt); + + // Remove dummy string + unset($masterSalt); +} // END - if + +if (getConfig('file_hash') == '') { + // Create filename from hashed random string + $fileHash = sha1(generatePassword(mt_rand(128, 256))); + $FQFN = sprintf("%sinc/.secret/.%s", + getConfig('PATH'), + $fileHash + ); + + // Generate secret key from a randomized string + $secretKey = sha1(generateHash(mt_rand(128, 256))); + + // File hash was never created + writeToFile($FQFN, $secretKey); + + // Is the file there? + if (isFileReadable($FQFN)) { + //* DEBUG: */ removeFile($FQFN); + //* DEBUG: */ $test = hexdec(getSession('u_hash')) / hexdec($secretKey); + //* DEBUG: */ $test = generateHash(str_replace('.', '', $test)); + //* DEBUG: */ die("Secret-Key: ".$secretKey."
Cookie: ".getSession('u_hash')."
Test: ".$test); + + // Write $fileHash to database + updateConfiguration('file_hash', $fileHash); + + // Generate FQFN for .htaccess file + $FQFN = sprintf("%sinc/.secret/.htaccess", + getConfig('PATH') + ); + + // Is the .htaccess file there? + if (!isFileReadable($FQFN)) { + // Also create .htaccess file + writeToFile($FQFN, "Deny from all\n"); + } // END - if + + // Also update configuration + setConfigEntry('secret_key', $secretKey); + + // Remove variables + unset($secretKey); + unset($fileHash); + } // END - if +} // END - if + +// [EOF] +?>