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
When connecting to an RSSH client in jump host mode, i.e. -J myrsshserver my-client-name, the rssh-download channel is sent to the user's SSH client, rather than to the RSSH server.
Logs
when trying to do ssh -v myrsshclient rssh://busybox:
Detail
When connecting to an RSSH client in jump host mode, i.e.
-J myrsshserver my-client-name
, therssh-download
channel is sent to the user's SSH client, rather than to the RSSH server.Logs
when trying to do
ssh -v myrsshclient rssh://busybox
:Root Cause Analysis:
When
download
is called, the argument "serverConnection" is a slight misnomer - it's actually the session-specific connection.reverse_ssh/internal/client/handlers/session.go
Line 234 in f5d2a6c
Is set in NewSession here:
reverse_ssh/internal/client/connection/connection.go
Lines 26 to 29 in f5d2a6c
Which is constructed here in jump host mode:
reverse_ssh/internal/client/handlers/jumphost.go
Line 55 in f5d2a6c
The text was updated successfully, but these errors were encountered: