Merge pull request #332 from sky-chen/master

flush autoban output
This commit is contained in:
clowwindy 2015-05-03 15:25:14 +08:00
commit 893d21da76
1 changed files with 2 additions and 0 deletions

View File

@ -42,10 +42,12 @@ if __name__ == '__main__':
if ip not in ips:
ips[ip] = 1
print(ip)
sys.stdout.flush()
else:
ips[ip] += 1
if ip not in banned and ips[ip] >= config.count:
banned.add(ip)
cmd = 'iptables -A INPUT -s %s -j DROP' % ip
print(cmd, file=sys.stderr)
sys.stderr.flush()
os.system(cmd)