Browse Source

Added whitelisting ips

  It appears I missed that on my local copy when I moved it over to synchronet logs.
root 3 years ago
parent
commit
bcea5e8552
4 changed files with 20 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 6 0
      failUser.py
  3. 6 0
      keeper.sh
  4. 7 0
      startfail.sh

+ 1 - 0
.gitignore

@@ -11,3 +11,4 @@ tail-F_inotify.py
 failUser.cfg
 blocks.json
 nohup.out
+*.log

+ 6 - 0
failUser.py

@@ -89,6 +89,9 @@ class EventHandler(ProcessEvent):
             for line in target.readlines():
                 luser = is_bad(line.rstrip())
                 if(luser):
+                    for ip in myconfig["good_users"]:
+                        if luser["ip"] == ip:
+                            return # Don't block ourselves
                     blocker(luser["ip"])
                     now = pendulum.now().to_atom_string()
                     log.info("Blocked {0} at {1}".format(luser["ip"], now))
@@ -107,6 +110,9 @@ class EventHandler(ProcessEvent):
             for line in target.readlines():
                 luser = is_bad(line.rstrip())
                 if(luser):
+                    for ip in myconfig["good_users"]:
+                        if luser["ip"] == ip:
+                            return # Don't block ourselves
                     blocker(luser["ip"])
                     now = pendulum.now().to_atom_string()
                     log.info("Blocked {0} at {1}".format(luser["ip"], now))

+ 6 - 0
keeper.sh

@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# iptables -I DOCKER-USER -i eth0 -s 73.0.0.0/8 -j DROP
+iptables -I INPUT -i eth0 -s 73.0.0.0/8 -j DROP
+iptables -I INPUT -i eth0 -s 100.24.0.0/13 -j DROP
+

+ 7 - 0
startfail.sh

@@ -0,0 +1,7 @@
+#!/bin/bash
+
+cd /root/dev/failUser/ 
+
+nohup bin/python3 ./failUser.py &
+
+