1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3-samr: Fix crash bug in _samr_QueryUserInfo{2} level 18.

Guenther
This commit is contained in:
Günther Deschner 2010-05-28 14:11:53 +02:00
parent e5fca6aebf
commit 87037006bd

View File

@ -2764,6 +2764,8 @@ static NTSTATUS get_user_info_18(pipes_struct *p,
{
struct samu *smbpass=NULL;
bool ret;
const uint8_t *nt_pass = NULL;
const uint8_t *lm_pass = NULL;
ZERO_STRUCTP(r);
@ -2798,10 +2800,17 @@ static NTSTATUS get_user_info_18(pipes_struct *p,
return NT_STATUS_ACCOUNT_DISABLED;
}
r->lm_pwd_active = true;
r->nt_pwd_active = true;
memcpy(r->lm_pwd.hash, pdb_get_lanman_passwd(smbpass), 16);
memcpy(r->nt_pwd.hash, pdb_get_nt_passwd(smbpass), 16);
lm_pass = pdb_get_lanman_passwd(smbpass);
if (lm_pass != NULL) {
memcpy(r->lm_pwd.hash, lm_pass, 16);
r->lm_pwd_active = true;
}
nt_pass = pdb_get_nt_passwd(smbpass);
if (nt_pass != NULL) {
memcpy(r->nt_pwd.hash, nt_pass, 16);
r->nt_pwd_active = true;
}
r->password_expired = 0; /* FIXME */
TALLOC_FREE(smbpass);