failUser.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. # https://github.com/manos/python-inotify-tail_example/blob/master/tail-F_inotify.py
  11. # Branch off the logging into a seperate file
  12. from config import log, load_config, save_config, add_block, rm_block, check_blocks
  13. myConfig = load_config()
  14. myfile = myConfig["target"]
  15. TARGET = open(myfile, 'r')
  16. TARGET.seek(0,2)
  17. WM = WatchManager()
  18. dirmask = IN_MODIFY | IN_DELETE | IN_MOVE_SELF | IN_CREATE
  19. def blocker(ip):
  20. # Utility function to block given ip as string
  21. #run(["iptables", "-I", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
  22. print("iptables -I DOCKER-USER -i eth0 -s {0} -j DROP".format(ip))
  23. def unblocker(ip):
  24. # Utility function to unblock given ip as string
  25. #run(["iptables", "-D", "DOCKER-USER", "-i", "eth0", "-s", ip, "-j", "DROP"], stdout=PIPE, check=True)
  26. print("iptables -D DOCKER-USER -i eth0 -s {0} -j DROP".format(ip))
  27. def is_bad(line):
  28. # Given line, attempt to parse... then is there a issue with it
  29. # Returns a python dict with ip and time in log
  30. if line: # Do we actually have something?
  31. try:
  32. j = loads(line)
  33. if j["msg"] == "Attempt to login with banned username":
  34. r = {}
  35. r["ip"] = "{0}".format(j["ip"][7:])
  36. r["time"] = j["time"]
  37. return r
  38. except JSONDecodeError:
  39. log.error("Failed to decode line, '{0}'".format(line))
  40. def checkup():
  41. # Check all our blocks
  42. unblocks = check_blocks()
  43. if unblocks:
  44. for ip in unblocks:
  45. log.info("Unblocked {0}".format(ip))
  46. unblocker(ip)
  47. rm_block(ip)
  48. class EventHandler(ProcessEvent):
  49. def process_IN_MODIFY(self, event):
  50. if myfile not in join(event.path, event.name):
  51. return
  52. else:
  53. #luser = is_bad(TARGET.readline().rstrip())
  54. for line in TARGET.readline():
  55. luser = is_bad(line.rstrip())
  56. if(luser):
  57. blocker(luser["ip"])
  58. now = pendulum.now().to_atom_string()
  59. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  60. add_block(luser["ip"], now)
  61. def process_IN_MOVE_SELF(self, event):
  62. log.debug("Log file moved... continuing read on stale log!")
  63. def process_IN_CREATE(self, event):
  64. global TARGET
  65. if myfile in join(event.path, event.name):
  66. TARGET.close()
  67. TARGET = open(myfile, 'r')
  68. log.debug("Log file created... Catching up!")
  69. for line in TARGET.readlines():
  70. luser = is_bad(line.rstrip())
  71. if(luser):
  72. blocker(luser["ip"])
  73. now = pendulum.now().to_atom_string()
  74. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  75. add_block(luser["ip"], now)
  76. TARGET.seek(0,2)
  77. return
  78. notifier = Notifier(WM, EventHandler())
  79. index = myfile.rfind("/")
  80. WM.add_watch(myfile[:index], dirmask)
  81. while True:
  82. try:
  83. now = pendulum.now()
  84. last = pendulum.parse(myConfig["last_unblock"])
  85. if now.diff(last).in_hours() > 1:
  86. myConfig["last_unblock"] = now.to_atom_string()
  87. save_config(myConfig)
  88. checkup()
  89. notifier.process_events()
  90. if notifier.check_events():
  91. notifier.read_events()
  92. except KeyboardInterrupt:
  93. break
  94. notifier.stop()
  95. TARGET.close()
  96. sys.exit(0)