Sshd_config erlaubt weiterhin die Passwortauthentifizierung


7

Ich habe meine Datei sshd_config angepasst, in der ich den Wert von:

  • PasswordAuthentication No.
  • ChallengeResponseAuthentication-Nr
  • usePAM no (jetzt auf yes gesetzt)

Außerdem habe ich den sshd-Dienst neu gestartet, indem ich Folgendes ausgeführt habe : sudo service ssh restart. Ich habe auch einen Neustart durchgeführt.

Ich darf mich weiterhin mit einem Benutzerkennwort anmelden. Irgendeine Idee, was ich vermisst habe?

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
PasswordAuthentication no

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM no

BEARBEITEN:

  • PermitRootLoginist jetzt auf eingestellt no.
  • usePAMist jetzt auf eingestellt yes.

Funktioniert aber immer noch nicht.


Sollte das nicht PermitRootLogin yessein PermitRootLogin no?
George Udosen

Es wurde in "Nein" geändert, aber es ist weiterhin möglich, sich mit einem Passwort anzumelden
Mattias De Charleroy,

Hat ein Neustart nach dem Ändern durchgeführt?
George Udosen

Ich habe es jetzt getan und es immer noch zugelassen. Ich benutze openssh-server und habe es heute installiert
Mattias De Charleroy

@ MattiasDeCharleroy Du hast Dinge kaputt gemacht. Sie haben eine Zeile entfernt, die Sie hätten behalten sollen, und Sie sollten gemäß meiner Antwort PAM verwenden.
Thomas Ward

Antworten:


6

Sie müssen hier drei Dinge tun:

(1) Satz PermitRootLoginsein without-passwordoder restrict-passwordoder no. Aus Sicherheitsgründen. Normalerweise setze ich es auf no.

(2) Sie vermissen etwas anderes, das ziemlich wichtig ist. Sie sollten PAM für die Authentifizierung von Dingen verwenden - dies UsePAM yesist normalerweise die Standardeinstellung. Auf diese Weise können Sie UNIX-Benutzeranmeldedaten verwenden.

(3) Auch wichtig, in der Regel legen Sie ChallengeResponseAuthenticationauf no. Dies schützt vor der Umgehung without-passwordEinschränkung für rootAnmeldung. (Die Ausnahme ist, wenn Sie libpam-duodas Duo Security 2FA-System verwenden. In diesem Fall müssen Sie es ChallengeResponseAuthenticationeinstellen yes, dies ist jedoch kein typisches Setup.)

Sobald Sie dies getan haben, sudo service ssh restartstarten Sie den SSH-Dienst mit der neuen Konfiguration neu. Versuchen Sie SSH in einem anderen Fenster, bevor Sie sich von Ihrer SSH-Sitzung abmelden, um sicherzustellen, dass alles wie erwartet funktioniert.


PermitRootLogin ist jetzt auf no gesetzt. UsePAM ist jetzt auf yes gesetzt. ChallengeResponseAuthentication ist weiterhin auf no gesetzt. Ich habe den Dienst neu gestartet, aber immer noch ohne Erfolg.
Mattias De Charleroy

0

Ich folgte Thomas 'Schritten, funktionierte aber immer noch nicht. Es stellte sich heraus, dass ich nur einstellen musste UsePAM, nound jetzt ist die Anmeldung ohne öffentlichen Schlüssel nicht mehr möglich.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.