failUser.py 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #!/usr/bin/env python3
  2. from json import loads, dumps
  3. from json.decoder import JSONDecodeError
  4. import pendulum
  5. from subprocess import run, PIPE
  6. from os.path import exists, join
  7. from pyinotify import WatchManager, Notifier, ProcessEvent
  8. from pyinotify import IN_MODIFY, IN_DELETE, IN_MOVE_SELF, IN_CREATE
  9. import sys
  10. # Branch off the logging into a seperate file
  11. from config import log
  12. myfile = join("bbs", "logs", "enigma-bbs.log")
  13. TARGET = open(myfile, 'r')
  14. TARGET.seek(0,2)
  15. WM = WatchManager()
  16. dirmask = IN_MODIFY | IN_DELETE | IN_MOVE_SELF | IN_CREATE
  17. def blocker(ip):
  18. # Utility function to block given ip as string
  19. run(["iptables", "-I", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
  20. # print("iptables -I DOCKER-USER -i eth0 -s {0} -j DROP".format(ip))
  21. def is_bad(line):
  22. # Given line, attempt to parse... then is there a issue with it
  23. # Returns a python dict with ip and time in log
  24. if line: # Do we actually have something?
  25. try:
  26. j = loads(line)
  27. if j["msg"] == "Attempt to login with banned username":
  28. r = {}
  29. r["ip"] = "{0}".format(j["ip"][7:])
  30. r["time"] = j["time"]
  31. return r
  32. except JSONDecodeError:
  33. log.error("Failed to decode line, '{0}'".format(line))
  34. class EventHandler(ProcessEvent):
  35. def process_IN_MODIFY(self, event):
  36. if myfile not in join(event.path, event.name):
  37. return
  38. else:
  39. luser = is_bad(TARGET.readline().rstrip())
  40. if(luser):
  41. blocker(luser["ip"])
  42. now = pendulum.now().to_datetime_string()
  43. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  44. def process_IN_MOVE_SELF(self, event):
  45. log.debug("Log file moved... continuing read on stale log!")
  46. def process_IN_CREATE(self, event):
  47. if myfile in join(event.path, event.name):
  48. TARGET.close()
  49. TARGET = open(myfile, 'r')
  50. log.debug("Log file created... Catching up!")
  51. for line in TARGET.readlines():
  52. luser = is_bad(line.rstrip())
  53. if(luser):
  54. blocker(luser["ip"])
  55. now = pendulum.now().to_datetime_string()
  56. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  57. TARGET.seek(0,2)
  58. return
  59. notifier = Notifier(WM, EventHandler())
  60. index = myfile.rfind("/")
  61. WM.add_watch(myfile[:index], dirmask)
  62. while True:
  63. try:
  64. notifier.process_events()
  65. if notifier.check_events():
  66. notifier.read_events()
  67. except KeyboardInterrupt:
  68. break
  69. notifier.stop()
  70. TARGET.close()
  71. sys.exit(0)