returns a sorted list of all hosts
(self)
| 600 | return self._scan_result["scan"][host] |
| 601 | |
| 602 | def all_hosts(self): |
| 603 | """ |
| 604 | returns a sorted list of all hosts |
| 605 | """ |
| 606 | if "scan" not in list(self._scan_result.keys()): |
| 607 | return [] |
| 608 | listh = list(self._scan_result["scan"].keys()) |
| 609 | listh.sort() |
| 610 | return listh |
| 611 | |
| 612 | def command_line(self): |
| 613 | """ |
no test coverage detected