SFTP protocol violation: Invalid message number
Is there something I can do to fix this problem. As information, I've connected to the problematic sites with another program successfully.SFTP protocol violation: Invalid message number
Thank you
Advertisement
Is there something I can do to fix this problem. As information, I've connected to the problematic sites with another program successfully.SFTP protocol violation: Invalid message number
Advertisement
Advertisement
vendor-id
SFTP extension. It first sends its own nonsense vendor information:
And when WinSCP sends its own vendor information (that's new in WinSCP 6.1), the server just fails totally.. Server software: ${pom.artifactId} ${pom.version} (0) by ${pom.groupId}
Advertisement
The numbers change, but the message stays the same.SFTP protocol violation: Invalid message number 8 (expected 200).
vendor-id
SFTP extension. So WinSCP uses the extension to provide the server with its information using SSH_FXP_EXTENDED
request (with "sequence number" 200). To this, the server should respond with SSH_FXP_EXTENDED_REPLY
response with the same sequence number. (Or with an error using SSH_FXP_STATUS
response, though that is not expected in this case). Instead, the server "responds" with SSH_FXP_EXTENDED
message with sequence number 8. This is totally wrong:
SSH_FXP_EXTENDED
is not a valid response to SSH_FXP_EXTENDED
request.
SSH_FXP_EXTENDED
is a request message. It can only ever be sent by the client, never by the server.
vendor-id
extension. So it does not trigger the bug in the server.
Advertisement
Advertisement
You can post new topics in this forum