failUser.py 4.8 KB

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