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
Sorry if this is not the right place to ask this question. I am trying to replicate the ncat's "-e" function to redirect stdio to a remote ncat instance.
I was able to replicate this on tokio::net::TcpStream by using dup2 and then executing the command. I am not exactly sure how this can be done over tokio_native_tls as TlsStream does not seem to provide the file descriptors that dup2 needed.
Is there a way that stdio can be redirected over TLS?
The text was updated successfully, but these errors were encountered:
Hi
Sorry if this is not the right place to ask this question. I am trying to replicate the ncat's "-e" function to redirect stdio to a remote ncat instance.
I was able to replicate this on tokio::net::TcpStream by using dup2 and then executing the command. I am not exactly sure how this can be done over tokio_native_tls as TlsStream does not seem to provide the file descriptors that dup2 needed.
Is there a way that stdio can be redirected over TLS?
The text was updated successfully, but these errors were encountered: