failUser.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. struct = {}
  44. state = 0
  45. def is_bad(line):
  46. global state, struct
  47. if state == 0 and line.startswith("SUSPECTED"):
  48. _, user, at = line.split("'")
  49. at = at.replace(" on ", "")
  50. struct = {"user": user.lower(), "time": at}
  51. state = 1
  52. print(struct)
  53. elif state == 1 and line.startswith("Using port"):
  54. _, ip = line.split("[")
  55. ip = ip.replace("]", "")
  56. struct["ip"] = ip
  57. state = 0
  58. print(struct)
  59. return struct
  60. def checkup():
  61. # Check all our blocks
  62. unblocks = check_blocks()
  63. if unblocks:
  64. for ip in unblocks:
  65. log.info("Unblocked {0}".format(ip))
  66. unblocker(ip)
  67. rm_block(ip)
  68. class EventHandler(ProcessEvent):
  69. def process_IN_MODIFY(self, event):
  70. if myfile not in join(event.path, event.name):
  71. return
  72. else:
  73. #luser = is_bad(target.readline().rstrip())
  74. for line in target.readlines():
  75. luser = is_bad(line.rstrip())
  76. if(luser):
  77. blocker(luser["ip"])
  78. now = pendulum.now().to_atom_string()
  79. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  80. add_block(luser["ip"], now)
  81. def process_IN_MOVE_SELF(self, event):
  82. log.debug("Log file moved... continuing read on stale log!")
  83. def process_IN_CREATE(self, event):
  84. global target
  85. if myfile in join(event.path, event.name):
  86. target.close()
  87. target = open(myfile, 'r')
  88. log.debug("Log file created... Catching up!")
  89. for line in target.readlines():
  90. luser = is_bad(line.rstrip())
  91. if(luser):
  92. blocker(luser["ip"])
  93. now = pendulum.now().to_atom_string()
  94. log.info("Blocked {0} at {1}".format(luser["ip"], now))
  95. add_block(luser["ip"], now)
  96. target.seek(0,2)
  97. return
  98. notifier = Notifier(WM, EventHandler())
  99. index = myfile.rfind("/")
  100. WM.add_watch(myfile[:index], dirmask)
  101. last = pendulum.parse(last_run)
  102. while True:
  103. try:
  104. now = pendulum.now()
  105. if now.diff(last).in_hours() > 1:
  106. last = now
  107. checkup()
  108. notifier.process_events()
  109. if notifier.check_events():
  110. notifier.read_events()
  111. except KeyboardInterrupt:
  112. break
  113. # Issue stop on event system
  114. notifier.stop()
  115. target.close()
  116. # Update config
  117. myConfig["last_unblock"] = last.to_atom_string()
  118. save_config(myConfig)
  119. exit(0)