(self, line)
| 347 | raise Exception('The server returned an error: %s', self.client.result['message']) |
| 348 | |
| 349 | def do_dump(self, line): |
| 350 | print('Dumping domain info...') |
| 351 | self.stdout.flush() |
| 352 | self.domain_dumper.domainDump() |
| 353 | print('Domain info dumped into lootdir!') |
| 354 | |
| 355 | def do_start_tls(self, line): |
| 356 | if not self.client.tls_started and not self.client.server.ssl: |
nothing calls this directly
no outgoing calls
no test coverage detected