fix that autoban can not get ip when use ipv6 (#674)
This commit is contained in:
parent
5a05312189
commit
6dae6e2c51
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ if __name__ == '__main__':
|
||||||
banned = set()
|
banned = set()
|
||||||
for line in sys.stdin:
|
for line in sys.stdin:
|
||||||
if 'can not parse header when' in line:
|
if 'can not parse header when' in line:
|
||||||
ip = line.split()[-1].split(':')[0]
|
ip = line.split()[-1].split(':')[-2]
|
||||||
if ip not in ips:
|
if ip not in ips:
|
||||||
ips[ip] = 1
|
ips[ip] = 1
|
||||||
print(ip)
|
print(ip)
|
||||||
|
|
Loading…
Reference in a new issue