Skip to content

Commit

Permalink
local/ssh_handler: fix bad ssh config
Browse files Browse the repository at this point in the history
Go had a security bug with verifying host keys. For now we are simply
wildcarding to remain compatible with go 1.8+. But in the future we should confirm these
golang/go#19767
  • Loading branch information
doodles526 committed Oct 4, 2017
1 parent 253d40a commit 4df495a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion local/ssh_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ func (s *SSHHandler) dial() (*ssh.Client, net.Listener, error) {
Auth: []ssh.AuthMethod{
ssh.Password(s.FlyToken),
},
Timeout: sshConnTimeout,
Timeout: sshConnTimeout,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}

// SSH into wormhole server
Expand Down

0 comments on commit 4df495a

Please sign in to comment.