摘要: 转载自gossh协议库 导读 SSH, The Secure Shell Protocol (安全 Shell 协议),是一个使用广泛的网络协议。 在中文互联网世界,关于 SSH 协议的介绍,往往都把重点放到了安全(Secure)方面的细节。这样的文章对于开发者来说,意义并不大,原因在于: 此类文章 阅读全文
posted @ 2024-01-05 21:31 codestacklinuxer 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 目前chisel基于tcp http websocket 的ssh 代理!! chisel 代理流程client<<--tcp/udp/socks-->>http->chisel-client<< ####tcp-http-websocket-ssh#### >>chisel-server<< tc 阅读全文
posted @ 2024-01-05 20:49 codestacklinuxer 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Writer和Reader是两个抽象的接口,其定义如下 type Writer interface { Write(p []byte) (n int, err error) } type Reader interface { Read(p []byte) (n int, err error) } 查 阅读全文
posted @ 2024-01-05 14:35 codestacklinuxer 阅读(144) 评论(0) 推荐(0) 编辑