Nice Job. Here's the version for vB 3.6.4 on RedHat ES 4 (mod_auth_mysql-2.6.1):
867c867,868
< if (encryption_type == PW_ENCRYPT_CRYPT && /* Salt is only for crypt'd passwords */
---
> if ((encryption_type == PW_ENCRYPT_CRYPT || /* Salt is only for crypt'd passwords */
> encryption_type == PW_ENCRYPT_MD5) && /* or MD5 */
902c903
< if(strcmp(real_pw,ap_md5(r->pool, (const unsigned char *) sent_pw)) == 0) {
---
> if(strcmp(real_pw,ap_md5(r->pool, strcat(ap_md5(r->pool,(const unsigned char *) sent_pw),salt))) == 0) {
904a906,916
> else if(strcmp(real_pw,ap_md5(r->pool, (const unsigned char *) sent_pw)) == 0) {
> passwords_match = 1;
> }
|