Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
pygments /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
filters
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
formatters
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
lexers
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
styles
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
__init__.py
2.89
KB
-rw-r--r--
2025-04-08 17:01
__main__.py
348
B
-rw-r--r--
2025-04-08 17:01
cmdline.py
22.98
KB
-rw-r--r--
2025-04-08 17:01
console.py
1.68
KB
-rw-r--r--
2025-04-08 17:01
filter.py
1.87
KB
-rw-r--r--
2025-04-08 17:01
formatter.py
4.26
KB
-rw-r--r--
2025-04-08 17:01
lexer.py
34.29
KB
-rw-r--r--
2025-04-08 17:01
modeline.py
1005
B
-rw-r--r--
2025-04-08 17:01
plugin.py
1.85
KB
-rw-r--r--
2025-04-08 17:01
regexopt.py
3
KB
-rw-r--r--
2025-04-08 17:01
scanner.py
3.02
KB
-rw-r--r--
2025-04-08 17:01
sphinxext.py
7.71
KB
-rw-r--r--
2025-04-08 17:01
style.py
6.26
KB
-rw-r--r--
2025-04-08 17:01
token.py
6.08
KB
-rw-r--r--
2025-04-08 17:01
unistring.py
61.73
KB
-rw-r--r--
2025-04-08 17:01
util.py
9.8
KB
-rw-r--r--
2025-04-08 17:01
Save
Rename
""" pygments.console ~~~~~~~~~~~~~~~~ Format colored console output. :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ esc = "\x1b[" codes = {} codes[""] = "" codes["reset"] = esc + "39;49;00m" codes["bold"] = esc + "01m" codes["faint"] = esc + "02m" codes["standout"] = esc + "03m" codes["underline"] = esc + "04m" codes["blink"] = esc + "05m" codes["overline"] = esc + "06m" dark_colors = ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "gray"] light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue", "brightmagenta", "brightcyan", "white"] x = 30 for dark, light in zip(dark_colors, light_colors): codes[dark] = esc + "%im" % x codes[light] = esc + "%im" % (60 + x) x += 1 del dark, light, x codes["white"] = codes["bold"] def reset_color(): return codes["reset"] def colorize(color_key, text): return codes[color_key] + text + codes["reset"] def ansiformat(attr, text): """ Format ``text`` with a color and/or some attributes:: color normal color *color* bold color _color_ underlined color +color+ blinking color """ result = [] if attr[:1] == attr[-1:] == '+': result.append(codes['blink']) attr = attr[1:-1] if attr[:1] == attr[-1:] == '*': result.append(codes['bold']) attr = attr[1:-1] if attr[:1] == attr[-1:] == '_': result.append(codes['underline']) attr = attr[1:-1] result.append(codes[attr]) result.append(text) result.append(codes['reset']) return ''.join(result)