Group policies
Theory
"Group Policy" is a management feature of Active Directory. It allows admins to manage computers and users. Group Policy Objetcs (GPOs) make up Group Policies. GPOs are associated to AD objects (sites, domains, organizational units (OUs)).
Group Policies can include security options, registry keys, software installation, and scripts for startup and shutdown and domain members refresh group policy settings every 90 minutes by default (5 minutes for Domain Controllers). This means that Group Policy enforces configured settings on the targeted computer.
In certain scenarios, an attacker can gain control over GPOs. Some ACEs can give that control (see this BlackHat conf, page 28):
WriteProperty
to theGPC-File-Sys-Path
property of a GPO (specific GUID specified)GenericAll
,GenericWrite
,WriteProperty
to any property (no GUID specified)WriteDacl
,WriteOwner
To enumerate GPO's delegation & permissions, please refer to following page
Group policiesPractice
GPO-based attacks can be conducted with New-GPOImmediateTask (PowerView module), SharpGPOAbuse (C#), or pyGPOabuse (python) and GPOwned (Python) for UNIX-like systems.
Immediate Scheduled Task
An attacker can edit the GPO to add a scheduled task that runs instantly and removes itself after, every time Group Policy refreshes. The attacker can then gain access to all AD objects this GPO applies to.
From UNIX-like systems, a new immediate scheduled task can be created with GPOwned (Python) or added to an existing GPO with pyGPOabuse (Python).
Manually adding a user to the local admin group
An attacker can also manually add a user to the local administrator group. This can be achieved with the Group Policy Management Editor.
Step 1: create the user
Windows search bar > Group Policy Management Editor > Computer configuration > Preferences > Control Panel Settings > Local Users and Groups > Right click on it > New > Local User > Action: Create > User name: <user>
Step 2: add the user to the local admin group
Windows search bar > Group Policy Management Editor > Computer configuration > Preferences > Control Panel Settings > Local Users and Groups > Right click on it > New > Local User > Action: Update > Group name : <Administrators> > Members: Add: <user>
Force Group Policy update
Domain members refresh group policy settings every 90 minutes by default but it can locally be forced with the following command: gpupdate /force
.
Other exploitation paths
In addition to the aforementioned exploitation paths, GPOs can be abused in other ways: leveraging logon/logoff scripts, using registry for autoruns, installing .msi, edit services and similar code execution avenues.
Group Policy Preferences Password
Sometimes, you will find the built-in Administrator's password in a Group Policies.
Group Policy PreferencesResources
Last updated