2016-10-17 19:31:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2016-10-25 16:19:08 +02:00
|
|
|
import socket
|
|
|
|
import pytest
|
2016-10-17 19:31:13 +02:00
|
|
|
|
|
|
|
|
2016-10-25 16:19:08 +02:00
|
|
|
# pylint: disable=attribute-defined-outside-init
|
2016-10-17 19:31:13 +02:00
|
|
|
class TestErrors(object):
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def init(self, ssh_audit):
|
|
|
|
self.AuditConf = ssh_audit.AuditConf
|
|
|
|
self.audit = ssh_audit.audit
|
|
|
|
|
|
|
|
def _conf(self):
|
|
|
|
conf = self.AuditConf('localhost', 22)
|
2016-10-19 19:53:47 +02:00
|
|
|
conf.colors = False
|
2016-10-17 19:31:13 +02:00
|
|
|
conf.batch = True
|
|
|
|
return conf
|
|
|
|
|
|
|
|
def test_connection_refused(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.errors['connect'] = socket.error(61, 'Connection refused')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 1
|
|
|
|
assert 'Connection refused' in lines[-1]
|
|
|
|
|
|
|
|
def test_connection_closed_before_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(socket.error(54, 'Connection reset by peer'))
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 1
|
|
|
|
assert 'did not receive banner' in lines[-1]
|
|
|
|
|
|
|
|
def test_connection_closed_after_header(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'header line 1\n')
|
|
|
|
vsocket.rdata.append(b'header line 2\n')
|
|
|
|
vsocket.rdata.append(socket.error(54, 'Connection reset by peer'))
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 3
|
|
|
|
assert 'did not receive banner' in lines[-1]
|
|
|
|
|
|
|
|
def test_connection_closed_after_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-2.0-ssh-audit-test\r\n')
|
|
|
|
vsocket.rdata.append(socket.error(54, 'Connection reset by peer'))
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 2
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert 'reset by peer' in lines[-1]
|
|
|
|
|
|
|
|
def test_empty_data_after_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-2.0-ssh-audit-test\r\n')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 2
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert 'empty' in lines[-1]
|
|
|
|
|
|
|
|
def test_wrong_data_after_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-2.0-ssh-audit-test\r\n')
|
|
|
|
vsocket.rdata.append(b'xxx\n')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 2
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert 'xxx' in lines[-1]
|
|
|
|
|
2016-10-19 19:53:47 +02:00
|
|
|
def test_non_ascii_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-2.0-ssh-audit-test\xc3\xbc\r\n')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 3
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert 'ASCII' in lines[-2]
|
|
|
|
assert lines[-3].endswith('SSH-2.0-ssh-audit-test?')
|
|
|
|
|
2016-10-18 08:45:03 +02:00
|
|
|
def test_nonutf8_data_after_banner(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-2.0-ssh-audit-test\r\n')
|
|
|
|
vsocket.rdata.append(b'\x81\xff\n')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
self.audit(self._conf())
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 2
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert '\\x81\\xff' in lines[-1]
|
|
|
|
|
2016-10-17 19:31:13 +02:00
|
|
|
def test_protocol_mismatch_by_conf(self, output_spy, virtual_socket):
|
|
|
|
vsocket = virtual_socket
|
|
|
|
vsocket.rdata.append(b'SSH-1.3-ssh-audit-test\r\n')
|
|
|
|
vsocket.rdata.append(b'Protocol major versions differ.\n')
|
|
|
|
output_spy.begin()
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
conf = self._conf()
|
|
|
|
conf.ssh1, conf.ssh2 = True, False
|
|
|
|
self.audit(conf)
|
|
|
|
lines = output_spy.flush()
|
|
|
|
assert len(lines) == 3
|
|
|
|
assert 'error reading packet' in lines[-1]
|
|
|
|
assert 'major versions differ' in lines[-1]
|