This commit is contained in:
daniel goldberg 2016-08-25 15:45:47 +03:00
parent 8c9014684c
commit 4f1dfb4016
1 changed files with 11 additions and 15 deletions

View File

@ -1,19 +1,15 @@
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