2016-08-24 23:31:16 +08:00
|
|
|
import re
|
|
|
|
from network import HostFinger
|
|
|
|
from network.tools import check_port_tcp
|
|
|
|
from model.host import VictimHost
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HTTPFinger(HostFinger):
|
|
|
|
'''
|
|
|
|
Goal is to recognise HTTP servers, where what we currently care about is apache.
|
|
|
|
'''
|
|
|
|
def __init__(self):
|
|
|
|
self._config = __import__('config').WormConfiguration
|
|
|
|
self.HTTP = [(port,str(port)) for port in self._config.HTTP_PORTS]
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _banner_match(service, host, banner):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_host_fingerprint(self, host):
|
|
|
|
assert isinstance(host, VictimHost)
|
|
|
|
from requests import get
|
2016-08-25 20:43:59 +08:00
|
|
|
from requests.exceptions import Timeout,ConnectionError
|
2016-08-24 23:31:16 +08:00
|
|
|
from contextlib import closing
|
|
|
|
|
2016-08-25 20:43:59 +08:00
|
|
|
for port in self.HTTP:
|
2016-08-24 23:31:16 +08:00
|
|
|
# check both http and https
|
|
|
|
http = "http://"+host.ip_addr+":"+port[1]
|
|
|
|
https = "https://"+host.ip_addr+":"+port[1]
|
|
|
|
|
|
|
|
# try http, we don't optimise for 443
|
2016-08-25 20:43:59 +08:00
|
|
|
for url in (http, https):
|
|
|
|
try:
|
|
|
|
with closing(get(url, verify=False, timeout=1, stream=True)) as req:
|
|
|
|
server = req.headers.get('Server')
|
|
|
|
host.services['tcp-'+port[1]] = server
|
|
|
|
break # https will be the same on the same port
|
|
|
|
except Timeout:
|
|
|
|
pass
|
|
|
|
except ConnectionError: # Someone doesn't like us
|
|
|
|
pass
|
2016-08-24 23:31:16 +08:00
|
|
|
|
|
|
|
return True
|