-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bad packet length after SSH_MSG_KEXINIT #670
Comments
Hi, From what I see from the logging we receive a It would be useful to try to determine in which version between 0.18 and 0.31 this problem started, so that we can pinpoint the cause. Start with 0.24 and work either up or downwards from that using binary searching. One problem I've found through googling is that libssh once contained a bug with regards to packet lengths and Let me know whether you're either able to pinpoint the version from which this broke, or whether forcing another kex algorithm fixes it. |
Ok - it works in 0.26 but fails in 0.27 - below are the details:
I'll try disabling the algorithms but that will take me more time. Thanks! Jorge. |
Disabling the algorithms doesn't seem to work with this SSH server:
For your reference I did this in my configuration: private static final Set<String> DISABLED_GROUPS = Helper.unmodifiableSet(
new DHG1.Factory().getName(),
new DHG14.Factory().getName()
);
@Override
public void setKeyExchangeFactories(Factory.Named<KeyExchange>... kexFactories) {
ArrayList<Factory.Named<KeyExchange>> factories = new ArrayList<>();
for (Named<KeyExchange> factory : kexFactories) {
if (!DISABLED_GROUPS.contains(factory.getName())) {
factories.add(factory);
}
}
setKeyExchangeFactories(factories);
} |
Ok, so the server only supports the Does that exception happen consistently with 0.27? Because that's a different exception from what we're seeing with 0.31. |
Ops, I hadn't realized about that ... I have retried again with 0.27 and now I'm getting the same exception than in 0.31:
|
Does it work consistently with 0.26 and consistently not with 0.27? |
Yep ... it works always with 0.26 0- If it helps, I downloaded the jars from https://repo1.maven.org/maven2/com/hierynomus/sshj/ |
Ok, great and 0.27 consistently fails? |
Yes, I have tried more times with 0.27 and it always fails with protocol error - I haven't been able to repeat the 'unknown' issue |
Ok, I think I've narrowed it down to coming from the |
Hello Team SSH Server : SSH-2.0-RomSShell_4.61 We tried using sshj v0.32 and v0.36 but still get same issue
please anybody can help on this issue Thanks |
Hi all,
I'm getting the following when upgrading sshj from 0.18 to 0.31.
a) 0.31 - bad packet length:
b) In 0.18 everything works fine:
Additional info: the SSH server is a bit odd and needs the flag '-c 3des-cbc' from the command line:
I can run any test you need, but the server is an embedded one so I can't modify it.
Thanks!
The text was updated successfully, but these errors were encountered: