Linux musi.iixcp.rumahweb.net 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
LiteSpeed
: 103.247.9.165 | : 216.73.216.63
Cant Read [ /etc/named.conf ]
7.4.33
pliq4844
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
/
opt /
Autom8Redis /
[ HOME SHELL ]
Name
Size
Permission
Action
.vscode
[ DIR ]
drwxr-xr-x
__pycache__
[ DIR ]
drwxr-xr-x
redissetup
[ DIR ]
drwxr-xr-x
Autom8Redis.live.py
7.88
KB
-rw-r--r--
Autom8RedisTaskq.py
337
B
-rw-r--r--
Autom8RedisTaskq.pyc
672
B
-rw-r--r--
autom8redis_wrapper.py
2.86
KB
-rwxr-xr-x
install.json
253
B
-rw-r--r--
loadingsmall2.gif
33.94
KB
-rw-r--r--
newjs.js
666
B
-rw-r--r--
plan_memory.yaml
14
B
-rw-r--r--
redis.png
16.14
KB
-rw-r--r--
redisnew.png
2.4
KB
-rw-r--r--
save_Autom8Redis.live.py
788
B
-rw-r--r--
style.css
603
B
-rw-r--r--
xtendweb.png
764
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autom8redis_wrapper.py
#!/usr/bin/env python3 import argparse import json import os import subprocess import yaml __author__ = "Anoop P Alias" __copyright__ = "Copyright Anoop P Alias" __license__ = "GPL" __email__ = "anoopalias01@gmail.com" installation_path = "/opt/Autom8Redis" # Absolute Installation Path autom8n_installation_path = "/opt/nDeploy" # Absolute Installation Path cluster_config_file = autom8n_installation_path+"/conf/ndeploy_cluster.yaml" if __name__ == "__main__": parser = argparse.ArgumentParser(description="Autom8Redis wrapper script for Ansible playbook run") parser.add_argument("CPUSER") parser.add_argument("CPHOME") parser.add_argument("STATUS") args = parser.parse_args() cpaneluser = args.CPUSER cpanelhome = args.CPHOME status = args.STATUS # get current hosting plan for the cPanel user if os.path.exists("/var/cpanel/users.cache/" + cpaneluser): with open("/var/cpanel/users.cache/" + cpaneluser, encoding='utf-8') as users_file: json_parsed_cpusersfile = json.load(users_file) myplan = json_parsed_cpusersfile.get('PLAN', 'default') else: # If cpanel users file is not present set plan to default myplan = 'default' # get maxmemory setting for the hosting PLAN if os.path.isfile(installation_path+"/plan_memory.yaml"): plan_memory_file = installation_path+"/plan_memory.yaml" plan_memory = open(plan_memory_file, 'r') plan_memory_yaml = yaml.safe_load(plan_memory) plan_memory.close() plan_memory_default = plan_memory_yaml.get('default', '32mb') plan_memory_user = plan_memory_yaml.get(myplan, plan_memory_default) else: plan_memory_user = '32mb' # Run Playbook with the data we have now extravars = 'CPANELUSER='+cpaneluser+' CPANELHOME='+cpanelhome+' MAXMEMORY='+plan_memory_user if status == "ON": subprocess.call('ansible-playbook -i /opt/Autom8Redis/redissetup/hosts /opt/Autom8Redis/redissetup/redis_init.yml --extra-vars "'+extravars+'"', shell=True) if os.path.exists(cluster_config_file): the_raw_cmd_slave='ansible -i /opt/nDeploy/conf/nDeploy-cluster/hosts ndeployslaves -m shell -a \'ansible-playbook -i /opt/Autom8Redis/redissetup/hosts /opt/Autom8Redis/redissetup/redis_init.yml --extra-vars \"'+extravars+'\"\'' subprocess.call(the_raw_cmd_slave, shell=True) else: subprocess.call('ansible-playbook -i /opt/Autom8Redis/redissetup/hosts /opt/Autom8Redis/redissetup/redis_del.yml --extra-vars "'+extravars+'"', shell=True) if os.path.exists(cluster_config_file): the_raw_cmd_slave='ansible -i /opt/nDeploy/conf/nDeploy-cluster/hosts ndeployslaves -m shell -a \'ansible-playbook -i /opt/Autom8Redis/redissetup/hosts /opt/Autom8Redis/redissetup/redis_del.yml --extra-vars \"'+extravars+'\"\'' subprocess.call(the_raw_cmd_slave, shell=True)
Close