Topic: Connexion ssh impossible

Salut à tous !

Je viens d'installer MySecureShell.

Tout s'est bien déuolé sur mon Ubuntu.

J'ai bien acces à mes comptes lorsque je fais :

lftp toto@localhost

ou

sftp toto@localhost

Cela dit, je rencontre un probleme avec mes connection ssh :

5:02:[michael ~] => ssh tioto@localhost
Ubuntu 7.10
tisma@localhost's password: 
Linux michael-desktop 2.6.22-14-rt #1 SMP PREEMPT RT Mon Oct 15 01:05:51 GMT 2007 i686

The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.
Last login: Fri Nov 30 17:03:21 2007 from localhost
Connection to localhost closed.
15:02:[michael ~] =>

Dans mes comptes user, j'ai bien remplacé /bin/bash par /bin/MySecureShell

Aussi, j'ai remaqué que seuls ces comptes qui ont MySecureShell pour shell rencontreent ce probleme.
Si je remplace par /bin/bash, alors ils auront à nouveau accès.

Voici mon sshd_config :

# Package generated configuration file
# See the sshd(8) 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
#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 no
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 yes

# 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

UsePAM yes

puis mon ssh_config :

# This is the ssh client system-wide configuration file.  See
# ssh_config(5) for more information.  This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
#  1. command line options
#  2. user-specific file
#  3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options.  For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.

Host *
#   ForwardAgent no
  ForwardX11 yes
#   ForwardX11Trusted yes
#   RhostsRSAAuthentication no
#   RSAAuthentication yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   CheckHostIP yes
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking ask
#   IdentityFile ~/.ssh/identity
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   Port 22
#   Protocol 2,1
#   Cipher 3des
#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no

Y aurait il quelque chose que j'aurais zappé ?

Merci à tous de votre aide

Re: Connexion ssh impossible

Bonjour,

Il faut savoir que c'est normal ! smile

En effet MySecureShell interdit par défaut les connexions en SSH pour des raisons de sécurité.

Mais il est possible de changer ça si vous le voulez vraiment. wink

Pour cela, il suffit de rajouter la ligne suivante:

Shell /bin/bash

Dans le fichier /etc/ssh/sftp_config après la ligne:

<Default>

ATTENTION: l'effet de bord et que n'importe quel utilisateur MySecureShell pourra avoir un accès au SSH.
Pour donner des droits shells plus restreint, il suffit d'un petit tour sur le site officiel pour comprendre comme ça fonctionne et en 5mins ce petit problème est régler big_smile

Re: Connexion ssh impossible

Salut !

Merci pour ta reponse.

En quoi est ce que cela peut poser un risque de securité stp ?

Re: Connexion ssh impossible

Bonjour,

Tout simplement quelqu'un qui à un accès SSH peut faire ce qu'il veut sur la machine. roll

Donc on peut imaginer qu'il utilise des failles de sécurités pour passer root et ensuite utiliser ta machine pour faire ce qu'il veut.

Re: Connexion ssh impossible

Arfff ! Vu comme çà....

Il est certain qu'il y a quelques manips à faire si l'on donne accès au ssh.

Ceci dit, ca n'a donc pas forcement de rapport avec MySecureShell.

Merci de vos reponses.