Information
If FTP is permitted, set a strong, default file creation mask to apply to files created by the FTP server.
Many users assume that the FTP server will use their system file creation mask; generally it does not. This setting ensures that files transmitted over FTP use a strong file creation mask.
Solution
Perform the following to implement the recommended state:
# cd /etc
# if [ "`grep '^Umask' proftpd.conf`" ]; then
awk '/^Umask/ { $2 = "027" } { print }' proftpd.conf > proftpd.conf.CIS
mv proftpd.conf.CIS proftpd.conf
else
echo "Umask 027" >> proftpd.conf
fi