← Library
splApache-2.0from splunk/security_content

Windows Find Domain Organizational Units with GetDomainOU

The following analytic detects the execution of the `Get-DomainOU` cmdlet, a part of the PowerView toolkit used for Windows domain enumeration. It leverages PowerShell Script Block Logging (EventCode=4104) to identify this activity. Detecting `Get-DomainOU` usage is significant as adversaries may use it to gather information about organizational units within Active Directory, which can facilitate lateral movement or privilege escalation. If confirmed malicious, this activity could allow attackers to map the domain structure, aiding in further exploitation and persistence within the network.

Quality
59
FP risk
Forks
0
Views
0
Rule sourcedetections/endpoint/windows_find_domain_organizational_units_with_getdomainou.yml
`powershell` EventCode=4104 ScriptBlockText = "*Get-DomainOU*"
  | fillnull
  | stats count min(_time) as firstTime max(_time) as lastTime
    BY dest signature signature_id
       user_id vendor_product EventID
       Guid Opcode Name
       Path ProcessID ScriptBlockId
       ScriptBlockText
  | `security_content_ctime(firstTime)`
  | `security_content_ctime(lastTime)`
  | `windows_find_domain_organizational_units_with_getdomainou_filter`