# T1069 - Permission Groups Discovery ## [Description from ATT&CK](https://attack.mitre.org/wiki/Technique/T1069)
Adversaries may attempt to find local system or domain-level groups and permissions settings. ### Windows Examples of commands that can list groups are## Atomic Tests - [Atomic Test #1 - Permission Groups Discovery](#atomic-test-1---permission-groups-discovery) - [Atomic Test #2 - Permission Groups Discovery Windows](#atomic-test-2---permission-groups-discovery-windows) - [Atomic Test #3 - Permission Groups Discovery PowerShell](#atomic-test-3---permission-groups-discovery-powershell)net group /domainandnet localgroupusing the [Net](https://attack.mitre.org/software/S0039) utility. ### Mac On Mac, this same thing can be accomplished with thedscacheutil -q groupfor the domain, ordscl . -list /Groupsfor local groups. ### Linux On Linux, local groups can be enumerated with thegroupscommand and domain groups via theldapsearchcommand.