1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

s4:password hash LDB module - check that password hashes are != NULL before copying them

This commit is contained in:
Matthias Dieter Wallnöfer 2010-05-10 20:02:21 +02:00
parent 6276343ce1
commit fa87027592

View File

@ -1778,9 +1778,11 @@ static int setup_io(struct ph_context *ac,
return LDB_ERR_CONSTRAINT_VIOLATION;
}
io->n.nt_hash = talloc(io->ac, struct samr_Password);
memcpy(io->n.nt_hash->hash, quoted_utf16->data,
MIN(quoted_utf16->length, sizeof(io->n.nt_hash->hash)));
if (quoted_utf16 != NULL) {
io->n.nt_hash = talloc(io->ac, struct samr_Password);
memcpy(io->n.nt_hash->hash, quoted_utf16->data,
MIN(quoted_utf16->length, sizeof(io->n.nt_hash->hash)));
}
}
/* Checks and converts the previous "unicodePwd" attribute */
@ -1827,9 +1829,11 @@ static int setup_io(struct ph_context *ac,
return LDB_ERR_UNWILLING_TO_PERFORM;
}
io->og.nt_hash = talloc(io->ac, struct samr_Password);
memcpy(io->og.nt_hash->hash, old_quoted_utf16->data,
MIN(old_quoted_utf16->length, sizeof(io->og.nt_hash->hash)));
if (old_quoted_utf16 != NULL) {
io->og.nt_hash = talloc(io->ac, struct samr_Password);
memcpy(io->og.nt_hash->hash, old_quoted_utf16->data,
MIN(old_quoted_utf16->length, sizeof(io->og.nt_hash->hash)));
}
}
/* Handles the "dBCSPwd" attribute (LM hash) */