⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
bin
/
View File Name :
cl-linksafe-apply-group
#!/usr/bin/bash # Created: Sergey Fokin
# Date: 05.06.2022 _linksafe_grp=linksafe if [ -n "$1" ]; then if [ -f /etc/cloudlinux-edition-solo ] || [ -f /etc/cloudlinux-container ]; then _linksafe_grp=root fi if [ -x /usr/bin/apt ]; then listFiles=$(dpkg -L $1) elif [ -x /usr/bin/yum ]; then listFiles=$(rpm -ql $1) fi for _f in ${listFiles}; do if [[ ${_f} =~ "/opt/alt/" ]]; then chown -h root:${_linksafe_grp} ${_f} 1>/dev/null 2>/dev/null fi done fi