Sudoers is the default sudo security policy plugin in Linux, however, experienced system administrators can specify a custom security policy as well as input and output logging plugins. It is driven by the /etc/sudoers
file or alternatively in LDAP.
You can define sudoers insults option or several others in the file above. It is set under defaults entries section. Read through our last article that explains 10 Useful Sudoers Configurations for Setting ‘sudo’ in Linux.
In this article, we will explain a sudoers configuration parameter to enable an individual or system administrator set sudo command to insult system users who enter wrong password.
Start by opening the file /etc/sudoers
like so:
$ sudo visudo
Go to the defaults section and add the following line:
Defaults insults
Below is a sample of /etc/sudoers file on my system showing defaults entries.
From the screenshot above, you can see that there are many other defaults defined such as send mail to root when each time a user enters a bad password, set a secure path, configure a custom sudo log file and more.
Save the file and close it.
Run a command with sudo and enter the wrong password, then observe how insults option works:
$ sudo visudo
Note: When you configure the insults parameter, it disables the badpass_message
parameter which prints a specific message on the command line (the default message is “sorry, try again”) in case a user enters a wrong password.
To modify the message, add the badpass_message
parameter to the /etc/sudoers file as shown below.
Defaults badpass_message="Password is wrong, please try again" #try to set a message of your own
Save the file and close it, then invoke sudo and see how it works, the message you set as the value of badpass_message will be printed every time you or any system user types a wrong password.
$ sudo visudo
That’s all, in this article we reviewed how to set sudo to print insults when users type a wrong password. Do share your thoughts via the comment section below.
Where is the text file where insults come from? Thanks in advance.
We streamline processes, we install faster CPUs and GPUs, just to make our PCs run microseconds faster. But then we engage in such juvenile stunts like displaying insults instead of a plain Bad Password message.
Yeah! It’s not useful but it’s funny. Specially if you have a PC/System with more than 1 user.
BTW, the 5th attempt has a different comment. Does it repeat this kind of comment every 5 wrong attempts?
How many can a user fail? Is it indefinite?
(sorry for the newbie questions)
@dreis911
The last attempt does not show an insult. Again, yes, it repeats the comment and specifies the number of attempts. And you can configure the number of password tries using the passwd_tries parameter as below:
Defaults passwd_tries=5(specify the number of tries you want)
I am gonna have a lot of fun with that! Thank you very much!
@Pittor
Welcome, thanks for following us.
Regrettably, Red Hat and CentOS configure the sudo binary such that it does not support insults.
@Stephen
Well, Red Hat and CentOS users will not use this parameter then. Thanks for mentioning that, we will include it the article.
That’s fun ! Thanks for this tips !
@Jonathan
Welcome, thanks for following us.