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 pull request SigmaHQ#815 from Neo23x0/rule-devel
Rule devel
- Loading branch information
Showing
3 changed files
with
52 additions
and
2 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,25 @@ | ||
title: Covenant Launcher Indicators | ||
id: c260b6db-48ba-4b4a-a76f-2f67644e99d2 | ||
description: Detects suspicious command lines used in Covenant luanchers | ||
status: experimental | ||
references: | ||
- https://posts.specterops.io/covenant-v0-5-eee0507b85ba | ||
author: Florian Roth | ||
date: 2020/06/04 | ||
tags: | ||
- attack.execution | ||
- attack.t1086 | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection: | ||
CommandLine|contains: | ||
- ' -Sta -Nop -Window Hidden -Command ' | ||
- ' -Sta -Nop -Window Hidden -EncodedCommand ' | ||
- 'sv o (New-Object IO.MemorySteam);sv d ' | ||
- 'mshta file.hta' | ||
- 'GruntHTTP' | ||
- '-EncodedCommand cwB2ACAAbwAgA' | ||
condition: selection | ||
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: ETW Disabled | ||
id: 11985f9f-2590-4f59-beea-88cc0507f350 | ||
status: experimental | ||
description: Detects methods that disable ETW (Event Tracing) to evade detection | ||
references: | ||
- https://twitter.com/_xpn_/status/1268712093928378368?s=20 | ||
- https://gist.github.com/Cyb3rWard0g/a4a115fd3ab518a0e593525a379adee3 | ||
tags: | ||
- attack.defense_evasion | ||
- attack.t1089 | ||
author: Florian Roth | ||
date: 2020/06/06 | ||
logsource: | ||
product: windows | ||
service: sysmon | ||
detection: | ||
selection: | ||
EventID: 13 # value set | ||
TargetObject|contains: 'SOFTWARE\Microsoft\.NETFramework\ETWEnabled' | ||
Details|contains: '0x00000000' | ||
condition: selection | ||
fields: | ||
- Image | ||
falsepositives: | ||
- Services or programs that disable the ETW temporarily | ||
level: high |
3 changes: 1 addition & 2 deletions
3
rules/windows/sysmon/sysmon_new_dll_added_to_appinit_dlls_registry_key.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