/etc/sudoers를 사용하는 대신 비밀번호 없이 sudo 명령을 실행하시겠습니까?

/etc/sudoers를 사용하는 대신 비밀번호 없이 sudo 명령을 실행하시겠습니까?

Azure에서 Ubuntu 20.04 인스턴스를 생성했는데 암호를 입력하지 않고도 sudo 명령을 실행할 수 있다는 것을 알았습니다.

나는 이것이 file 의 지시문을 사용하여 NOPASSWD수행되었다고 가정했지만 /etc/sudoers파일은 완전히 표준이며 해당 지시문을 포함하지 않습니다.

이것을 달성하는 다른 방법이 있는지 누군가 말할 수 있습니까?

/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        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/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


관련 정보