main
byt3bl33d3r 2015-10-23 10:12:29 -06:00
parent df60fbf335
commit 255fff88bd
1 changed files with 6 additions and 6 deletions

View File

@ -83,21 +83,21 @@ def print_att(message):
def yellow(text): def yellow(text):
try: try:
colored(text.decode('utf8'), 'yellow', attrs=['bold']) return colored(text.decode('utf8'), 'yellow', attrs=['bold'])
except UnicodeDecodeError: except UnicodeDecodeError:
colored(unicode(text, errors='ignore'), 'yellow', attrs=['bold']) return colored(unicode(text, errors='ignore'), 'yellow', attrs=['bold'])
def green(text): def green(text):
try: try:
colored(text.decode('utf8'), 'green', attrs=['bold']) return colored(text.decode('utf8'), 'green', attrs=['bold'])
except UnicodeDecodeError: except UnicodeDecodeError:
colored(unicode(text, errors='ignore'), 'green', attrs=['bold']) return colored(unicode(text, errors='ignore'), 'green', attrs=['bold'])
def red(text): def red(text):
try: try:
colored(text.decode('utf8'), 'red', attrs=['bold']) return colored(text.decode('utf8'), 'red', attrs=['bold'])
except UnicodeDecodeError: except UnicodeDecodeError:
colored(unicode(text, errors='ignore'), 'red', attrs=['bold']) return colored(unicode(text, errors='ignore'), 'red', attrs=['bold'])
# Structures # Structures
# Taken from http://insecurety.net/?p=768 # Taken from http://insecurety.net/?p=768