|
@@ -9,9 +9,11 @@ from pyinotify import IN_MODIFY, IN_DELETE, IN_MOVE_SELF, IN_CREATE
|
|
|
import sys
|
|
|
|
|
|
# Branch off the logging into a seperate file
|
|
|
-from config import log
|
|
|
+from config import log, load_config, add_block, rm_block, check_blocks
|
|
|
|
|
|
-myfile = join("bbs", "logs", "enigma-bbs.log")
|
|
|
+myConfig = load_config()
|
|
|
+
|
|
|
+myfile = myConfig["target"]
|
|
|
TARGET = open(myfile, 'r')
|
|
|
TARGET.seek(0,2)
|
|
|
|
|
@@ -23,6 +25,11 @@ def blocker(ip):
|
|
|
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 unblocker(ip):
|
|
|
+ # Utility function to unblock given ip as string
|
|
|
+ run(["iptables", "-D", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
|
|
|
+ # print("iptables -D DOCKER-USER -i eth0 -s {0} -j DROP".format(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
|
|
@@ -37,6 +44,15 @@ def is_bad(line):
|
|
|
except JSONDecodeError:
|
|
|
log.error("Failed to decode line, '{0}'".format(line))
|
|
|
|
|
|
+def checkup():
|
|
|
+ # Check all our blocks
|
|
|
+ unblocks = check_blocks()
|
|
|
+ if unblocks:
|
|
|
+ for ip in unblocks:
|
|
|
+ log.info("Unblock {0}".format(ip))
|
|
|
+ unblocker(ip)
|
|
|
+ rm_block(ip)
|
|
|
+
|
|
|
class EventHandler(ProcessEvent):
|
|
|
def process_IN_MODIFY(self, event):
|
|
|
if myfile not in join(event.path, event.name):
|
|
@@ -47,6 +63,8 @@ class EventHandler(ProcessEvent):
|
|
|
blocker(luser["ip"])
|
|
|
now = pendulum.now().to_datetime_string()
|
|
|
log.info("Blocked {0} at {1}".format(luser["ip"], now))
|
|
|
+ add_block(luser["ip"], now)
|
|
|
+
|
|
|
|
|
|
def process_IN_MOVE_SELF(self, event):
|
|
|
log.debug("Log file moved... continuing read on stale log!")
|
|
@@ -71,9 +89,15 @@ WM.add_watch(myfile[:index], dirmask)
|
|
|
|
|
|
while True:
|
|
|
try:
|
|
|
+ now = pendulum.now()
|
|
|
+ last = pendulum.parse(myConfig["last_unblock"])
|
|
|
+ if now.diff(last).in_hours():
|
|
|
+ myConfig["last_unblock"] = now.to_datetime_string()
|
|
|
+ checkup()
|
|
|
notifier.process_events()
|
|
|
if notifier.check_events():
|
|
|
notifier.read_events()
|
|
|
+ # Also check any of our blocks too
|
|
|
except KeyboardInterrupt:
|
|
|
break
|
|
|
|