1
0
mirror of https://github.com/HorlogeSkynet/SSHubl.git synced 2025-05-02 16:00:17 +02:00

Merge c079adb7c2bf7b9fa6166563290e413a9a317435 into 06b8bceed9d1a8db1f68e4c5fcfe0ea81b3b6026

This commit is contained in:
Samuel FORESTIER 2024-09-03 22:03:08 +02:00 committed by GitHub
commit 129890096b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 6 deletions

@ -83,7 +83,7 @@ Open your command palette and type in `SSHubl` to select `Connect to server`. On
### Why can I connect to new hosts without accepting their fingerprint ?
> `pexpect` package is [known to always accept remotes' public key](https://github.com/pexpect/pexpect/blob/4.8.0/pexpect/pxssh.py#L411-L414), and it isn't configurable.
> `pexpect` package is [known to always accept remotes' public key](https://github.com/pexpect/pexpect/blob/4.9/pexpect/pxssh.py#L411-L414), and it isn't configurable.
### How is "SSHubl" pronounced ?

@ -1,4 +1,4 @@
pexpect~=4.8.0
pexpect~=4.9.0
pylint~=3.2.7
pylint-secure-coding-standard~=1.5.1

@ -97,10 +97,6 @@ def ssh_connect(
}
)
# pexpect v4.8 is currently packaged for Sublime Text so it still specifies old
# `RSAAuthentication` option
ssh.SSH_OPTS = "-o PubkeyAuthentication=no"
# if a password has been given, force password authentication
if password is not None:
ssh.force_password = True