Information
If the volume manager (vold) is enabled to permit users to mount external devices, the administrator can force these file systems to be mounted with the nosuid option to prevent users from bringing set-UID programs onto the system via CD-ROMs, floppy disks, USB drives or other removable media.
Solution
Perform the following to implement the recommended state-
if [ ! '`grep -v '^#' /etc/rmmount.conf | grep -- '-o nosuid'`' ]; then fs=`awk '($1 == 'ident') && ($2 != 'pcfs') { print $2 }' /etc/rmmount.conf` echo mount * $fs -o nosuid >>/etc/rmmount.conf fi