Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
4e744fcd
Commit
4e744fcd
authored
Dec 05, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bugifx] support old ssh key algorithms
parent
00fd5d8a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
5 deletions
+20
-5
connmanager.go
pkg/srvconn/connmanager.go
+20
-5
No files found.
pkg/srvconn/connmanager.go
View file @
4e744fcd
...
@@ -29,6 +29,20 @@ var (
...
@@ -29,6 +29,20 @@ var (
"arcfour256"
,
"arcfour128"
,
"arcfour"
,
"arcfour256"
,
"arcfour128"
,
"arcfour"
,
"aes128-cbc"
,
"aes128-cbc"
,
"3des-cbc"
}
"3des-cbc"
}
supportedKexAlgos
=
[]
string
{
"diffie-hellman-group1-sha1"
,
"diffie-hellman-group14-sha1"
,
"ecdh-sha2-nistp256"
,
"ecdh-sha2-nistp521"
,
"ecdh-sha2-nistp384"
,
"curve25519-sha256@libssh.org"
}
supportedHostKeyAlgos
=
[]
string
{
"ssh-rsa-cert-v01@openssh.com"
,
"ssh-dss-cert-v01@openssh.com"
,
"ecdsa-sha2-nistp256-cert-v01@openssh.com"
,
"ecdsa-sha2-nistp384-cert-v01@openssh.com"
,
"ecdsa-sha2-nistp521-cert-v01@openssh.com"
,
"ssh-ed25519-cert-v01@openssh.com"
,
"ecdsa-sha2-nistp256"
,
"ecdsa-sha2-nistp384"
,
"ecdsa-sha2-nistp521"
,
"ssh-rsa"
,
"ssh-dss"
,
"ssh-ed25519"
,
}
)
)
type
SSHClient
struct
{
type
SSHClient
struct
{
...
@@ -159,11 +173,12 @@ func (sc *SSHClientConfig) Config() (config *gossh.ClientConfig, err error) {
...
@@ -159,11 +173,12 @@ func (sc *SSHClientConfig) Config() (config *gossh.ClientConfig, err error) {
}
}
}
}
config
=
&
gossh
.
ClientConfig
{
config
=
&
gossh
.
ClientConfig
{
User
:
sc
.
User
,
User
:
sc
.
User
,
Auth
:
authMethods
,
Auth
:
authMethods
,
HostKeyCallback
:
gossh
.
InsecureIgnoreHostKey
(),
HostKeyCallback
:
gossh
.
InsecureIgnoreHostKey
(),
Config
:
gossh
.
Config
{
Ciphers
:
supportedCiphers
},
Config
:
gossh
.
Config
{
Ciphers
:
supportedCiphers
,
KeyExchanges
:
supportedKexAlgos
},
Timeout
:
sc
.
Timeout
,
Timeout
:
sc
.
Timeout
,
HostKeyAlgorithms
:
supportedHostKeyAlgos
,
}
}
return
config
,
nil
return
config
,
nil
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment