Skip to content

Commit

Permalink
Update ransomware_stopdjvu.py
Browse files Browse the repository at this point in the history
  • Loading branch information
doomedraven committed Oct 28, 2024
1 parent ee3ca89 commit a978554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/signatures/windows/ransomware_stopdjvu.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ def run(self):
cmdlines = self.results.get("behavior", {}).get("summary", {}).get("executed_commands")
for cmdline in cmdlines:
lower = cmdline.lower()
if all([pattern in lower for pattern in ("--admin" , "isnottask", "isnotautostart")])
if all([pattern in lower for pattern in ("--admin" , "isnottask", "isnotautostart")]):
return True
return False

0 comments on commit a978554

Please sign in to comment.