summaryrefslogtreecommitdiff
path: root/librpc/idl
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2022-03-14 18:14:15 +1300
committerJoseph Sutton <jsutton@samba.org>2022-03-17 23:11:37 +0000
commite61fa573fe1a911460cfb3b64ba05b031d124256 (patch)
tree58064ea2fbc2cd34e2f62afa526ebc643bbd5946 /librpc/idl
parent9b913fcb0f4e69b9fd7db1c974d7534ef356a318 (diff)
downloadsamba-e61fa573fe1a911460cfb3b64ba05b031d124256.tar.gz
sddl: Fix incorrect SDDL SID strings
Change the values to match those used by Windows. Verified with PowerShell commands of the form: New-Object Security.Principal.SecurityIdentifier ER Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r--librpc/idl/security.idl2
1 files changed, 2 insertions, 0 deletions
diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl
index 9845becd826..0736cf18725 100644
--- a/librpc/idl/security.idl
+++ b/librpc/idl/security.idl
@@ -274,6 +274,7 @@ interface security
const string SID_BUILTIN_AUTH_ACCESS = "S-1-5-32-560";
const string SID_BUILTIN_TS_LICENSE_SERVERS = "S-1-5-32-561";
const string SID_BUILTIN_DISTRIBUTED_COM_USERS = "S-1-5-32-562";
+ const string SID_BUILTIN_IUSERS = "S-1-5-32-568";
const string SID_BUILTIN_CRYPTO_OPERATORS = "S-1-5-32-569";
const string SID_BUILTIN_EVENT_LOG_READERS = "S-1-5-32-573";
const string SID_BUILTIN_CERT_SERV_DCOM_ACCESS = "S-1-5-32-574";
@@ -344,6 +345,7 @@ interface security
const int BUILTIN_RID_AUTH_ACCESS = 560;
const int BUILTIN_RID_TS_LICENSE_SERVERS = 561;
const int BUILTIN_RID_DISTRIBUTED_COM_USERS = 562;
+ const int BUILTIN_RID_IUSERS = 568;
const int BUILTIN_RID_CRYPTO_OPERATORS = 569;
const int BUILTIN_RID_EVENT_LOG_READERS = 573;
const int BUILTIN_RID_CERT_SERV_DCOM_ACCESS = 574;