|
@@ -26,15 +26,16 @@ def blocker(ip):
|
|
|
def is_bad(line):
|
|
|
# Given line, attempt to parse... then is there a issue with it
|
|
|
# Returns a python dict with ip and time in log
|
|
|
- try:
|
|
|
- j = loads(line)
|
|
|
- if j["msg"] == "Attempt to login with banned username":
|
|
|
- r = {}
|
|
|
- r["ip"] = "{0}".format(j["ip"][7:])
|
|
|
- r["time"] = j["time"]
|
|
|
- return r
|
|
|
- except JSONDecodeError:
|
|
|
- log.error("Failed to decode line, '{0}'".format(line))
|
|
|
+ if line: # Do we actually have something?
|
|
|
+ try:
|
|
|
+ j = loads(line)
|
|
|
+ if j["msg"] == "Attempt to login with banned username":
|
|
|
+ r = {}
|
|
|
+ r["ip"] = "{0}".format(j["ip"][7:])
|
|
|
+ r["time"] = j["time"]
|
|
|
+ return r
|
|
|
+ except JSONDecodeError:
|
|
|
+ log.error("Failed to decode line, '{0}'".format(line))
|
|
|
|
|
|
class EventHandler(ProcessEvent):
|
|
|
def process_IN_MODIFY(self, event):
|