Skip to content

Commit

Permalink
Merge pull request #440 from cccs-mog/patch-2
Browse files Browse the repository at this point in the history
Fixing typo in procmem_yara.py
  • Loading branch information
doomedraven authored Jul 24, 2024
2 parents d3b397d + a5b0896 commit 22e5b71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/signatures/all/procmem_yara.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def run(self):
elif rule.lower() in malicious and self.severity <= 4:
self.severity = 5
if private:
self.data.append({"Hit": "PID %s trigged the Yara rule '%s'" % (pid, rule)})
self.data.append({"Hit": "PID %s triggered the Yara rule '%s'" % (pid, rule)})
else:
self.data.append({"Hit": "PID %s trigged the Yara rule '%s' with data '%s'" % (pid, rule, data)})
self.data.append({"Hit": "PID %s triggered the Yara rule '%s' with data '%s'" % (pid, rule, data)})
return True

return False

0 comments on commit 22e5b71

Please sign in to comment.