david há 4 anos atrás
pai
commit
b716f4acd5
1 ficheiros alterados com 10 adições e 9 exclusões
  1. 10 9
      failUser.py

+ 10 - 9
failUser.py

@@ -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):