New ascii art. Because why not.

This commit is contained in:
derv82
2018-03-10 20:28:17 -05:00
parent 3257755094
commit a50d633861
2 changed files with 9 additions and 12 deletions

View File

@@ -186,17 +186,13 @@ class Wifite(object):
def print_banner(self): def print_banner(self):
""" Displays ASCII art of the highest caliber. """ """ Displays ASCII art of the highest caliber. """
Color.pl("") Color.pl(r'''
Color.pl("{G} .;' `;, ") {G} . {GR}{D} {W}{G} . {W}
Color.pl("{G} .;' ,;' `;, `;, {W}WiFite v%.2f" % Configuration.version) {G}.´ · .{GR}{D} {W}{G}. · `. {G}wifite {D}%s{W}
Color.pl("{G}.;' ,;' ,;' `;, `;, `;, ") {G}: : : {GR}{D} (¯) {W}{G} : : : {W}{D}automated wireless auditor
Color.pl("{G}:: :: : {GR}( ){G} : :: :: {W}Automated Wireless Auditor") {G}`. · `{GR}{D}\ {W}{G}´ · .´ {C}{D}https://github.com/derv82/wifite2
Color.pl("{G}':. ':. ':. {GR}/_\\{G} ,:' ,:' ,:' ") {G} ` {GR}{D}/¯¯¯\{W}{G} ´ {W}
Color.pl("{G} ':. ':. {GR}/___\\{G} ,:' ,:' {C}https://github.com/derv82/wifite2{W}") ''' % Configuration.version)
Color.pl("{G} ':. {GR}/_____\\{G} ,:' ")
Color.pl("{G} {GR}/ \\{G} ")
Color.pl("{W}")
def user_wants_to_continue(self, targets_remaining, attacks_remaining=0): def user_wants_to_continue(self, targets_remaining, attacks_remaining=0):
''' Asks user if attacks should continue onto other targets ''' ''' Asks user if attacks should continue onto other targets '''

View File

@@ -15,7 +15,8 @@ class Color(object):
'B' : '\033[34m', # blue 'B' : '\033[34m', # blue
'P' : '\033[35m', # purple 'P' : '\033[35m', # purple
'C' : '\033[36m', # cyan 'C' : '\033[36m', # cyan
'GR': '\033[37m' # gray 'GR': '\033[37m', # gray
'D' : '\033[2m' # dims current color. {W} resets.
} }
# Helper string replacements # Helper string replacements