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 /
pasta /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
augment
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
base
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
__init__.py
922
B
-rw-r--r--
2025-04-08 17:01
Save
Rename
# coding=utf-8 """Pasta enables AST-based transformations on python source code.""" # Copyright 2017 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pasta.base import annotate from pasta.base import ast_utils from pasta.base import codegen def parse(src): t = ast_utils.parse(src) annotator = annotate.AstAnnotator(src) annotator.visit(t) return t def dump(tree): return codegen.to_str(tree)