(self)
| 27 | self.fingerprint = Fingerprint |
| 28 | |
| 29 | def _conf(self): |
| 30 | conf = self.AuditConf('localhost', 22) |
| 31 | conf.colors = False |
| 32 | conf.batch = True |
| 33 | conf.verbose = True |
| 34 | conf.ssh1 = True |
| 35 | conf.ssh2 = False |
| 36 | conf.skip_rate_test = True |
| 37 | return conf |
| 38 | |
| 39 | def _create_ssh1_packet(self, payload, valid_crc=True): |
| 40 | padding = -(len(payload) + 4) % 8 |
no outgoing calls
no test coverage detected