|
@@ -20,7 +20,7 @@ dirmask = IN_MODIFY | IN_DELETE | IN_MOVE_SELF | IN_CREATE
|
|
|
|
|
|
def blocker(ip):
|
|
|
# Utility function to block given ip as string
|
|
|
- call = run(["iptables", "-I", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
|
|
|
+ run(["iptables", "-I", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
|
|
|
# print("iptables -I DOCKER-USER -i eth0 -s {0} -j DROP".format(ip))
|
|
|
|
|
|
def is_bad(line):
|
|
@@ -80,18 +80,3 @@ while True:
|
|
|
notifier.stop()
|
|
|
TARGET.close()
|
|
|
sys.exit(0)
|
|
|
-
|
|
|
-# Collecting banned users
|
|
|
-# lusers = {}
|
|
|
-# with open(TARGET, "r") as f:
|
|
|
-# for l in f:
|
|
|
-# user = is_bad(l)
|
|
|
-# if user:
|
|
|
-# lusers[user["ip"]] = user["time"]
|
|
|
-
|
|
|
-# Itterate over all blocked users
|
|
|
-# for u in lusers:
|
|
|
-# print("Blocking {0}".format(u))
|
|
|
-# blocker(u)
|
|
|
-# now = pendulum.now()
|
|
|
-# log.info("Blocked {0} at {1}".format(u, now.to_datetime_string()))
|