Skip to content

Commit

Permalink
Merge pull request #398 from andreiminca/raccoon_infostealer_mutex
Browse files Browse the repository at this point in the history
Update infostealer_raccoon.py
  • Loading branch information
doomedraven authored Mar 7, 2024
2 parents ce3df16 + 99350be commit 793fb59
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions modules/signatures/windows/infostealer_raccoon.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,27 @@ def on_complete(self):
return True
else:
return False
class RaccoonInfoStealerMutex(Signature):
name = "asyncrat_mutex"
description = "Creates known Raccoon Infostealer mutex"
severity = 3
categories = ["infostealer", "keylogger", "rat"]
families = ["Raccoon"]
authors = ["andreiminca"]
minimum = "1.3"
ttps = ["T1219"] # MITRE v6,7,8
mbcs = ["OC0003", "C0042"] # micro-behaviour

def run(self):
indicators = [
".*m\\$V1-xV4v$",
]

for indicator in indicators:
match = self.check_mutex(pattern=indicator, regex=True, all=True)
if match:
for mut in match:
self.data.append({"mutex": mut})
return True

return False

0 comments on commit 793fb59

Please sign in to comment.