-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
193 changed files
with
124,815 additions
and
82,125 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,23 @@ | ||
rule AVDump | ||
{ | ||
meta: | ||
description = "Detection patterns for the tool 'AVDump' taken from the ThreatHunting-Keywords github project" | ||
author = "@mthcht" | ||
reference = "https://github.com/mthcht/ThreatHunting-Keywords" | ||
tool = "AVDump" | ||
rule_category = "greyware_tool_keyword" | ||
|
||
strings: | ||
// Description: Avast AV to dump LSASS (C:\Program Files\Avast Software\Avast) | ||
// Reference: https://rosesecurity.gitbook.io/red-teaming-ttps/windows#av-lsass-dump | ||
$string1 = /\\AvDump\.exe\s\-\-pid\s.{0,1000}\s\-\-exception_ptr\s0/ nocase ascii wide | ||
// Description: Avast AV to dump LSASS (C:\Program Files\Avast Software\Avast) | ||
// Reference: https://rosesecurity.gitbook.io/red-teaming-ttps/windows#av-lsass-dump | ||
$string2 = /AvDump\.exe\s\-\-pid\s.{0,1000}\s\-\-dump_file\s.{0,1000}\.dmp/ nocase ascii wide | ||
// Description: Avast AV to dump LSASS (C:\Program Files\Avast Software\Avast) | ||
// Reference: N/A | ||
$string3 = "Dumped by AvDump" nocase ascii wide | ||
condition: | ||
any of them | ||
} |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
rule Dispossessor | ||
{ | ||
meta: | ||
description = "Detection patterns for the tool 'Dispossessor' taken from the ThreatHunting-Keywords github project" | ||
author = "@mthcht" | ||
reference = "https://github.com/mthcht/ThreatHunting-Keywords" | ||
tool = "Dispossessor" | ||
rule_category = "greyware_tool_keyword" | ||
|
||
strings: | ||
// Description: tool used by Dispossessor ransomware group to remove AV | ||
// Reference: https://vx-underground.org/Archive/Dispossessor%20Leaks | ||
$string1 = /\\BEST_uninstallTool\.exe/ nocase ascii wide | ||
// Description: powershell script to find a spn - abused by Dispossessor ransomware group | ||
// Reference: https://vx-underground.org/Archive/Dispossessor%20Leaks | ||
$string2 = /\\findspn\.ps1/ nocase ascii wide | ||
condition: | ||
any of them | ||
} |
Oops, something went wrong.