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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

0x0: Share Files from Terminal

200 点作者 sathishmanohar大约 2 年前

14 条评论

seszett大约 2 年前
I used to run such a service but I stopped after police came to my door to get logs because it was used to share very illegal pictures.<p>They were friendly and I was never in cause myself, but I don&#x27;t want to enable this kind of thing, or to have to deal with moderating content, even passively.<p>I&#x27;m happy other people provide such services, but just be aware they will inevitably be used for activities you probably don&#x27;t want to facilitate.
评论 #35492058 未加载
评论 #35492814 未加载
评论 #35492140 未加载
评论 #35495005 未加载
infosecau大约 2 年前
I prefer bashupload.com or transfer.sh for this. Both alternatives have worked well for me.<p>Alternatively, you can check out magic wormhole (for a more secure transfer of files between two terminals): <a href="https:&#x2F;&#x2F;magic-wormhole.readthedocs.io&#x2F;en&#x2F;latest&#x2F;welcome.html#example" rel="nofollow">https:&#x2F;&#x2F;magic-wormhole.readthedocs.io&#x2F;en&#x2F;latest&#x2F;welcome.html...</a>
评论 #35492282 未加载
评论 #35492151 未加载
评论 #35491992 未加载
评论 #35492147 未加载
marcodiego大约 2 年前
How I share files from the terminal:<p><pre><code> python -m http.server 8000 </code></pre> Then I do a quick look at my IP and pass it. If we&#x27;re not on the same network, then I quickly create on with lnxrouter: <a href="https:&#x2F;&#x2F;github.com&#x2F;garywill&#x2F;linux-router">https:&#x2F;&#x2F;github.com&#x2F;garywill&#x2F;linux-router</a>
评论 #35492478 未加载
评论 #35495230 未加载
janandonly大约 2 年前
I wish there was a command line program like this, but one that would make a torrent of that file [1] and return a magnet link for the torrent.<p>The next weak point is the centralization around the tracker. You can solve this by sharing all the tracker information on Nostr [2], maybe?<p>1. <a href="https:&#x2F;&#x2F;instant.io" rel="nofollow">https:&#x2F;&#x2F;instant.io</a> 2. <a href="https:&#x2F;&#x2F;nostr.info" rel="nofollow">https:&#x2F;&#x2F;nostr.info</a>
评论 #35520410 未加载
评论 #35496910 未加载
评论 #35496648 未加载
enriquto大约 2 年前
Don&#x27;t kids these days know how to use netcat? You only need the other&#x27;s ip. No need to involve a third party.
评论 #35492172 未加载
评论 #35492420 未加载
评论 #35496445 未加载
评论 #35497015 未加载
评论 #35492585 未加载
评论 #35498436 未加载
评论 #35492176 未加载
niux大约 2 年前
I wanted to learn a bit of Go and I wrote a simple client for it: <a href="https:&#x2F;&#x2F;github.com&#x2F;overflowy&#x2F;null-pointer-uploader">https:&#x2F;&#x2F;github.com&#x2F;overflowy&#x2F;null-pointer-uploader</a>
adolph大约 2 年前
Oh, this is a file stash with curl instructions. I was thinking a little more like:<p>Listener:<p><pre><code> nc -l 19000|bzip2 -d|dd bs=16M of=&#x2F;dev&#x2F;sdb </code></pre> Sender: dd bs=16M if=&#x2F;dev&#x2F;sda|bzip2 -c|nc serverB.example.net 19000<p><a href="https:&#x2F;&#x2F;www.ndchost.com&#x2F;wiki&#x2F;server-administration&#x2F;netcat-over-ssh" rel="nofollow">https:&#x2F;&#x2F;www.ndchost.com&#x2F;wiki&#x2F;server-administration&#x2F;netcat-ov...</a>
Bluecobra大约 2 年前
Props to the person hosting this, reminds me of the early days of the net. It’s interesting that *.rar files are banned but other archives are not. My guess is that it was to stop some bot from uploading warez, or maybe due to password protection. It would be trivial to re-compress it again in another format, so it seems like a constant whack-a-mole game to me.
xk_id大约 2 年前
Is there anything actually problematic with file hosting “related to cryptocurrency”? Or is it disallowed on just ideological grounds?
评论 #35492074 未加载
user-大约 2 年前
I dont understand something. There are countless forums and sites that ask for donations for hosting costs, and then on the other hand there are countless anon fileupload sites like this which happily store gigs of files&#x2F;user without asking for money or putting up ads.<p>Whats the incentive for these sites? How do they stay operational?
评论 #35494799 未加载
评论 #35494719 未加载
评论 #35496059 未加载
aborsy大约 2 年前
How is it different from magic wormhole?
评论 #35492054 未加载
pantalaimon大约 2 年前
Expired files aren&#x27;t really cleanly handled, the handler code just crashes when trying to access the non-existing file and prints a trace<p><a href="https:&#x2F;&#x2F;0x0.st&#x2F;-L59.txt" rel="nofollow">https:&#x2F;&#x2F;0x0.st&#x2F;-L59.txt</a>
评论 #35492388 未加载
eminence32大约 2 年前
Inspired by 0x0.st, I wrote my own version powered by CloudFlare workers. It was initially mostly an excuse to learn more about CF Workers, but it ended up being useful to me too
Arch-TK大约 2 年前
I bought 0xf.st a while ago and am still in the process of writing my own custom private paste service out of it.