Ensure sticky bit is set on all world-writable directories

Information

Setting the sticky bit on world writable directories prevents users from deleting or renaming files in that directory that are not owned by them.

Solution

Run the following command to set the sticky bit on all world writable directories:
# df --local -P | /usr/bin/awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -type d -perm -0002 2>/dev/null | xargs chmod a+t

Notes:
Some distributions may not support the --local option to df.

See Also

https://www.cisco.com/c/en/us/td/docs/security/firepower/623/configuration/guide/fpmc-config-guide-v623.html