Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 18.224.37.168
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
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 /
python2.7 /
dist-packages /
pygments /
[ HOME SHELL ]
Name
Size
Permission
Action
filters
[ DIR ]
drwxr-xr-x
formatters
[ DIR ]
drwxr-xr-x
lexers
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
__init__.py
2.91
KB
-rw-r--r--
__init__.pyc
3.27
KB
-rw-r--r--
cmdline.py
16.13
KB
-rw-r--r--
cmdline.pyc
12.21
KB
-rw-r--r--
console.py
1.81
KB
-rw-r--r--
console.pyc
2.27
KB
-rw-r--r--
filter.py
2.02
KB
-rw-r--r--
filter.pyc
3.1
KB
-rw-r--r--
formatter.py
2.88
KB
-rw-r--r--
formatter.pyc
3.35
KB
-rw-r--r--
lexer.py
30.12
KB
-rw-r--r--
lexer.pyc
28.34
KB
-rw-r--r--
modeline.py
958
B
-rw-r--r--
modeline.pyc
1.3
KB
-rw-r--r--
plugin.py
1.82
KB
-rw-r--r--
plugin.pyc
2.3
KB
-rw-r--r--
regexopt.py
3
KB
-rw-r--r--
regexopt.pyc
3.14
KB
-rw-r--r--
scanner.py
3.04
KB
-rw-r--r--
scanner.pyc
4.07
KB
-rw-r--r--
sphinxext.py
4.43
KB
-rw-r--r--
sphinxext.pyc
5.39
KB
-rw-r--r--
style.py
3.69
KB
-rw-r--r--
style.pyc
3.83
KB
-rw-r--r--
token.py
5.64
KB
-rw-r--r--
token.pyc
5.04
KB
-rw-r--r--
unistring.py
49.91
KB
-rw-r--r--
unistring.pyc
26.58
KB
-rw-r--r--
util.py
11.32
KB
-rw-r--r--
util.pyc
12.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filter.py
# -*- coding: utf-8 -*- """ pygments.filter ~~~~~~~~~~~~~~~ Module that implements the default filter. :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ def apply_filters(stream, filters, lexer=None): """ Use this method to apply an iterable of filters to a stream. If lexer is given it's forwarded to the filter, otherwise the filter receives `None`. """ def _apply(filter_, stream): for token in filter_.filter(lexer, stream): yield token for filter_ in filters: stream = _apply(filter_, stream) return stream def simplefilter(f): """ Decorator that converts a function into a filter:: @simplefilter def lowercase(lexer, stream, options): for ttype, value in stream: yield ttype, value.lower() """ return type(f.__name__, (FunctionFilter,), { 'function': f, '__module__': getattr(f, '__module__'), '__doc__': f.__doc__ }) class Filter(object): """ Default filter. Subclass this class or use the `simplefilter` decorator to create own filters. """ def __init__(self, **options): self.options = options def filter(self, lexer, stream): raise NotImplementedError() class FunctionFilter(Filter): """ Abstract class used by `simplefilter` to create simple function filters on the fly. The `simplefilter` decorator automatically creates subclasses of this class for functions passed to it. """ function = None def __init__(self, **options): if not hasattr(self, 'function'): raise TypeError('%r used without bound function' % self.__class__.__name__) Filter.__init__(self, **options) def filter(self, lexer, stream): # pylint: disable-msg=E1102 for ttype, value in self.function(lexer, stream, self.options): yield ttype, value
Close