Bugzilla – Attachment 3294 Details for
Bug 3029
keyscan does not list rsa keys if the ssh-rsa is not allowed on server
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
openssh-keyscan.patch (text/plain), 799 bytes, created by
Jakub Jelen
on 2019-07-02 20:47:26 AEST
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Jakub Jelen
Created:
2019-07-02 20:47:26 AEST
Size:
799 bytes
patch
obsolete
>commit a2f3976f17c9883abe559e2ccd778edafefcc9b8 >Author: Jakub Jelen <jjelen@redhat.com> >Date: Tue Jul 2 12:42:49 2019 +0200 > > ssh-keyscan: Do not skip RSA keys if SHA1 (ssh-rsa signature algorithm) is not enabled in server > >diff --git a/ssh-keyscan.c b/ssh-keyscan.c >index 7b7c0f32..71e40bf5 100644 >--- a/ssh-keyscan.c >+++ b/ssh-keyscan.c >@@ -233,7 +233,12 @@ keygrab_ssh2(con *c) > break; > case KT_RSA: > myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? >- "ssh-rsa-cert-v01@openssh.com" : "ssh-rsa"; >+ "rsa-sha2-512-cert-v01@openssh.com," >+ "rsa-sha2-256-cert-v01@openssh.com," >+ "ssh-rsa-cert-v01@openssh.com" : >+ "rsa-sha2-512," >+ "rsa-sha2-256," >+ "ssh-rsa"; > break; > case KT_ED25519: > myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ?
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 3029
: 3294