← Library
splApache-2.0from splunk/security_content

Get DomainUser with PowerShell Script Block

The following analytic detects the execution of the `Get-DomainUser` cmdlet using PowerShell Script Block Logging (EventCode=4104). This cmdlet is part of PowerView, a tool often used for domain enumeration. The detection leverages PowerShell operational logs to identify instances where this command is executed. Monitoring this activity is crucial as it may indicate an adversary's attempt to gather information about domain users, which is a common step in Active Directory Discovery. If confirmed malicious, this activity could lead to further reconnaissance and potential exploitation of domain resources.

Quality
59
FP risk
Forks
0
Views
0
Rule sourcedetections/endpoint/get_domainuser_with_powershell_script_block.yml
`powershell` EventCode=4104 ScriptBlockText = "*Get-DomainUser*"
  | 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)`
  | `get_domainuser_with_powershell_script_block_filter`