Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rdp tunneling eql #20

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions eqllib/analytics/lateral-movement/T1076-rdp-tunneling_logon.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[analytic.metadata]
categories = ["detect"]
confidence = "high"
contributors = ["SBousseaden"]
created_date = "8/24/2019"
description = "RDP Tunneling via SSH is a common technique to control interactively compromised systems behind a FW via RDP Protocol"
id = "3abf86e1-3ba3-4473-90ea-5fc37ff57d19"
name = "RDP Tunneling - Logon Event"
os = ["windows"]
tactics = ["Lateral Movement", "Connection Proxy"]
techniques = ["T1076"]


[analytic]
query = '''
security where event_id==4624 and logon_type==10 and (ip_address=="127.0.*" or ip_address=="::1") and target_user_name!="*$"
'''
17 changes: 17 additions & 0 deletions eqllib/analytics/lateral-movement/T1076-rdp-tunneling_network.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[analytic.metadata]
categories = ["detect"]
confidence = "medium"
contributors = ["SBousseaden"]
created_date = "8/24/2019"
description = "RDP Tunneling via SSH is a common technique to control interactively compromised systems behind a FW via RDP Protocol"
id = "3abf86e1-3ba3-4473-90ea-5fc37ff57d20"
name = "RDP Tunneling - Network Event"
os = ["windows"]
tactics = ["Lateral Movement", "Connection Proxy"]
techniques = ["T1076"]


[analytic]
query = '''
network where source_port==3389 and (destination_address=="127.0.*" or destination_address=="::1")
'''