failUser.py 3.9 KB

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