Update sshd to 0.11.0
Fixes a few issues including a null pointer exception [1] that causes ssh commands to hang. It also adds server driven rekeying after 1G bytes of data transferred, which is a useful security feature. [1] https://issues.apache.org/jira/browse/SSHD-307 Change-Id: I441995eaf76e4fe53f7991f5aef00e062900791b
This commit is contained in:
@@ -574,6 +574,11 @@ public class SshDaemon extends SshServer implements SshInfo, LifecycleListener {
|
||||
@Override
|
||||
public SshFile getFile(String file) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FileSystemView getNormalizedView() {
|
||||
return null;
|
||||
}};
|
||||
}
|
||||
});
|
||||
|
@@ -8,8 +8,8 @@ EXCLUDE = [
|
||||
|
||||
maven_jar(
|
||||
name = 'sshd',
|
||||
id = 'org.apache.sshd:sshd-core:0.10.1',
|
||||
sha1 = '0081c09917f35565d762c886758dfbdfa1069679',
|
||||
id = 'org.apache.sshd:sshd-core:0.11.0',
|
||||
sha1 = '450da44553c98805ca6bb5709cad54df4acb802a',
|
||||
license = 'Apache2.0',
|
||||
deps = [':core'],
|
||||
exclude = EXCLUDE,
|
||||
|
Reference in New Issue
Block a user