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.

Set sudo Insults Parameter
Set sudo Insults Parameter

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
sudo Insult in Action
sudo Insult in Action

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
Set sudo badpassword Message
Set sudo badpassword Message

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
Sudo badpassword Message
Sudo badpassword Message

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.

Similar Posts