diff options
author | Christian Ambach <ambi@samba.org> | 2011-08-29 17:34:57 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2011-08-31 09:53:31 +0200 |
commit | b43c69bedfc519e4e53d2c9b0ba2693bdaa1d67e (patch) | |
tree | 2e272ddd4d712b8ec6bdd08234d50fcccef92d49 | |
parent | 80f4a936f27ff457855dbc21979fc4c0306ffb76 (diff) | |
download | samba-b43c69bedfc519e4e53d2c9b0ba2693bdaa1d67e.tar.gz |
security.idl add new well-known SIDs
http://support.microsoft.com/kb/243330/en-us lists some new
well-known SIDS in the BUILTIN domain
-rw-r--r-- | librpc/idl/security.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 57603374d11..2b6efc53184 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -269,6 +269,10 @@ interface security const string SID_BUILTIN_PERFLOG_USERS = "S-1-5-32-559"; 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_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"; /* SECURITY_NT_SERVICE */ const string NAME_NT_SERVICE = "NT SERVICE"; @@ -316,6 +320,10 @@ interface security const int BUILTIN_RID_PERFLOG_USERS = 559; 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_CRYPTO_OPERATORS = 569; + const int BUILTIN_RID_EVENT_LOG_READERS = 573; + const int BUILTIN_RID_CERT_SERV_DCOM_ACCESS = 574; /******************************************************************** This is a list of privileges reported by a WIndows 2008 R2 DC |