O SSH ignora caracteres após a sequência de senha correta?

18

Máquina remota 10.10.10.1 tem a senha "asdFGH12" para o usuário chamado "usuário". Consigo efetuar login mesmo se eu digitar a senha "asdFGH12dasdkjlkjasdus" ou qualquer outro caractere após a string "asdFGH12".

$ ssh -v 10.10.10.1
OpenSSH_5.2p1 FreeBSD-20090522, OpenSSL 0.9.8k 25 Mar 2009
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 10.10.10.1 [10.10.10.1] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/identity type 0
debug1: identity file /home/user/.ssh/id_rsa type -1
debug1: identity file /home/user/.ssh/id_dsa type 2
debug1: Remote protocol version 1.99, remote software version OpenSSH_4.1
debug1: match: OpenSSH_4.1 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.2p1 FreeBSD-20090522
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '10.10.10.1' is known and matches the RSA host key.
debug1: Found key in /home/user/.ssh/known_hosts:58
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering public key: /home/user/.ssh/id_dsa
debug1: Authentications that can continue: publickey,keyboard-interactive
debug1: Trying private key: /home/user/.ssh/id_rsa
debug1: Next authentication method: keyboard-interactive
Password:
debug1: Authentication succeeded (keyboard-interactive).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
debug1: Requesting X11 forwarding with authentication spoofing.
Last login: Tue Apr 23 14:30:59 2013 from 10.10.10.2
Have a lot of fun...
user@server:~> 

Este é um comportamento conhecido de (certas) versões do servidor SSH?

    
por Martin 23.04.2013 / 13:52

2 respostas

26

Esta não é uma limitação por parte do seu servidor SSH, isso é uma limitação por parte do algoritmo de hash de senha do seu servidor.

Ao codificar senhas no Unix, a função crypt() é chamada. Isso pode usar um dos muitos backends, uma possibilidade é usar o DES, ou outro algoritmo de limitação (para este caso em particular, assumirei que seu servidor está usando DES). O DES geralmente não é usado por padrão nos sistemas operacionais modernos porque resulta em uma limitação particularmente ruim: a força e a validação da senha são limitadas a 8 bytes.

Isso significa que se sua senha foi definida como "foobarbaz", ela se tornará "foobarba", geralmente sem aviso ou aviso. A mesma limitação se aplica à validação, o que significa que "foobarbaz", "foobarba" e "foobarbazqux" são válidos para esse caso específico.

    
por 23.04.2013 / 14:01
20

Eu suspeito que o sistema operacional esteja usando a criptografia de senha DES, que suporta apenas um máximo de 8 caracteres.

link

De man crypt(3)

GNU EXTENSION

The glibc2 version of this function has the following additional features. If salt is a character string starting with the three characters "$1$" followed by at most eight characters, and optionally terminated by "$", then instead of using the DES machine, the glibc crypt function uses an MD5-based algorithm, and outputs up to 34 bytes, namely "$1$<string>$", where "<string>" stands for the up to 8 characters following "$1$" in the salt, followed by 22 bytes chosen from the set [a–zA–Z0–9./].
The entire key is significant here (instead of only the first 8 bytes).

Você pode verificar sua configuração de pam para ver se está usando MD5 ou DES:

% egrep "password.*pam_unix.so" /etc/pam.d/system-auth
password    sufficient    pam_unix.so md5 shadow nis nullok try_first_pass use_authtok

Você também pode confirmar qual função de hash seu sistema está usando com este comando:

% authconfig --test | grep hashing
 password hashing algorithm is md5

E você pode ver neste arquivo /etc/shadow dos sistemas que está usando o MD5 também:

root:$1$<DELETED PASSWORD HASH>:14245:0:99999:7:::

Os códigos que você verá no /etc/shadow para cada tipo de hashing:

  • $ 1 - MD5
  • $ 2 - blowfish
  • $ 2a - eksblowfish
  • $ 5 - SHA-256
  • US $ 6 - SHA-512

Você pode reconfigurar seu sistema com este comando:

% authconfig --passalgo=sha512 --update

Quaisquer senhas existentes precisarão ser regeneradas, você pode usar esse comando para forçar os usuários a redefini-las na próxima vez que fizerem login:

% chage -d 0 userName

Referências

por 23.04.2013 / 14:07