mirror of https://github.com/fail2ban/fail2ban
- Removed the "host" command dependency. Used Python socket module instead. Thanks to K�vin Drapel
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@89 a942ae1a-1317-0410-a47c-b1dcaea8d6050.6
parent
10d0070d42
commit
0a80b69db5
35
utils/dns.py
35
utils/dns.py
|
@ -24,33 +24,16 @@ __date__ = "$Date$"
|
||||||
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
||||||
__license__ = "GPL"
|
__license__ = "GPL"
|
||||||
|
|
||||||
import os, re
|
import os, re, socket
|
||||||
|
|
||||||
def dnsToIp(dns):
|
def dnsToIp(dns):
|
||||||
""" Convert a DNS into an IP address using the "host" command.
|
""" Convert a DNS into an IP address using the Python socket module.
|
||||||
We make sure that there is no malicious usage of this function.
|
Thanks to Kévin Drapel.
|
||||||
"""
|
"""
|
||||||
ipList = list()
|
try:
|
||||||
# Check for command injection
|
return socket.gethostbyname_ex(dns)[2]
|
||||||
if checkInjection(dns):
|
except socket.gaierror:
|
||||||
return ipList
|
return list()
|
||||||
result = os.popen("host "+dns, 'r')
|
|
||||||
for i in result.readlines():
|
|
||||||
match = re.search("(?:\d{1,3}\.){3}\d{1,3}", i)
|
|
||||||
if match:
|
|
||||||
ipList.append(match.group())
|
|
||||||
return ipList
|
|
||||||
|
|
||||||
def checkInjection(command):
|
|
||||||
""" Check that command could not be used to inject shell commands.
|
|
||||||
"""
|
|
||||||
# Characters which have nothing to do in "command"
|
|
||||||
invalid = "<|>|;|\&|\||`|!"
|
|
||||||
match = re.search(invalid, command)
|
|
||||||
if match:
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
|
|
||||||
def textToDns(text):
|
def textToDns(text):
|
||||||
""" Search for possible DNS in an arbitrary text.
|
""" Search for possible DNS in an arbitrary text.
|
||||||
|
@ -90,4 +73,8 @@ def textToIp(text):
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print textToIp("jlkjlk 123.456.789.000 jlkjl rhost=lslpc49.epfl.ch www.google.ch")
|
print textToIp("jlkjlk 123.456.789.000 jlkjl rhost=lslpc49.epfl.ch www.google.ch")
|
||||||
|
try:
|
||||||
|
print socket.gethostbyname_ex("www.google")[2]
|
||||||
|
except socket.gaierror:
|
||||||
|
print "Error"
|
||||||
|
|
Loading…
Reference in New Issue