20 lines
722 B
Python
20 lines
722 B
Python
#!/usr/bin/env python3
|
|
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
|
# httpz_scanner/colors.py
|
|
|
|
class Colors:
|
|
'''ANSI color codes for terminal output'''
|
|
HEADER = '\033[95m' # Light purple
|
|
BLUE = '\033[94m'
|
|
GREEN = '\033[92m'
|
|
YELLOW = '\033[93m'
|
|
RED = '\033[91m'
|
|
BOLD = '\033[1m'
|
|
UNDERLINE = '\033[4m'
|
|
RESET = '\033[0m'
|
|
PURPLE = '\033[35m' # Dark purple
|
|
LIGHT_RED = '\033[38;5;203m' # Light red
|
|
DARK_GREEN = '\033[38;5;22m' # Dark green
|
|
PINK = '\033[38;5;198m' # Bright pink
|
|
GRAY = '\033[90m' # Gray color
|
|
CYAN = '\033[96m' # Cyan color |