TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

CorkScrew: A tool for tunneling SSH through HTTP proxies

171 点作者 dedalus超过 5 年前

14 条评论

paulddraper超过 5 年前
Recently on a cruise ship I found my SSH access blocked.<p><i>And</i> HTTP proxies were blocked too.<p>So I used a WebSocket proxy and that worked great. I highly recommend wstunnel.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;erebe&#x2F;wstunnel" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;erebe&#x2F;wstunnel</a>
评论 #21394627 未加载
评论 #21397880 未加载
评论 #21394500 未加载
评论 #21398218 未加载
评论 #21398409 未加载
评论 #21397169 未加载
rossmohax超过 5 年前
Bash only version:<p><pre><code> Host github.com User git ProxyCommand &#x2F;bin&#x2F;bash -c &#x27;exec 3&lt;&gt;&#x2F;dev&#x2F;tcp&#x2F;$PROXY_IP&#x2F;$PROXY_PORT; printf &quot;CONNECT %h:%p HTTP&#x2F;1.1\n\n&quot; &gt;&amp;3; cat &lt;&amp;3 &amp; : ; exec cat &gt;&amp;3&#x27;</code></pre>
评论 #21396357 未加载
deniska超过 5 年前
OpenVPN can connect through http proxies as well in case if you want to tunnel all kinds of traffic<p><a href="https:&#x2F;&#x2F;openvpn.net&#x2F;community-resources&#x2F;connecting-to-an-openvpn-server-via-an-http-proxy&#x2F;" rel="nofollow">https:&#x2F;&#x2F;openvpn.net&#x2F;community-resources&#x2F;connecting-to-an-ope...</a>
1996超过 5 年前
Players tunnel SSH through DNS.<p>iodine is one of the many tools to do that. The best are not distributed, to avoid creation of DPI rules.<p>cloudflare is doing something similar on 1.1.1.1 with wireguard.
评论 #21393987 未加载
评论 #21395052 未加载
评论 #21398498 未加载
评论 #21393982 未加载
commandersaki超过 5 年前
This is part of the standard toolkit at Telstra - otherwise nothing would get done.
tbrock超过 5 年前
Always great to have more tools that can do this sort of thing. I used to use desproxy for this almost 20 years ago back in my windows days:<p><a href="http:&#x2F;&#x2F;desproxy.sourceforge.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;desproxy.sourceforge.net&#x2F;</a>
geggam超过 5 年前
Been using this for years to get around silly corporate proxies
评论 #21394485 未加载
derpherpsson超过 5 年前
Proxychains and especially socat är really handy tools for borrowing through filtering firewalls.<p>Socat is somewhat difficult to use though. But IMHO the best one.
55555超过 5 年前
&gt; Corkscrew is a tool for tunneling SSH through HTTP proxies, but... you might find another use for it.<p>What are some of the other uses for this?
评论 #21395424 未加载
评论 #21393933 未加载
johnchristopher超过 5 年前
What&#x27;s the difference with `ProxyCommand nc -X connect -x proxy_ip:port %h %p` ?
sigsergv超过 5 年前
It requires CONNECT method to be enabled in the proxy, am I right?
评论 #21396878 未加载
elktea超过 5 年前
I used this the other day - works very well.
评论 #21397990 未加载
de_watcher超过 5 年前
There is also htc&#x2F;hts HTTPTunnel.
larodi超过 5 年前
whats the &#x27;new&#x27; about corkscrew? maintainer changed? i see no recent commits with new stuff?