Files
hayabusa/rules/sigma/builtin/security/win_susp_psexec.yml
itiB 83d891b2fa Feature/rm submodule (#312)
* rm: submodule

* Add: rules

* Fix: hayabusa-rules to c9c10a
2021-12-20 21:14:32 +09:00

39 lines
1.1 KiB
YAML

title: Suspicious PsExec Execution
ruletype: Sigma
author: Samir Bousseaden
date: 2019/04/03
description: detects execution of psexec or paexec with renamed service name, this
rule helps to filter out the noise if psexec is used for legit purposes or if attacker
uses a different psexec client other than sysinternal one
detection:
SELECTION_1:
EventID: 5145
SELECTION_2:
ShareName: \\\*\IPC$
SELECTION_3:
RelativeTargetName:
- '*-stdin'
- '*-stdout'
- '*-stderr'
SELECTION_4:
RelativeTargetName: PSEXESVC*
condition: ((SELECTION_1 and SELECTION_2 and SELECTION_3) and not (SELECTION_4))
falsepositives:
- nothing observed so far
id: c462f537-a1e3-41a6-b5fc-b2c2cef9bf82
level: high
logsource:
definition: The advanced audit policy setting "Object Access > Audit Detailed File
Share" must be configured for Success/Failure
product: windows
service: security
modified: 2021/12/08
references:
- https://blog.menasec.net/2019/02/threat-hunting-3-detecting-psexec.html
status: test
tags:
- attack.lateral_movement
- attack.t1077
- attack.t1021.002