Nenhum prompt de senha no comando sudo

14

Sempre que eu executo o comando sudo apt-get install ** ele não pede senha, nem no meu usuário admin também.

Como solicitar a senha?

Meu sudoer:

ubuntu:~$ sudo cat /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults    env_reset
Defaults    secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d
ALL ALL=(ALL) NOPASSWD:ALL
    
por Mrinal9 21.06.2012 / 05:34

3 respostas

18

Edite /etc/sudoers usando sudo visudo e remova a última linha:

ALL ALL=(ALL) NOPASSWD:ALL

(A propósito, observe que esta linha no final do arquivo não é a maneira preferida de fazer sudo não solicitar uma senha, por aqueles que querem fazer isso.)

    
por Eliah Kagan 21.06.2012 / 05:40
4

Use este comando para encontrar a origem do problema:

sudo grep -HRn NOPASSWD /etc/sudoers.d/

No meu caso:

/etc/sudoers.d/50_stack_sh:1:username ALL=(root) NOPASSWD:ALL

comente a linha com # e feche seu terminal.

    
por shel3over 23.08.2013 / 14:01
0

Acho melhor adicionar o "usuário admin" no final do arquivo, porque o administrador não deve colocar a senha em todos os pedidos no terminal, e nenhum outro usuário pode fazer isso:

# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults    env_reset
Defaults    secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root    ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin  ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
# ALL ALL=(ALL) NOPASSWD:ALL
(user here) ALL=(ALL) NOPASSWD:ALL
    
por complete 28.03.2015 / 17:00

Tags