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.
Merge PR SigmaHQ#4684 from @phantinuss - Multiple FP fixes & rule upd…
…ates fix: Firewall Rule Modified In The Windows Firewall Exception List - new optional filter Brave browser fix: Outbound RDP Connections Over Non-Standard Tools - new FP filter for RAS TSplus fix: PowerShell Core DLL Loaded By Non PowerShell Process - new optional filter for chocolatey fix: Remote Thread Creation In Mstsc.Exe From Suspicious Location - Fix a broken path string fix: Remote Thread Creation In Uncommon Target Image - Reduce level to medium and remove explorer as target due to FP rates. fix: Uncommon New Firewall Rule Added In Windows Firewall Exception List - Fix the filters to be more generic new: Rare Remote Thread Creation By Uncommon Source Image - A split of 66d31e5f-52d6-40a4-9615-002d3789a119 update: All Rules Have Been Deleted From The Windows Firewall Configuration - Remove program files filter to increase coverage. As deleting rules shouldn't be a "normal" behavior. update: CreateRemoteThread API and LoadLibrary - Reduce level to medium and convert to a TH rule update: New Firewall Rule Added In Windows Firewall Exception List For Potential Suspicious Application - Add additional paths to increase coverage update: Powershell Install a DLL in System Directory - enhance rule context in big script blocks update: Remote Thread Creation By Uncommon Source Image - Reduced level to medium and move high indicators to 02d1d718-dd13-41af-989d-ea85c7fab93f --------- Co-authored-by: nasbench <[email protected]>
- Loading branch information
1 parent
c1a67a3
commit 399cca3
Showing
14 changed files
with
181 additions
and
138 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
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
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
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
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
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
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
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
67 changes: 67 additions & 0 deletions
67
rules/windows/create_remote_thread/create_remote_thread_win_susp_relevant_source_image.yml
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,67 @@ | ||
title: Rare Remote Thread Creation By Uncommon Source Image | ||
id: 02d1d718-dd13-41af-989d-ea85c7fab93f | ||
related: | ||
- id: 66d31e5f-52d6-40a4-9615-002d3789a119 | ||
type: derived | ||
status: experimental | ||
description: Detects uncommon processes creating remote threads. | ||
references: | ||
- Personal research, statistical analysis | ||
- https://lolbas-project.github.io | ||
author: Perez Diego (@darkquassar), oscd.community | ||
date: 2019/10/27 | ||
modified: 2024/01/17 | ||
tags: | ||
- attack.privilege_escalation | ||
- attack.defense_evasion | ||
- attack.t1055 | ||
logsource: | ||
product: windows | ||
category: create_remote_thread | ||
detection: | ||
selection: | ||
SourceImage|endswith: | ||
- '\bash.exe' | ||
- '\cscript.exe' | ||
- '\cvtres.exe' | ||
- '\defrag.exe' | ||
- '\dnx.exe' | ||
- '\esentutl.exe' | ||
- '\excel.exe' | ||
- '\expand.exe' | ||
- '\find.exe' | ||
- '\findstr.exe' | ||
- '\forfiles.exe' | ||
- '\gpupdate.exe' | ||
- '\hh.exe' | ||
- '\installutil.exe' | ||
- '\lync.exe' | ||
- '\makecab.exe' | ||
- '\mDNSResponder.exe' | ||
- '\monitoringhost.exe' # Loads .NET CLR by default and thus a favorite for process injection for .NET in-memory offensive tools. | ||
- '\msbuild.exe' | ||
- '\mshta.exe' | ||
- '\mspaint.exe' | ||
- '\outlook.exe' | ||
- '\ping.exe' | ||
- '\provtool.exe' | ||
- '\python.exe' | ||
- '\regsvr32.exe' | ||
- '\robocopy.exe' | ||
- '\runonce.exe' | ||
- '\sapcimc.exe' | ||
- '\smartscreen.exe' | ||
- '\spoolsv.exe' | ||
- '\tstheme.exe' | ||
- '\userinit.exe' | ||
- '\vssadmin.exe' | ||
- '\vssvc.exe' | ||
- '\w3wp.exe' | ||
- '\winscp.exe' | ||
- '\winword.exe' | ||
- '\wmic.exe' | ||
- '\wscript.exe' | ||
condition: selection | ||
falsepositives: | ||
- This rule is best put in testing first in order to create a baseline that reflects the data in your environment. | ||
level: high |
Oops, something went wrong.