How often do you leave a Linux system idle after login; a situation which can be referred to as an ‘idle session’, where you are not attending to the system by running commands or any administration tasks.
However, this normally presents a great security risk, especially when your logged on as the superuser or with an account that can gain root privileges and in the event that someone with malicious intend gains physical access to your system, he or she can executes some destructive commands or do what ever they want to achieve on it, in the shortest time possibles.
Read Also: How to Monitor Linux Commands Executed by System Users in Real-time
Therefore, it is practically a good idea to always configure your system to automatically logout users in case of an idle session.
To enable automatic user logout, we will be using the TMOUT
shell variable, which terminates a user’s login shell in case there is no activity for a given number of seconds that you can specify.
To enable this globally (system-wide for all users), set the above variable in the /etc/profile
shell initialization file.
# vi /etc/profile
Add the following line.
TMOUT=120
Save and close the file. From now on, a user will be logged out after 120 seconds (2 minutes), if he or she is not attending to the system.
Note that users can configure this in their own shell initialization file ~/.profile
. This means that once that particular user has no activity on the system for the specified second, the shell automatically terminates, thus logging out that user.
Following are some useful security articles, go through it.
- How to Monitor User Activity with psacct or acct Tools
- How to Configure PAM to Audit Logging Shell User Activity
- How to Block or Disable Normal User Logins in Linux
- The Mega Guide To Harden and Secure CentOS 7 – Part 1
- The Mega Guide To Harden and Secure CentOS 7 – Part 2
That’s it! To share any thoughts or ask questions regarding this topic, use the feedback section below.
Will it work in GUI mode?
@Subhendu,
Mostly it will work, just give it a try and see…
It’s definitely a bad practice. On most distros, you SHOULDN’T edit /etc/profile.
Put your custom config files as drop-in scripts here: /etc/profile.d/.
@Denny Snyder recommended a much better and complete solution which probably came from CIS Benchmark.
Regards,
Andris
@Andras
Thanks for the useful tip, we are grateful.
Ours contains:
This way they can’t re-export their own value.
@Denny
Great! Many thanks for sharing!
Hi
Thank you for the great instructions, however we’re running Centos 6.9 and need to get this working on our servers for PCIDSS reasons. Unfortunately, it didn’t work for us. I’ve also tried adding it to the
.bashrc
file, but no joy. Any ideas?@Lisa
Try using export TMOUT = 120.
“A user will be logged out after 160 seconds (2 minutes), if he or she is not attending to the system.”
160 secs is not 2 mins.. it should be 120 secs
@rahul
Thanks for the heads up, we will correct it in the writeup.
@rahul
It’s now corrected in the write up, thanks for heads up and feedback.