Starts target-scan + attack loop, or launches utilities dpeending on user input.
(self)
| 33 | |
| 34 | |
| 35 | def start(self): |
| 36 | ''' |
| 37 | Starts target-scan + attack loop, or launches utilities dpeending on user input. |
| 38 | ''' |
| 39 | from .model.result import CrackResult |
| 40 | from .model.handshake import Handshake |
| 41 | from .util.crack import CrackHelper |
| 42 | |
| 43 | if Configuration.show_cracked: |
| 44 | CrackResult.display() |
| 45 | |
| 46 | elif Configuration.check_handshake: |
| 47 | Handshake.check() |
| 48 | |
| 49 | elif Configuration.crack_handshake: |
| 50 | CrackHelper.run() |
| 51 | |
| 52 | else: |
| 53 | Configuration.get_monitor_mode_interface() |
| 54 | self.scan_and_attack() |
| 55 | |
| 56 | |
| 57 | def print_banner(self): |
no test coverage detected