forked from p15670423/monkey
PEP8
This commit is contained in:
parent
8c9014684c
commit
4f1dfb4016
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue