* Added a coverage for the force connection closing in the mssql fingerprinter.
This commit is contained in:
parent
2de474667d
commit
782ced912d
|
@ -53,6 +53,15 @@ class MSSQLFinger(HostFinger):
|
||||||
LOG.info('Socket timeout reached, maybe browser service on host: {0} doesnt exist'.format(host))
|
LOG.info('Socket timeout reached, maybe browser service on host: {0} doesnt exist'.format(host))
|
||||||
sock.close()
|
sock.close()
|
||||||
return False
|
return False
|
||||||
|
except socket.error as e:
|
||||||
|
if e.errno == socket.errno.ECONNRESET:
|
||||||
|
LOG.info('Connection was forcibly closed by the remote host. The host: {0} is rejecting the packet.'
|
||||||
|
.format(host))
|
||||||
|
else:
|
||||||
|
LOG.error('An unknown socket error occurred while trying the mssql fingerprint, closing socket.',
|
||||||
|
exc_info=True)
|
||||||
|
sock.close()
|
||||||
|
return False
|
||||||
|
|
||||||
host.services[self.SERVICE_NAME] = {}
|
host.services[self.SERVICE_NAME] = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue