Database Integration

This commit is contained in:
Austin Taylor
2017-06-18 18:12:12 -04:00
parent 15e6d5a4f2
commit acad484398
13 changed files with 596 additions and 0 deletions

View File

16
vulnwhisp/utils/cli.py Normal file
View File

@ -0,0 +1,16 @@
class bcolors:
"""
Utility to add colors to shell for scripts
"""
HEADERS = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
INFO = '{info}[INFO]{endc}'.format(info=OKBLUE, endc=ENDC)
SUCCESS = '{green}[SUCCESS]{endc}'.format(green=OKGREEN, endc=ENDC)
FAIL = '{red}[FAIL]{endc}'.format(red=FAIL, endc=ENDC)