admin password issues with a dot - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: admin password issues with a dot (/thread-3776.html) |
admin password issues with a dot - rycardo74 - 07-17-2008 04:02 AM Hi I found a strange issue on administrator passwords control. Im use a password style like this "alphanumeric.54" the problem is that I can login with "alphanumeric" or "alphanumeric.54" is not beautiful somebody have the same problem RE: admin password issues with a dot - sci2tech - 07-17-2008 05:11 AM Please try to change the password with same password (admin/password_change.php) and check if is happend again. RE: admin password issues with a dot - rycardo74 - 07-17-2008 06:56 PM All ok instalation issue ? however i change on the fly my password when Finished the istallation. RE: admin password issues with a dot - sci2tech - 07-17-2008 10:22 PM It`s not an issue, it`s a feature . When administrator password is crypted is used DES algoritm not MD5 or Blowfish->only first 8 characters are relevant when hash is created. So there are 2 option: Change in ispcp/engine/setup/ispcp-setup.pl line 719 from Code: my $admin_password = crypt_data($main::ua{'admin_password'}); Code: my $admin_password = crypt_md5_data($main::ua{'admin_password'}); Code: sub crypt_data { Code: sub crypt_data { For thous witch still use admin password created by setup, change it using gui, to force MD5 algorithm, otherwise your password will be truncated at 8 chars RE: admin password issues with a dot - RatS - 07-18-2008 05:04 PM good point; crypt_md5_data is already written and can be reuses but needs a salt of 8 instead of 2 (like it is now). |