failUser.py 3.6 KB

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