
12-13-2007, 06:24 PM
|
|
LiteSpeed Staff
|
|
Join Date: May 2003
Location: New Jersey
Posts: 7,590
|
|
OK, please try a simple patch to the web console code
Open file lsws/admin/html/classes/ws/CLIENT.php, search for
Code:
$salt = substr($pass,0,2);
change it to
Code:
$salt = substr($pass,0,CRYPT_SALT_LENGTH);
Please let me know it works or not.
|