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.216.70
Domains :
Cant Read [ /etc/named.conf ]
User : thepngre
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
Acronis /
PyTools /
commands /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-08-18 20:57
auto_update.py
2.84
KB
-rw-r--r--
2026-07-27 23:20
protect.py
408
B
-rw-r--r--
2026-07-27 23:20
retention.py
9.64
KB
-rw-r--r--
2026-07-27 23:20
retention_specs.py
1.25
KB
-rw-r--r--
2026-07-27 23:20
run_tool.py
817
B
-rw-r--r--
2026-07-27 23:20
staging.py
732
B
-rw-r--r--
2026-07-27 23:20
Save
Rename
import sys import subprocess import acrobind import acrort def run_tool(argument): command = argument['Command'] wait_timeout = argument.get('Timeout') command_line = '{0} -m {1}'.format(sys.executable, command) argv = command_line if sys.platform != 'win32': import shlex argv = shlex.split(command_line) tool = subprocess.Popen(argv, universal_newlines=True, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE) (result, stderr) = tool.communicate(timeout=wait_timeout) if tool.returncode != 0: acrort.common.make_logic_error(stderr).throw() return {'stdout': result} def execute(*args, **kw): ctx = acrort.remoting.CommandContext(*args, **kw) arg = acrobind.unit2py(ctx.argument) return run_tool(arg)