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 314B

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