Skip to content

Commit

Permalink
Add SID for IIS_IUSRS group (jrsoftware#449)
Browse files Browse the repository at this point in the history
* Add SID for IIS_IUSRS group

* Rename to `iisiusrs`.

* Document `iisiusrs` and `powerusers` in help.

* Remove `powerusers` from user and group identifiers.
  • Loading branch information
AchimStuy authored Nov 27, 2023
1 parent 67cd656 commit 25d3c8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions ISHelp/isetup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5684,6 +5684,7 @@ SignTool=byparam format c:
<tr><td><tt>creatorowner</tt></td><td>Creator Owner</td></tr>
<tr><td><tt>everyone</tt></td><td>Everyone group</td></tr>
<tr><td><tt>guests</tt></td><td>Guests group</td></tr>
<tr><td><tt>iisiusrs</tt></td><td>IIS users group</td></tr>
<tr><td><tt>networkservice</tt></td><td>Network service account</td></tr>
<tr><td><tt>service</tt></td><td>Local service account</td></tr>
<tr><td><tt>system</tt></td><td>Local system account</td></tr>
Expand Down
7 changes: 6 additions & 1 deletion Projects/Compile.pas
Original file line number Diff line number Diff line change
Expand Up @@ -3127,7 +3127,8 @@ TKnownSid = record
DOMAIN_ALIAS_RID_USERS = $00000221;
DOMAIN_ALIAS_RID_GUESTS = $00000222;
DOMAIN_ALIAS_RID_POWER_USERS = $00000223;
KnownSids: array[0..9] of TKnownSid = (
DOMAIN_ALIAS_RID_IIS_IUSRS = $00000238;
KnownSids: array[0..10] of TKnownSid = (
(Name: 'admins';
Sid: (Authority: (Value: (0, 0, 0, 0, 0, SECURITY_NT_AUTHORITY));
SubAuthCount: 2;
Expand All @@ -3148,6 +3149,10 @@ TKnownSid = record
Sid: (Authority: (Value: (0, 0, 0, 0, 0, SECURITY_NT_AUTHORITY));
SubAuthCount: 2;
SubAuth: (SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_GUESTS))),
(Name: 'iisiusrs';
Sid: (Authority: (Value: (0, 0, 0, 0, 0, SECURITY_NT_AUTHORITY));
SubAuthCount: 2;
SubAuth: (SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_IIS_IUSRS))),
(Name: 'networkservice';
Sid: (Authority: (Value: (0, 0, 0, 0, 0, SECURITY_NT_AUTHORITY));
SubAuthCount: 1;
Expand Down

0 comments on commit 25d3c8e

Please sign in to comment.