Thank you for the report , i have found numerous accounts having the folder permission set to 755.
made & used the following script to set it to 700:
Code:
#!/bin/bash
ls /var/cpanel/users | while read a; do
if [ -d "/home/$a/.cpanel" ] ;
then
echo ".cpanel directory found on user $a"
echo "Setting permission for /home/$a/.cpanel to 700"
/bin/chmod 700 "/home/$a/.cpanel"
#remove following echo line if u want faster processing
echo -e "\ndone\n"; sleep 2
fi
done
echo -e "\nAll folders permission has been set. Script finished"