TranslateProject/sources/tech/20170112 Let Sudo Insult You When You Enter Incorrect Password.md
2017-01-13 20:21:57 +08:00

4.1 KiB
Raw Blame History

Let Sudo Insult You When You Enter Incorrect Password

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/sudoersfile 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

Thats 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.


作者简介:

Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.


via: http://www.tecmint.com/sudo-insult-when-enter-wrong-password/

作者:Aaron Kili 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出