Linux 43-250-141-107.cprapid.com 4.18.0-553.150.1.lve.el8.x86_64 #1 SMP Tue Aug 4 17:30:48 UTC 2026 x86_64
LiteSpeed
Server IP : 43.250.141.107 & Your IP : 216.73.217.94
Domains :
Cant Read [ /etc/named.conf ]
User : thepngre
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
Acronis /
PyShell /
site-tools /
Delete
Unzip
Name
Size
Permission
Date
Action
agents.py
36.7
KB
-rw-r--r--
2026-07-27 23:20
amsctl.py
228.32
KB
-rw-r--r--
2026-07-27 23:20
cep.py
26.85
KB
-rw-r--r--
2026-07-27 23:20
change_machine_id.py
18.97
KB
-rw-r--r--
2026-07-27 23:20
cleanup_backups.py
17.44
KB
-rw-r--r--
2026-07-27 23:20
dmldump.py
1.61
KB
-rw-r--r--
2026-07-27 23:20
gtobview.py
16.08
KB
-rw-r--r--
2026-07-27 23:20
manage_creds.py
2.76
KB
-rw-r--r--
2026-07-27 23:20
multi_mms.py
12.17
KB
-rw-r--r--
2026-07-27 23:20
register_mms.py
1.88
KB
-rw-r--r--
2026-07-27 23:20
set_logging.py
6.97
KB
-rw-r--r--
2026-07-27 23:20
stdspecs.zip
13.63
KB
-rw-r--r--
2026-07-27 23:20
Save
Rename
import argparse import acrort import acrobind import getpass import shlex ANY_ARCHIVE_ID = '_any_archive_' def convert_arg_line_to_args(arg_line): for arg in shlex.split(arg_line): yield arg class PasswordPromptAction(argparse.Action): def __call__(self, parser, args, values, option_string=None): if values: setattr(args, self.dest, values) else: setattr(args, self.dest, getpass.getpass('Enter the encryption password:')) def parse_arguments(): parser = argparse.ArgumentParser(fromfile_prefix_chars='@') parser.convert_arg_line_to_args = convert_arg_line_to_args parser.add_argument('--set-username', dest='username', default='') parser.add_argument('--set-password', dest='password', type=str, action=PasswordPromptAction, nargs='?') parser.add_argument('--list', action='store_true') parser.add_argument('--reset', action='store_true') parser.add_argument('--connection', nargs=3, metavar=('HOST', 'USERNAME', 'PASSWORD')) parser.add_argument('--resource-address', dest='resource', default=ANY_ARCHIVE_ID) parser.add_argument('--resource-type', dest='resource_type', default=acrort.access.CATEGORIES[acrort.access.ARCHIVE]) return parser.parse_args() def main(): host = None args = parse_arguments() if args.connection is not None: host = args.connection[0] username = args.connection[1] password = args.connection[2] if host: connection = acrort.connectivity.Connection(acrort.connectivity.PROTO_MMS, host, (username, password)) else: connection = acrort.connectivity.Connection(acrort.connectivity.PROTO_MMS) if args.password: if not args.resource_type or not args.resource: print('resource_type and resource arguments are required') return profile = connection.access.open_system_profile() print("Add new entry...") profile.add_account(resource_type=args.resource_type, resource_address=args.resource, user_name=args.username, password=args.password) print("Done") elif args.reset: if not args.resource_type or not args.resource: print('resource_type and resource arguments are required') return print("Removing entry...") profile = connection.access.open_system_profile() profile.delete_account(resource_type=args.resource_type, resource_address=args.resource) print("Done") elif args.list: print("List entries...") profile = connection.access.open_system_profile() for i in profile.select(): print(i) print("Done") if __name__ == '__main__': exit(acrobind.safe_execute(main))