Ver Fonte

Removed hardcoded debuging

  This will reduce output that gets sent to the screen or to the
nohup.out file.
david há 3 anos atrás
pai
commit
6f9d840e8e
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      failUser.py

+ 2 - 2
failUser.py

@@ -67,13 +67,13 @@ def is_bad(line):
         at = at.replace(" on ", "")
         struct = {"user": user.lower(), "time": at}
         state = 1
-        print(struct)
+        #print(struct)
     elif state == 1 and line.startswith("Using port"):
         _, ip = line.split("[")
         ip = ip.replace("]", "")
         struct["ip"] = ip
         state = 0
-        print(struct)
+        #print(struct)
         return struct
 
 def checkup():