⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
psa
/
admin
/
sbin
/
modules
/
imunify360
/
View File Name :
filemng-execute.sh
#!/bin/bash # We need to use Plesk's `filemng` command to lower privileges. # We also need to pass request data via stdin, secure tmp file, or environment variables. # `pm_ApiCli::callSbin` doesn't expose stdin and has a limit on env var length, so the only option left is # to use a tmp file. # However, since on the other side of `filemng` we have less privileges, it is not trivial. # To resolve this we will simply read the file after `callSbin`, but before `filemng`. # It's ugly, but it works. cat "$I360_REQUEST" | plesk sbin filemng "$@" exit_code=$? rm -f "$I360_REQUEST" exit $exit_code