Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
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 /
python3 /
dist-packages /
jinja2 /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
2.15
KB
-rw-r--r--
_identifier.py
1.73
KB
-rw-r--r--
async_utils.py
1.9
KB
-rw-r--r--
bccache.py
12.37
KB
-rw-r--r--
compiler.py
70.87
KB
-rw-r--r--
constants.py
1.4
KB
-rw-r--r--
debug.py
8.29
KB
-rw-r--r--
defaults.py
1.24
KB
-rw-r--r--
environment.py
59.55
KB
-rw-r--r--
exceptions.py
4.95
KB
-rw-r--r--
ext.py
31.37
KB
-rw-r--r--
filters.py
52.46
KB
-rw-r--r--
idtracking.py
10.47
KB
-rw-r--r--
lexer.py
29.29
KB
-rw-r--r--
loaders.py
22.22
KB
-rw-r--r--
meta.py
4.29
KB
-rw-r--r--
nativetypes.py
3.88
KB
-rw-r--r--
nodes.py
33.81
KB
-rw-r--r--
optimizer.py
1.61
KB
-rw-r--r--
parser.py
38.83
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
runtime.py
34.23
KB
-rw-r--r--
sandbox.py
14.69
KB
-rw-r--r--
tests.py
5.77
KB
-rw-r--r--
utils.py
26.4
KB
-rw-r--r--
visitor.py
3.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : defaults.py
import typing as t from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 from .tests import TESTS as DEFAULT_TESTS # noqa: F401 from .utils import Cycler from .utils import generate_lorem_ipsum from .utils import Joiner from .utils import Namespace if t.TYPE_CHECKING: import typing_extensions as te # defaults for the parser / lexer BLOCK_START_STRING = "{%" BLOCK_END_STRING = "%}" VARIABLE_START_STRING = "{{" VARIABLE_END_STRING = "}}" COMMENT_START_STRING = "{#" COMMENT_END_STRING = "#}" LINE_STATEMENT_PREFIX: t.Optional[str] = None LINE_COMMENT_PREFIX: t.Optional[str] = None TRIM_BLOCKS = False LSTRIP_BLOCKS = False NEWLINE_SEQUENCE: "te.Literal['\\n', '\\r\\n', '\\r']" = "\n" KEEP_TRAILING_NEWLINE = False # default filters, tests and namespace DEFAULT_NAMESPACE = { "range": range, "dict": dict, "lipsum": generate_lorem_ipsum, "cycler": Cycler, "joiner": Joiner, "namespace": Namespace, } # default policies DEFAULT_POLICIES: t.Dict[str, t.Any] = { "compiler.ascii_str": True, "urlize.rel": "noopener", "urlize.target": None, "urlize.extra_schemes": None, "truncate.leeway": 5, "json.dumps_function": None, "json.dumps_kwargs": {"sort_keys": True}, "ext.i18n.trimmed": False, }
Close