You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I received this traceback, I think it may be related to the RFC reference below the traceback
Traceback (most recent call last):
File "CVE-2018-10933.py", line 44, in
main(**vars(args))
File "CVE-2018-10933.py", line 29, in main
cmd_channel = transport.open_session()
File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 806, in open_session
timeout=timeout,
File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 933, in open_channel
raise e
EOFError
5.3. Closing a Channel
When a party will no longer send more data to a channel, it SHOULD
send SSH_MSG_CHANNEL_EOF.
byte SSH_MSG_CHANNEL_EOF
uint32 recipient channel
No explicit response is sent to this message. However, the
application may send EOF to whatever is at the other end of the
channel. Note that the channel remains open after this message, and
more data may still be sent in the other direction. This message
does not consume window space and can be sent even if no window space
is available.
The text was updated successfully, but these errors were encountered:
The server's closing the session so it's not affected by CVE-2018-10933
Just set up an exception to catch EOFError with a debug line stating that the server have closed the session/channel
I received this traceback, I think it may be related to the RFC reference below the traceback
Traceback (most recent call last):
File "CVE-2018-10933.py", line 44, in
main(**vars(args))
File "CVE-2018-10933.py", line 29, in main
cmd_channel = transport.open_session()
File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 806, in open_session
timeout=timeout,
File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 933, in open_channel
raise e
EOFError
The text was updated successfully, but these errors were encountered: