Possible DCSync Attack

Detects remote RPC calls to MS-DRSR from non DC hosts, which could indicate DCSync / DCShadow attacks.

Sigma rule (View on GitHub)

 1title: Possible DCSync Attack
 2id: 56fda488-113e-4ce9-8076-afc2457922c3
 3status: test
 4description: Detects remote RPC calls to MS-DRSR from non DC hosts, which could indicate DCSync / DCShadow attacks.
 5references:
 6    - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-drsr/f977faaa-673e-4f66-b9bf-48c640241d47?redirectedfrom=MSDN
 7    - https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-DRSR.md
 8    - https://github.com/zeronetworks/rpcfirewall
 9    - https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/
10author: Sagie Dulce, Dekel Paz
11date: 2022-01-01
12tags:
13    - attack.t1033
14    - attack.discovery
15logsource:
16    product: rpc_firewall
17    category: application
18    definition: 'Requirements: install and apply the RPC Firewall to all processes, enable DRSR UUID (e3514235-4b06-11d1-ab04-00c04fc2dcd2) for "dangerous" opcodes (not 0,1 or 12) only from trusted IPs (DCs)'
19detection:
20    selection:
21        EventLog: RPCFW
22        EventID: 3
23        InterfaceUuid: e3514235-4b06-11d1-ab04-00c04fc2dcd2
24    filter:
25        OpNum:
26            - 0
27            - 1
28            - 12
29    condition: selection and not filter
30falsepositives:
31    - Unknown
32level: high

References

Related rules

to-top