Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.9 /
site-packages /
cockpit /
_vendor /
bei /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-04-16 01:40
data
[ DIR ]
drwxr-xr-x
2026-04-16 01:40
__init__.py
0
B
-rw-r--r--
2026-04-11 14:14
beiboot.py
5.04
KB
-rw-r--r--
2026-04-11 14:14
beipack.py
7.2
KB
-rw-r--r--
2026-04-11 14:14
bootloader.py
3.48
KB
-rw-r--r--
2026-04-11 14:14
spawn.py
971
B
-rw-r--r--
2026-04-11 14:14
tmpfs.py
563
B
-rw-r--r--
2026-04-11 14:14
Save
Rename
"""Helper to create a beipack to spawn a command with files in a tmpdir""" import argparse import os import sys from . import pack, tmpfs def main() -> None: parser = argparse.ArgumentParser() parser.add_argument('--file', '-f', action='append') parser.add_argument('command', nargs='+', help='The command to execute') args = parser.parse_args() contents = { '_beitmpfs.py': tmpfs.__spec__.loader.get_data(tmpfs.__spec__.origin) } if args.file is not None: files = args.file else: file = args.command[-1] files = [file] args.command[-1] = './' + os.path.basename(file) for filename in files: with open(filename, 'rb') as file: basename = os.path.basename(filename) contents[f'tmpfs/{basename}'] = file.read() script = pack.pack(contents, '_beitmpfs:main', '*' + repr(args.command)) sys.stdout.write(script) if __name__ == '__main__': main()