Skip to content

Commit

Permalink
Fixed error in group lookup table
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Sep 6, 2022
1 parent b6ff0a8 commit 22feaa1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions modules/integrations/activedirectory/analyze/knownsids.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,14 @@ const (
var (
groupTranslationTable = map[string]windowssecurity.SID{
strings.ToLower("Administrators"): windowssecurity.AdministratorsSID, // EN
strings.ToLower("Administratorer"): windowssecurity.AdministratorsSID, // DK
strings.ToLower("Administratoren"): windowssecurity.AdministratorsSID, // DE
strings.ToLower("Administrateurs"): windowssecurity.AdministratorsSID, // FR
strings.ToLower("Administradores"): windowssecurity.AdministratorsSID, // ES
strings.ToLower("Administratoren"): windowssecurity.AdministratorsSID, // NL
strings.ToLower("Administratorzy"): windowssecurity.AdministratorsSID, // PL

strings.ToLower("Remote Desktop Users"): windowssecurity.AdministratorsSID, // DK

strings.ToLower("Brugere af Fjernskrivebord"): windowssecurity.AdministratorsSID, // DK
strings.ToLower("Remote Desktop Users"): windowssecurity.RemoteDesktopUsersSID, // EN
strings.ToLower("Brugere af Fjernskrivebord"): windowssecurity.RemoteDesktopUsersSID, // DK
}
)

Expand Down

0 comments on commit 22feaa1

Please sign in to comment.