mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
dsdb: Create RID Set as SYSTEM
We do not want random users with add-user rights to own the new RID Set for this server, and the ridSet class is thankfully system-only. BUG: https://bugzilla.samba.org/show_bug.cgi?id=9954 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz> (cherry picked from commit fe90dadd2cd13c20484c06318724c592e5cf298e)
This commit is contained in:
parent
da6d45a593
commit
da60caf2c7
@ -347,8 +347,12 @@ static int ridalloc_create_rid_set_ntds(struct ldb_module *module, TALLOC_CTX *m
|
||||
|
||||
/* we need this to go all the way to the top of the module
|
||||
* stack, as we need all the extra attributes added (including
|
||||
* complex ones like ntsecuritydescriptor) */
|
||||
ret = dsdb_module_add(module, msg, DSDB_FLAG_TOP_MODULE | DSDB_MODIFY_RELAX, parent);
|
||||
* complex ones like ntsecuritydescriptor). We must do this
|
||||
* as system, otherwise a user might end up owning the RID
|
||||
* set, and that would be bad... */
|
||||
ret = dsdb_module_add(module, msg,
|
||||
DSDB_FLAG_TOP_MODULE | DSDB_FLAG_AS_SYSTEM
|
||||
| DSDB_MODIFY_RELAX, parent);
|
||||
if (ret != LDB_SUCCESS) {
|
||||
ldb_asprintf_errstring(ldb, "Failed to add RID Set %s - %s",
|
||||
ldb_dn_get_linearized(msg->dn),
|
||||
|
Loading…
x
Reference in New Issue
Block a user