MCPcopy
hub / github.com/derv82/wifite2 / start

Method start

wifite/__main__.py:35–54  ·  view source on GitHub ↗

Starts target-scan + attack loop, or launches utilities dpeending on user input.

(self)

Source from the content-addressed store, hash-verified

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):

Callers 1

entry_pointFunction · 0.95

Calls 5

scan_and_attackMethod · 0.95
displayMethod · 0.80
checkMethod · 0.80
runMethod · 0.45

Tested by

no test coverage detected