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

123456789101112131415161718
  1. <?php
  2. $DB->query("
  3. UPDATE
  4. `users_info`
  5. SET
  6. `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. ");