Skip to content

Commit

Permalink
Based on new threat intel two rules are added.
Browse files Browse the repository at this point in the history
  • Loading branch information
faisalusuf committed Nov 29, 2024
1 parent d804e9c commit 7c3cbf9
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
26 changes: 26 additions & 0 deletions rules/windows/dns_query/dns_query_win_microsoft_quickassist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
title: Dns Query Win Microsoft Quickassist
id: 882e858a-3233-4ba8-855e-2f3d3575803d
status: test
description: Detects Microsoft Quick Assist primary endpoint that is used to establish a session.
references:
- https://www.microsoft.com/en-us/security/blog/2024/05/15/threat-actors-misusing-quick-assist-in-social-engineering-attacks-leading-to-ransomware/
- https://www.linkedin.com/posts/kevin-beaumont-security_ive-been-assisting-a-few-orgs-hit-with-successful-activity-7268055739116445701-xxjZ/
- https://x.com/cyb3rops/status/1862406110365245506
- https://learn.microsoft.com/en-us/windows/client-management/client-tools/quick-assist
author: Muhammad Faisal (@faisalusuf)
date: 2024-11-29
tags:
- attack.t1071.001
- attack.t1210
- attack.initial-access
logsource:
category: dns_query
product: windows
detection:
selection:
QueryName|endswith: 'remoteassistance.support.services.microsoft.com'
Image|endswith: '\quickassist.exe'
condition: selection
falsepositives:
- Legitimate use of Quick Assist in the environment.
level: medium
24 changes: 24 additions & 0 deletions rules/windows/process_creation/proc_creation_win_quick_assist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
title: Proc Creation Win Quick Assist
id: e20b5b14-ce93-4230-88af-981983ef6e74
status: test
description: Detects the use of Microsoft Quick Assist tool. Which can be used by attackers to gain remote access.
references:
- https://www.microsoft.com/en-us/security/blog/2024/05/15/threat-actors-misusing-quick-assist-in-social-engineering-attacks-leading-to-ransomware/
- https://www.linkedin.com/posts/kevin-beaumont-security_ive-been-assisting-a-few-orgs-hit-with-successful-activity-7268055739116445701-xxjZ/
- https://x.com/cyb3rops/status/1862406110365245506
- https://learn.microsoft.com/en-us/windows/client-management/client-tools/quick-assist
author: Muhammad Faisal (@faisalusuf)
date: 2024-11-29
tags:
- attack.command-and-control
- attack.t1219
logsource:
category: process_creation
product: windows
detection:
selection:
- Image|endswith: '\quickassist.exe'
condition: selection
falsepositives:
- Legitimate use of Quick Assist in the environment
level: medium

0 comments on commit 7c3cbf9

Please sign in to comment.