hello, can you explain to me the significance of this warning : "Expert Information ( Warn / Protocol) : Overly large number" asked 23 Sep '15, 11:17 rebanubtd |
2 Answers:
According to the code, that's the packet length in the key exchange. File: packet-ssh.c - ssh_dissect_key_exchange()
answered 23 Sep ‘15, 12:56 Kurt Knochner ♦ |
The message "SSHV2 Overly large number" is due to slicing the packets to 100 byte. I have tested and reproduced it at home. The thing why evrything went fine until frame #16 is because in Frame #14 the key exchange is completed so far that the packets could be encrypted. And after that, the packet length is in accordance to the RFC(https://tools.ietf.org/html/rfc4253) encrypted. SSH Header (unsliced) of first Packet after the "Client: New Keys" packet. answered 29 Sep '15, 12:27 Christian_R edited 29 Sep '15, 12:29
O.K. good to know! Thanks. (29 Sep '15, 15:04) Kurt Knochner ♦ |
Thanks for your answer . How Can I Send you capture ?
Load it into dropbox, google drive, etc. and post the link here.
ok
https://drive.google.com/file/d/0B1TLQERSH3FSM1BIMVNJbmE3Mkk/view?usp=sharing
You can see “valid” values up until frame #16 and the frame length is in all cases part of the captured data.
I believe “something” is modifying the payload of the frames, because for some frames with “invalid” frame sizes, you also get unknown messages codes. So, either this is a totally modified SSH protocol (which I don’t believe), or there is an error during frame transmission and/or during the capturing process.