Merge pull request #791 from SanWieb/master

added rule for Netsh RDP port opening
This commit is contained in:
Florian Roth 2020-05-23 16:50:31 +02:00 committed by GitHub
commit 9cd9a301c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,31 @@
title: Netsh RDP Port Opening
id: 01aeb693-138d-49d2-9403-c4f52d7d3d62
description: Detects netsh commands that opens the port 3389 used for RDP, used in Sarwent Malware
references:
- https://labs.sentinelone.com/sarwent-malware-updates-command-detonation/
date: 2020/05/23
tags:
- attack.command_and_control
- attack.t1076
status: experimental
author: Sander Wiebing
logsource:
category: process_creation
product: windows
detection:
selection1:
CommandLine|contains|all:
- netsh
- firewall add portopening
- tcp 3389
selection2:
CommandLine|contains|all:
- netsh
- advfirewall firewall add rule
- action=allow
- protocol=TCP
- localport=3389
condition: 1 of them
falsepositives:
- Legitimate administration
level: high