Skip to content

Commit

Permalink
Fixing typo in procmem_yara.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-mog authored Jul 24, 2024
1 parent d3b397d commit a5b0896
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 a5b0896

Please sign in to comment.