Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
pygments /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
filters
[ DIR ]
drwxr-xr-x
formatters
[ DIR ]
drwxr-xr-x
lexers
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
__init__.py
2.93
KB
-rw-r--r--
__main__.py
348
B
-rw-r--r--
cmdline.py
22.71
KB
-rw-r--r--
console.py
1.66
KB
-rw-r--r--
filter.py
1.89
KB
-rw-r--r--
formatter.py
2.83
KB
-rw-r--r--
lexer.py
31.11
KB
-rw-r--r--
modeline.py
986
B
-rw-r--r--
plugin.py
1.67
KB
-rw-r--r--
regexopt.py
3
KB
-rw-r--r--
scanner.py
3.02
KB
-rw-r--r--
sphinxext.py
4.49
KB
-rw-r--r--
style.py
6.1
KB
-rw-r--r--
token.py
6
KB
-rw-r--r--
unistring.py
61.71
KB
-rw-r--r--
util.py
8.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modeline.py
""" pygments.modeline ~~~~~~~~~~~~~~~~~ A simple modeline parser (based on pymodeline). :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ import re __all__ = ['get_filetype_from_buffer'] modeline_re = re.compile(r''' (?: vi | vim | ex ) (?: [<=>]? \d* )? : .* (?: ft | filetype | syn | syntax ) = ( [^:\s]+ ) ''', re.VERBOSE) def get_filetype_from_line(l): m = modeline_re.search(l) if m: return m.group(1) def get_filetype_from_buffer(buf, max_lines=5): """ Scan the buffer for modelines and return filetype if one is found. """ lines = buf.splitlines() for l in lines[-1:-max_lines-1:-1]: ret = get_filetype_from_line(l) if ret: return ret for i in range(max_lines, -1, -1): if i < len(lines): ret = get_filetype_from_line(lines[i]) if ret: return ret return None
Close