-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathT1133-inbound-rdp-from-internet.yml
More file actions
80 lines (80 loc) · 1.77 KB
/
T1133-inbound-rdp-from-internet.yml
File metadata and controls
80 lines (80 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
title: Inbound RDP from Internet
description: 'This rule reports on inbound RDP sessions from Internet address
space, which can be abused for Initial Access by a threat actor, and has been
known to be abused by ransomware gangs. It is a hunt, and filtering will be
required to notice interesting results. This Sigma query is designed to
accompany the Corelight Threat Hunting Guide, which can be found here:
https://www3.corelight.com/corelights-introductory-guide-to-threat-hunting-with-zeek-bro-logs'
author: Corelight
tags:
- attack.initial_access
- attack.T1133
- attack.t1133
logsource:
product: zeek
service: conn
detection:
condition: selection and not 1 of filter*
filter_zero_response_data:
resp_bytes: 0
filter_private_ipv4:
src_ip|startswith:
- '10.'
- 192.168.
- 172.16.
- 172.17.
- 172.18.
- 172.19.
- 172.20.
- 172.21.
- 172.22.
- 172.23.
- 172.24.
- 172.25.
- 172.26.
- 172.27.
- 172.28.
- 172.29.
- 172.30.
- 172.31.
- '127.'
- 169.254.
filter_private_ipv6:
- src_ip: ::1
- src_ip|startswith:
- 'fe80::'
- 'fc00::'
selection:
dest_ip|startswith:
- '10.'
- 192.168.
- 172.16.
- 172.17.
- 172.18.
- 172.19.
- 172.20.
- 172.21.
- 172.22.
- 172.23.
- 172.24.
- 172.25.
- 172.26.
- 172.27.
- 172.28.
- 172.29.
- 172.30.
- 172.31.
- '127.'
- 169.254.
service|contains: 'rdp'
fields:
- id.orig_h
- id.resp_h
- id.resp_p
- service
falsepositive:
- Some organizations have intentionally-exposed RDP services, such as RDP
gateways or virtual desktop infrastructure. If these things are being exposed
to the Internet intentionally, this will need to be filtered out from the
results.
level: low