httpz/httpz_scanner/colors.py

21 lines
610 B
Python
Raw Permalink Normal View History

2025-02-11 07:15:39 +00:00
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
2025-02-11 07:46:01 +00:00
# httpz_scanner/colors.py
2025-02-11 07:15:39 +00:00
class Colors:
'''ANSI color codes for terminal output'''
2025-02-12 03:30:22 +00:00
HEADER = '\033[95m'
2025-02-11 07:15:39 +00:00
BLUE = '\033[94m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
RESET = '\033[0m'
2025-02-12 03:30:22 +00:00
PURPLE = '\033[35m'
LIGHT_RED = '\033[38;5;203m'
DARK_GREEN = '\033[38;5;22m'
PINK = '\033[38;5;198m'
GRAY = '\033[90m'
CYAN = '\033[96m'