Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
mcpi /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
57
B
-rw-r--r--
block.py
8
KB
-rw-r--r--
connection.py
4.27
KB
-rw-r--r--
entity.py
1.44
KB
-rw-r--r--
event.py
1.18
KB
-rw-r--r--
minecraft.py
13.98
KB
-rw-r--r--
nbt.py
20.62
KB
-rw-r--r--
security.py
58
B
-rw-r--r--
settings.py
251
B
-rw-r--r--
util.py
620
B
-rw-r--r--
vec3.py
2.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : util.py
import collections import math def flatten(l): for e in l: if isinstance(e, collections.Iterable) and not isinstance(e, str): for ee in flatten(e): yield ee else: yield e # this is highly optimized to iterables consisting at base level of ints and floats only def floorFlatten(l): for e in l: if isinstance(e, int): yield str(e) elif isinstance(e, float): yield str(int(math.floor(e))) elif not e is None: for ee in floorFlatten(e): yield ee def flatten_parameters_to_string(l): return ",".join(map(str, flatten(l)))
Close