Skip to content

Commit

Permalink
Bugfix in process scan
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Roth committed Apr 10, 2018
1 parent a18c74a commit 8123dce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/lokilogger.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import socket
from helpers import removeNonAsciiDrop

__version__ = '0.27.0'
__version__ = '0.27.1'

# Logger Class -----------------------------------------------------------------
class LokiLogger():
Expand Down
2 changes: 1 addition & 1 deletion loki.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def scan_processes(self):
logger.log("INFO", "ProcessScan", "Too many matches on process memory - most likely a false positive %s" % process_info)
elif len(alerts) > 0:
for alert in alerts:
logger.log("ALERT", alert)
logger.log("ALERT", "ProcessScan", alert)
except Exception, e:
if logger.debug:
traceback.print_exc()
Expand Down

0 comments on commit 8123dce

Please sign in to comment.