Skip to content

Commit e68b3e4

Browse files
author
clowwindy
committed
add autoban
1 parent bac675d commit e68b3e4

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

utils/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Useful Tools
2+
===========
3+
4+
autoban.py
5+
----------
6+
7+
Automatically ban IPs that try to brute force crack the server.
8+
9+
python autoban.py < /var/log/shadowsocks.log
10+
11+
Use `-c` to specify with how many failure times it should be considered an
12+
attack. Default is 3.

utils/autoban.py

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
4+
# Copyright (c) 2015 clowwindy
5+
#
6+
# Permission is hereby granted, free of charge, to any person obtaining a copy
7+
# of this software and associated documentation files (the "Software"), to deal
8+
# in the Software without restriction, including without limitation the rights
9+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
# copies of the Software, and to permit persons to whom the Software is
11+
# furnished to do so, subject to the following conditions:
12+
#
13+
# The above copyright notice and this permission notice shall be included in
14+
# all copies or substantial portions of the Software.
15+
#
16+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
# SOFTWARE.
23+
24+
from __future__ import absolute_import, division, print_function, \
25+
with_statement
26+
27+
import os
28+
import sys
29+
import argparse
30+
31+
if __name__ == '__main__':
32+
parser = argparse.ArgumentParser(description='See README')
33+
parser.add_argument('-c', '--count', default=3, type=int,
34+
help='with how many failure times it should be '
35+
'considered an attack')
36+
config = parser.parse_args()
37+
ips = {}
38+
banned = set()
39+
for line in sys.stdin:
40+
if 'can not parse header when' in line:
41+
ip = line.split()[-1].split(':')[0]
42+
if ip not in ips:
43+
ips[ip] = 1
44+
print(ip)
45+
else:
46+
ips[ip] += 1
47+
if ip not in banned and ips[ip] >= config.count:
48+
banned.add(ip)
49+
cmd = 'iptables -A INPUT -s %s -j DROP' % ip
50+
print(cmd, file=sys.stderr)
51+
os.system(cmd)

0 commit comments

Comments
 (0)