Server IP : 184.154.167.98 / Your IP : 3.149.25.87 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/bin/ |
Upload File : |
#!/bin/bash # Created: Sergey Fokin <sfokin@cloudlinux.com> # 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