@@ -22,7 +22,7 @@ def attack_multiple(cls, targets):
2222 essid = target .essid if target .essid_known else '{O}ESSID unknown{W}'
2323
2424 Color .pl ('\n {+} ({G}%d{W}/{G}%d{W})' % (index , len (targets )) +
25- ' starting attacks against {C}%s{W} ({C}%s{W})' % (bssid , essid ))
25+ ' Starting attacks against {C}%s{W} ({C}%s{W})' % (bssid , essid ))
2626
2727 should_continue = cls .attack_single (target , targets_remaining )
2828 if not should_continue :
@@ -67,7 +67,7 @@ def attack_single(cls, target, targets_remaining):
6767 attacks .append (AttackWPA (target ))
6868
6969 if len (attacks ) == 0 :
70- Color .pl ('{!} {R}Error: {O}unable to attack: encryption not WEP or WPA' )
70+ Color .pl ('{!} {R}Error: {O}Unable to attack: encryption not WEP or WPA' )
7171 return
7272
7373 while len (attacks ) > 0 :
@@ -80,7 +80,7 @@ def attack_single(cls, target, targets_remaining):
8080 Color .pexception (e )
8181 continue
8282 except KeyboardInterrupt :
83- Color .pl ('\n {!} {O}interrupted {W}\n ' )
83+ Color .pl ('\n {!} {O}Interrupted {W}\n ' )
8484 if not cls .user_wants_to_continue (targets_remaining , len (attacks )):
8585 return False # Stop attacking other targets
8686
@@ -106,9 +106,9 @@ def user_wants_to_continue(cls, targets_remaining, attacks_remaining=0):
106106 if targets_remaining > 0 :
107107 prompt_list .append (Color .s ('{C}%d{W} target(s)' % targets_remaining ))
108108 prompt = ' and ' .join (prompt_list )
109- Color .pl ('{+} %s remain, do you want to continue?' % prompt )
109+ Color .pl ('{+} %s remain, Do you want to continue?' % prompt )
110110
111- prompt = Color .s ('{+} type {G}c{W} to {G}continue{W}' +
111+ prompt = Color .s ('{+} Type {G}c{W} to {G}continue{W}' +
112112 ' or {R}s{W} to {R}stop{W}: ' )
113113
114114 from ..util .input import raw_input
0 commit comments