Securing /tmp and shm partitions

Securing /tmp and /dev/shm is a nice practice.  Lots of programs and scripts have access in there. So you don’t want code, malicious or not to run in there, trying to get root permissions or snoop on you.

Temporary storage directories such as /tmp, /var/tmp and /dev/shm provide storage space for malicious executables.
Crackers and hackers store executables in /tmp. Malicious users can use temporary storage directories to execute unwanted program and crack your server.

First because I forget, let’s bind /var/tmp to /tmp in /etc/fstab

Now we deal with /tmp only.

Update 28/03/2015: That practice was for many unstable and criticized also by many. Unfortunately for them, I was vindicated when even OpenBSD in the upcoming version does the same for the very same reasons. Security.

Security improvements:

  • /var/tmp is now a symbolic link to /tmp, as a first step towards reducing the “fill it up” attack surface against the /var partition.

 

If it’s a separate partition we only need a

If it’s not, we will create an image for it. The example is for 4GB, tune it as you like.

Modify /tmp line as follows:

You should to the same for shm:

 

Edit your /etc/fstab:
# nano /etc/fstab

change:
“none /dev/shm tmpfs defaults,rw 0 0” to
“none /dev/shm tmpfs defaults,nosuid,noexec,rw 0 0”

Remount /dev/shm:
# mount -o remount /dev/shm
It should be fine now.

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
HowTo: Kill TCP Connections in CLOSE_WAIT State
Viewed 16307 times since Thu, Feb 14, 2019
How to use yum command on CentOS/RHEL
Viewed 11282 times since Wed, Oct 17, 2018
How to Register and Enable Red Hat Subscription, Repositories and Updates for RHEL 7.0 Server
Viewed 13403 times since Mon, Oct 29, 2018
CentOS / RHEL : Configure yum automatic updates with yum-cron service
Viewed 3715 times since Fri, Oct 26, 2018
LVM: Remove an existing Volume Group
Viewed 5581 times since Sat, Jun 2, 2018
How to enable automatic security updates on CentOS 7 with yum-cron
Viewed 2661 times since Fri, Oct 26, 2018
WatchDog watchdog.sh script for checking server running
Viewed 5641 times since Tue, Jul 31, 2018
CONFIGURE FOR ASM Linux
Viewed 5747 times since Sat, Jun 2, 2018
CONFIGURE OCFS2
Viewed 8347 times since Sat, Jun 2, 2018
RHEL: GPT/MBR partition tables (using disks larger than 2 TiB)
Viewed 12557 times since Sun, May 27, 2018