|
@@ -35,20 +35,38 @@ def unblocker(ip):
|
|
|
#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
|
|
|
+# if line: # Do we actually have something?
|
|
|
+# try:
|
|
|
+# j = loads(line)
|
|
|
+# #if j["msg"] == "Attempt to login with banned username":
|
|
|
+# if j["username"] in bad_users:
|
|
|
+# 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))
|
|
|
+
|
|
|
+struct = {}
|
|
|
+state = 0
|
|
|
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
|
|
|
- if line: # Do we actually have something?
|
|
|
- try:
|
|
|
- j = loads(line)
|
|
|
- #if j["msg"] == "Attempt to login with banned username":
|
|
|
- if j["username"] in bad_users:
|
|
|
- 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))
|
|
|
+ global state, struct
|
|
|
+ if state == 0 and line.startswith("SUSPECTED"):
|
|
|
+ _, user, at = line.split("'")
|
|
|
+ at = at.replace(" on ", "")
|
|
|
+ struct = {"user": user.lower(), "time": at}
|
|
|
+ state = 1
|
|
|
+ print(struct)
|
|
|
+ elif state == 1 and line.startswith("Using port"):
|
|
|
+ _, ip = line.split("[")
|
|
|
+ ip = ip.replace("]", "")
|
|
|
+ struct["ip"] = ip
|
|
|
+ state = 0
|
|
|
+ print(struct)
|
|
|
+ return struct
|
|
|
|
|
|
def checkup():
|
|
|
# Check all our blocks
|