forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Florian Roth
committed
Feb 16, 2019
1 parent
08e0094
commit f0a4aed
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
title: RDP over Reverse SSH Tunnel WFP | ||
status: experimental | ||
description: Detects svchost hosting RDP termsvcs communicating with the loopback address and on TCP port 3389 | ||
references: | ||
- https://twitter.com/SBousseaden/status/1096148422984384514 | ||
author: Samir Bousseaden | ||
date: 2019/02/16 | ||
tags: | ||
- attack.defense_evasion | ||
- attack.command_and_control | ||
- attack.t1076 | ||
logsource: | ||
product: windows | ||
service: security | ||
detection: | ||
selection: | ||
EventID: 5156 | ||
sourceRDP: | ||
SourcePort: 3389 | ||
DestinationAddress: | ||
- '127.*' | ||
- '::1' | ||
destinationRDP: | ||
DestinationPort: 3389 | ||
SourceAddress: | ||
- '127.*' | ||
- '::1' | ||
condition: selection and ( sourceRDP or destinationRDP ) | ||
falsepositives: | ||
- unknown | ||
level: high |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
title: RDP over Reverse SSH Tunnel | ||
status: experimental | ||
description: Detects svchost hosting RDP termsvcs communicating with the loopback address and on TCP port 3389 | ||
references: | ||
- https://twitter.com/SBousseaden/status/1096148422984384514 | ||
author: Samir Bousseaden | ||
date: 2019/02/16 | ||
tags: | ||
- attack.defense_evasion | ||
- attack.command_and_control | ||
- attack.t1076 | ||
logsource: | ||
product: windows | ||
service: sysmon | ||
detection: | ||
selection: | ||
EventID: 3 | ||
Image: '*\svchost.exe' | ||
SourcePort: 3389 | ||
DestinationIp: | ||
- '127.*' | ||
- '::1' | ||
condition: selection | ||
falsepositives: | ||
- unknown | ||
level: high |