X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=8c54d294aa7a71699516dd038989f031b20b2d27;hb=bfe24b8d5abcc23e3330580c3ffbeab93166b29b;hp=45e7a626c3eb019473007033825a675ed7dbd031;hpb=41e2891fb998d13b22b8d7984358f258cc85267d;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 45e7a626c3..8c54d294aa 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -32,13 +32,13 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } // Check for version of sql_patches -if (GET_EXT_VERSION("sql_patches") < "0.3.6") return false; +if (EXT_VERSION_IS_OLDER("sql_patches", "0.3.6")) return false; // Check if there is no scrambling string if (empty($_CONFIG['pass_scramble'])) { @@ -77,7 +77,7 @@ if (empty($_CONFIG['file_hash'])) { if ($fp != false) { // Could write to secret file! So let's generate the secret key... // 1. Count of chars to be taken from back of the string - $nums = rand(40, 45); + $nums = mt_rand(40, 45); // 2. Generate secret key from a randomized string $secretKey = substr(generateHash(GEN_PASS(rand(128, 256))), -$nums); // 3. Write the key to the file