failUser.py 4.2 KB

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