mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
CVE-2019-3824 ldb: wildcard_match check tree operation
Check the operation type of the passed parse tree, and return LDB_INAPPROPRIATE_MATCH if the operation is not LDB_OP_SUBSTRING. A query of "attribute=*" gets parsed as LDB_OP_PRESENT, checking the operation and failing ldb_wildcard_match should help prevent confusion writing tests. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13773 Signed-off-by: Gary Lockyer <gary@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
8d34d17209
commit
34383981a0
@ -244,6 +244,11 @@ static int ldb_wildcard_compare(struct ldb_context *ldb,
|
||||
uint8_t *save_p = NULL;
|
||||
unsigned int c = 0;
|
||||
|
||||
if (tree->operation != LDB_OP_SUBSTRING) {
|
||||
*matched = false;
|
||||
return LDB_ERR_INAPPROPRIATE_MATCHING;
|
||||
}
|
||||
|
||||
a = ldb_schema_attribute_by_name(ldb, tree->u.substring.attr);
|
||||
if (!a) {
|
||||
return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
|
||||
|
Loading…
Reference in New Issue
Block a user