BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cycle_auth_keys.php 364B

12345678910111213141516171819
  1. <?php
  2. //------------- Cycle auth keys -----------------------------------------//
  3. $DB->query(
  4. "
  5. UPDATE users_info
  6. SET AuthKey =
  7. MD5(
  8. CONCAT(
  9. AuthKey, RAND(), '".db_string(Users::make_secret())."',
  10. SHA1(
  11. CONCAT(
  12. RAND(), RAND(), '".db_string(Users::make_secret())."'
  13. )
  14. )
  15. )
  16. );"
  17. );